From f823b02134fa0d5d749a1157c81caa0651a23256 Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Tue, 6 Dec 2022 17:47:05 +0100 Subject: [PATCH 01/16] Fix: improve ptytest --- pty/ptytest/ptytest.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pty/ptytest/ptytest.go b/pty/ptytest/ptytest.go index bc26585f2962a..3db318d72690d 100644 --- a/pty/ptytest/ptytest.go +++ b/pty/ptytest/ptytest.go @@ -202,11 +202,7 @@ func logf(t *testing.T, name, format string, args ...interface{}) { func fatalf(t *testing.T, name, reason, format string, args ...interface{}) { t.Helper() - // Ensure the message is part of the normal log stream before - // failing the test. - logf(t, name, "%s: %s", reason, fmt.Sprintf(format, args...)) - - require.FailNowf(t, reason, format, args...) + panic(fmt.Sprintf("%s: %s %s", name, reason, fmt.Sprintf(format, args...))) } // stdbuf is like a buffered stdout, it buffers writes until read. From a97a7ad79072e2ba9acd400845e809f2b4802f55 Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Tue, 6 Dec 2022 17:52:01 +0100 Subject: [PATCH 02/16] Disable skip --- loadtest/reconnectingpty/run_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/loadtest/reconnectingpty/run_test.go b/loadtest/reconnectingpty/run_test.go index f9c99864600e0..6d78f72e25823 100644 --- a/loadtest/reconnectingpty/run_test.go +++ b/loadtest/reconnectingpty/run_test.go @@ -22,7 +22,6 @@ import ( func Test_Runner(t *testing.T) { t.Parallel() - t.Skip("See: https://github.com/coder/coder/issues/5247") t.Run("OK", func(t *testing.T) { t.Parallel() From 593a891e9523ced6e3dd4f082871b398c0549c96 Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Wed, 7 Dec 2022 09:06:02 +0100 Subject: [PATCH 03/16] WIP --- pty/pty_other.go | 8 ++++++++ pty/ptytest/ptytest.go | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/pty/pty_other.go b/pty/pty_other.go index cfe9ccd47e4f1..ba5bcc207075e 100644 --- a/pty/pty_other.go +++ b/pty/pty_other.go @@ -114,9 +114,17 @@ func (p *otherPty) Resize(height uint16, width uint16) error { } func (p *otherPty) Close() error { + if p.opts.logger != nil { + p.opts.logger.Println("Will close...") + } + p.mutex.Lock() defer p.mutex.Unlock() + if p.opts.logger != nil { + p.opts.logger.Println("Closing...") + } + if p.closed { return p.err } diff --git a/pty/ptytest/ptytest.go b/pty/ptytest/ptytest.go index 3db318d72690d..c83faea135c87 100644 --- a/pty/ptytest/ptytest.go +++ b/pty/ptytest/ptytest.go @@ -152,7 +152,7 @@ func (p *PTY) ExpectMatch(str string) string { p.logf("matched %q = %q", str, buffer.String()) return buffer.String() case <-timeout.Done(): - // Ensure gorouine is cleaned up before test exit. + // Ensure goroutine is cleaned up before test exit. _ = p.out.closeErr(p.Close()) <-match @@ -202,7 +202,7 @@ func logf(t *testing.T, name, format string, args ...interface{}) { func fatalf(t *testing.T, name, reason, format string, args ...interface{}) { t.Helper() - panic(fmt.Sprintf("%s: %s %s", name, reason, fmt.Sprintf(format, args...))) + t.Fatal(fmt.Sprintf("%s: %s %s", name, reason, fmt.Sprintf(format, args...))) } // stdbuf is like a buffered stdout, it buffers writes until read. From 8a3f6e2235953874f2c9ad3946f0bf692a6f9aba Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Wed, 7 Dec 2022 09:12:00 +0100 Subject: [PATCH 04/16] WIP --- cli/list_test.go | 3 +++ pty/ptytest/ptytest.go | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/cli/list_test.go b/cli/list_test.go index e3309e05763f2..37312e9c739e5 100644 --- a/cli/list_test.go +++ b/cli/list_test.go @@ -41,5 +41,8 @@ func TestList(t *testing.T) { pty.ExpectMatch("Started") cancelFunc() <-done + t.Cleanup(func() { + t.Fatalf("XYZ") + }) }) } diff --git a/pty/ptytest/ptytest.go b/pty/ptytest/ptytest.go index c83faea135c87..38c2c4885fc0a 100644 --- a/pty/ptytest/ptytest.go +++ b/pty/ptytest/ptytest.go @@ -47,7 +47,7 @@ func create(t *testing.T, ptty pty.PTY, name string) *PTY { logDone := make(chan struct{}) logr, logw := io.Pipe() t.Cleanup(func() { - ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitShort) + ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitMedium) defer cancel() _ = logw.Close() @@ -69,7 +69,7 @@ func create(t *testing.T, ptty pty.PTY, name string) *PTY { _ = out.closeErr(err) }() t.Cleanup(func() { - ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitShort) + ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitMedium) defer cancel() // Close pty only so that the copy goroutine can consume the @@ -202,7 +202,7 @@ func logf(t *testing.T, name, format string, args ...interface{}) { func fatalf(t *testing.T, name, reason, format string, args ...interface{}) { t.Helper() - t.Fatal(fmt.Sprintf("%s: %s %s", name, reason, fmt.Sprintf(format, args...))) + t.Fatalf("%s: %s %s", name, reason, fmt.Sprintf(format, args...)) } // stdbuf is like a buffered stdout, it buffers writes until read. From 1a7070f59ec1b12ea015e11643d54b726be60580 Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Wed, 7 Dec 2022 09:19:31 +0100 Subject: [PATCH 05/16] WIP --- .github/workflows/coder.yaml | 2 +- Makefile | 5 +- cli/list_test.go | 3 - gotest.json | 20607 +++++++++++++++++++++++++++++++++ 4 files changed, 20612 insertions(+), 5 deletions(-) create mode 100644 gotest.json diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index 099894f8d5bac..a6b39a99e19e1 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -336,7 +336,7 @@ jobs: echo ::set-output name=cover::false fi set -x - gotestsum --junitfile="gotests.xml" --packages="./..." --debug -- -parallel=8 -timeout=3m -short -failfast $COVERAGE_FLAGS + gotestsum --junitfile="gotests.xml" --jsonfile="gotestsum.json" --packages="./..." --debug -- -parallel=8 -timeout=3m -short -failfast $COVERAGE_FLAGS - uses: codecov/codecov-action@v3 # This action has a tendency to error out unexpectedly, it has diff --git a/Makefile b/Makefile index 1ed609911ac49..f98f04bb4a7f5 100644 --- a/Makefile +++ b/Makefile @@ -471,7 +471,10 @@ test: test-clean test-postgres: test-clean test-postgres-docker # The postgres test is prone to failure, so we limit parallelism for # more consistent execution. - DB=ci DB_FROM=$(shell go run scripts/migrate-ci/main.go) gotestsum --junitfile="gotests.xml" --packages="./..." -- \ + DB=ci DB_FROM=$(shell go run scripts/migrate-ci/main.go) gotestsum \ + --junitfile="gotests.xml" \ + --jsonfile="gotestsum.json" \ + --packages="./..." -- \ -covermode=atomic -coverprofile="gotests.coverage" -timeout=20m \ -parallel=4 \ -coverpkg=./... \ diff --git a/cli/list_test.go b/cli/list_test.go index 37312e9c739e5..e3309e05763f2 100644 --- a/cli/list_test.go +++ b/cli/list_test.go @@ -41,8 +41,5 @@ func TestList(t *testing.T) { pty.ExpectMatch("Started") cancelFunc() <-done - t.Cleanup(func() { - t.Fatalf("XYZ") - }) }) } diff --git a/gotest.json b/gotest.json new file mode 100644 index 0000000000000..02157a8f3eaa6 --- /dev/null +++ b/gotest.json @@ -0,0 +1,20607 @@ +{"Time":"2022-12-07T09:15:18.407131+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape"} +{"Time":"2022-12-07T09:15:18.407235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape","Output":"=== RUN Test_sshConfigExecEscape\n"} +{"Time":"2022-12-07T09:15:18.40725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape","Output":"=== PAUSE Test_sshConfigExecEscape\n"} +{"Time":"2022-12-07T09:15:18.407252+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape"} +{"Time":"2022-12-07T09:15:18.407254+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile"} +{"Time":"2022-12-07T09:15:18.407256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile","Output":"=== RUN TestCreateParameterMapFromFile\n"} +{"Time":"2022-12-07T09:15:18.407263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile","Output":"=== PAUSE TestCreateParameterMapFromFile\n"} +{"Time":"2022-12-07T09:15:18.40727+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile"} +{"Time":"2022-12-07T09:15:18.407275+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards"} +{"Time":"2022-12-07T09:15:18.407276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards","Output":"=== RUN Test_parsePortForwards\n"} +{"Time":"2022-12-07T09:15:18.407278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards","Output":"=== PAUSE Test_parsePortForwards\n"} +{"Time":"2022-12-07T09:15:18.407279+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards"} +{"Time":"2022-12-07T09:15:18.407281+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples"} +{"Time":"2022-12-07T09:15:18.407282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples","Output":"=== RUN Test_formatExamples\n"} +{"Time":"2022-12-07T09:15:18.407285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples","Output":"=== PAUSE Test_formatExamples\n"} +{"Time":"2022-12-07T09:15:18.407287+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples"} +{"Time":"2022-12-07T09:15:18.407289+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule"} +{"Time":"2022-12-07T09:15:18.40729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule","Output":"=== RUN TestParseCLISchedule\n"} +{"Time":"2022-12-07T09:15:18.407291+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndDayOfWeekAndLocation"} +{"Time":"2022-12-07T09:15:18.407295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndDayOfWeekAndLocation","Output":"=== RUN TestParseCLISchedule/TimeAndDayOfWeekAndLocation\n"} +{"Time":"2022-12-07T09:15:18.408151+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocation"} +{"Time":"2022-12-07T09:15:18.408164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocation","Output":"=== RUN TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocation\n"} +{"Time":"2022-12-07T09:15:18.408194+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocationButItsAllQuoted"} +{"Time":"2022-12-07T09:15:18.4082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocationButItsAllQuoted","Output":"=== RUN TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocationButItsAllQuoted\n"} +{"Time":"2022-12-07T09:15:18.408271+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDayOnly"} +{"Time":"2022-12-07T09:15:18.408278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDayOnly","Output":"=== RUN TestParseCLISchedule/TimeOfDayOnly\n"} +{"Time":"2022-12-07T09:15:18.408311+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/Time24Military"} +{"Time":"2022-12-07T09:15:18.408317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/Time24Military","Output":"=== RUN TestParseCLISchedule/Time24Military\n"} +{"Time":"2022-12-07T09:15:18.408365+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndTime"} +{"Time":"2022-12-07T09:15:18.408368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndTime","Output":"=== RUN TestParseCLISchedule/DayOfWeekAndTime\n"} +{"Time":"2022-12-07T09:15:18.409223+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndLocation"} +{"Time":"2022-12-07T09:15:18.409229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndLocation","Output":"=== RUN TestParseCLISchedule/TimeAndLocation\n"} +{"Time":"2022-12-07T09:15:18.409315+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/LazyTime"} +{"Time":"2022-12-07T09:15:18.40932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/LazyTime","Output":"=== RUN TestParseCLISchedule/LazyTime\n"} +{"Time":"2022-12-07T09:15:18.409362+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/ZeroPrefixedLazyTime"} +{"Time":"2022-12-07T09:15:18.409369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/ZeroPrefixedLazyTime","Output":"=== RUN TestParseCLISchedule/ZeroPrefixedLazyTime\n"} +{"Time":"2022-12-07T09:15:18.409431+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTime"} +{"Time":"2022-12-07T09:15:18.409436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTime","Output":"=== RUN TestParseCLISchedule/InvalidTime\n"} +{"Time":"2022-12-07T09:15:18.409438+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTime"} +{"Time":"2022-12-07T09:15:18.409439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTime","Output":"=== RUN TestParseCLISchedule/DayOfWeekAndInvalidTime\n"} +{"Time":"2022-12-07T09:15:18.409502+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTimeAndLocation"} +{"Time":"2022-12-07T09:15:18.409508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTimeAndLocation","Output":"=== RUN TestParseCLISchedule/InvalidTimeAndLocation\n"} +{"Time":"2022-12-07T09:15:18.40951+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTimeAndLocation"} +{"Time":"2022-12-07T09:15:18.409511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTimeAndLocation","Output":"=== RUN TestParseCLISchedule/DayOfWeekAndInvalidTimeAndLocation\n"} +{"Time":"2022-12-07T09:15:18.409513+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimezoneProvidedInsteadOfLocation"} +{"Time":"2022-12-07T09:15:18.409514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimezoneProvidedInsteadOfLocation","Output":"=== RUN TestParseCLISchedule/TimezoneProvidedInsteadOfLocation\n"} +{"Time":"2022-12-07T09:15:18.409539+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/WhoKnows"} +{"Time":"2022-12-07T09:15:18.409542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/WhoKnows","Output":"=== RUN TestParseCLISchedule/WhoKnows\n"} +{"Time":"2022-12-07T09:15:18.409548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule","Output":"--- PASS: TestParseCLISchedule (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndDayOfWeekAndLocation","Output":" --- PASS: TestParseCLISchedule/TimeAndDayOfWeekAndLocation (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409553+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndDayOfWeekAndLocation","Elapsed":0} +{"Time":"2022-12-07T09:15:18.409556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocation","Output":" --- PASS: TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocation (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409559+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocation","Elapsed":0} +{"Time":"2022-12-07T09:15:18.40956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocationButItsAllQuoted","Output":" --- PASS: TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocationButItsAllQuoted (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409563+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocationButItsAllQuoted","Elapsed":0} +{"Time":"2022-12-07T09:15:18.409566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDayOnly","Output":" --- PASS: TestParseCLISchedule/TimeOfDayOnly (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409567+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDayOnly","Elapsed":0} +{"Time":"2022-12-07T09:15:18.409569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/Time24Military","Output":" --- PASS: TestParseCLISchedule/Time24Military (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409571+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/Time24Military","Elapsed":0} +{"Time":"2022-12-07T09:15:18.409572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndTime","Output":" --- PASS: TestParseCLISchedule/DayOfWeekAndTime (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409574+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndTime","Elapsed":0} +{"Time":"2022-12-07T09:15:18.409575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndLocation","Output":" --- PASS: TestParseCLISchedule/TimeAndLocation (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409578+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndLocation","Elapsed":0} +{"Time":"2022-12-07T09:15:18.40958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/LazyTime","Output":" --- PASS: TestParseCLISchedule/LazyTime (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409581+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/LazyTime","Elapsed":0} +{"Time":"2022-12-07T09:15:18.409583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/ZeroPrefixedLazyTime","Output":" --- PASS: TestParseCLISchedule/ZeroPrefixedLazyTime (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409585+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/ZeroPrefixedLazyTime","Elapsed":0} +{"Time":"2022-12-07T09:15:18.409586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTime","Output":" --- PASS: TestParseCLISchedule/InvalidTime (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409587+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTime","Elapsed":0} +{"Time":"2022-12-07T09:15:18.409589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTime","Output":" --- PASS: TestParseCLISchedule/DayOfWeekAndInvalidTime (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.40959+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTime","Elapsed":0} +{"Time":"2022-12-07T09:15:18.409592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTimeAndLocation","Output":" --- PASS: TestParseCLISchedule/InvalidTimeAndLocation (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409593+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTimeAndLocation","Elapsed":0} +{"Time":"2022-12-07T09:15:18.409595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTimeAndLocation","Output":" --- PASS: TestParseCLISchedule/DayOfWeekAndInvalidTimeAndLocation (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409596+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTimeAndLocation","Elapsed":0} +{"Time":"2022-12-07T09:15:18.409598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimezoneProvidedInsteadOfLocation","Output":" --- PASS: TestParseCLISchedule/TimezoneProvidedInsteadOfLocation (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409599+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimezoneProvidedInsteadOfLocation","Elapsed":0} +{"Time":"2022-12-07T09:15:18.409605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/WhoKnows","Output":" --- PASS: TestParseCLISchedule/WhoKnows (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.409612+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/WhoKnows","Elapsed":0} +{"Time":"2022-12-07T09:15:18.409613+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule","Elapsed":0} +{"Time":"2022-12-07T09:15:18.409614+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated"} +{"Time":"2022-12-07T09:15:18.40962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated","Output":"=== RUN TestVerifyWorkspaceOutdated\n"} +{"Time":"2022-12-07T09:15:18.409622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated","Output":"=== PAUSE TestVerifyWorkspaceOutdated\n"} +{"Time":"2022-12-07T09:15:18.409623+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated"} +{"Time":"2022-12-07T09:15:18.409625+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink"} +{"Time":"2022-12-07T09:15:18.409626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink","Output":"=== RUN TestBuildWorkspaceLink\n"} +{"Time":"2022-12-07T09:15:18.409634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink","Output":"=== PAUSE TestBuildWorkspaceLink\n"} +{"Time":"2022-12-07T09:15:18.409635+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink"} +{"Time":"2022-12-07T09:15:18.409636+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay"} +{"Time":"2022-12-07T09:15:18.409641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay","Output":"=== RUN TestDurationDisplay\n"} +{"Time":"2022-12-07T09:15:18.409646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay","Output":"=== PAUSE TestDurationDisplay\n"} +{"Time":"2022-12-07T09:15:18.409647+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay"} +{"Time":"2022-12-07T09:15:18.409649+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRelative"} +{"Time":"2022-12-07T09:15:18.40965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRelative","Output":"=== RUN TestRelative\n"} +{"Time":"2022-12-07T09:15:18.409654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRelative","Output":"=== PAUSE TestRelative\n"} +{"Time":"2022-12-07T09:15:18.409655+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRelative"} +{"Time":"2022-12-07T09:15:18.409659+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent"} +{"Time":"2022-12-07T09:15:18.409663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent","Output":"=== RUN TestWorkspaceAgent\n"} +{"Time":"2022-12-07T09:15:18.409671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent","Output":"=== PAUSE TestWorkspaceAgent\n"} +{"Time":"2022-12-07T09:15:18.409672+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent"} +{"Time":"2022-12-07T09:15:18.409676+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:18.409679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== RUN TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:18.409681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== PAUSE TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:18.409683+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:18.409684+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow"} +{"Time":"2022-12-07T09:15:18.409687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow\n"} +{"Time":"2022-12-07T09:15:18.409689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow\n"} +{"Time":"2022-12-07T09:15:18.409691+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow"} +{"Time":"2022-12-07T09:15:18.409693+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames"} +{"Time":"2022-12-07T09:15:18.409695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames","Output":"=== RUN TestConfigSSH_Hostnames\n"} +{"Time":"2022-12-07T09:15:18.409701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames","Output":"=== PAUSE TestConfigSSH_Hostnames\n"} +{"Time":"2022-12-07T09:15:18.409702+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames"} +{"Time":"2022-12-07T09:15:18.409703+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate"} +{"Time":"2022-12-07T09:15:18.409704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate","Output":"=== RUN TestCreate\n"} +{"Time":"2022-12-07T09:15:18.409727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate","Output":"=== PAUSE TestCreate\n"} +{"Time":"2022-12-07T09:15:18.409732+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate"} +{"Time":"2022-12-07T09:15:18.409734+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDelete"} +{"Time":"2022-12-07T09:15:18.409739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete","Output":"=== RUN TestDelete\n"} +{"Time":"2022-12-07T09:15:18.409741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete","Output":"=== PAUSE TestDelete\n"} +{"Time":"2022-12-07T09:15:18.409742+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDelete"} +{"Time":"2022-12-07T09:15:18.409744+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDotfiles"} +{"Time":"2022-12-07T09:15:18.409746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles","Output":"=== RUN TestDotfiles\n"} +{"Time":"2022-12-07T09:15:18.409753+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/MissingArg"} +{"Time":"2022-12-07T09:15:18.409754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/MissingArg","Output":"=== RUN TestDotfiles/MissingArg\n"} +{"Time":"2022-12-07T09:15:18.412134+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/NoInstallScript"} +{"Time":"2022-12-07T09:15:18.412138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/NoInstallScript","Output":"=== RUN TestDotfiles/NoInstallScript\n"} +{"Time":"2022-12-07T09:15:18.517236+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/InstallScript"} +{"Time":"2022-12-07T09:15:18.517255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/InstallScript","Output":"=== RUN TestDotfiles/InstallScript\n"} +{"Time":"2022-12-07T09:15:18.780085+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/SymlinkBackup"} +{"Time":"2022-12-07T09:15:18.780131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/SymlinkBackup","Output":"=== RUN TestDotfiles/SymlinkBackup\n"} +{"Time":"2022-12-07T09:15:18.895442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles","Output":"--- PASS: TestDotfiles (0.49s)\n"} +{"Time":"2022-12-07T09:15:18.895463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/MissingArg","Output":" --- PASS: TestDotfiles/MissingArg (0.00s)\n"} +{"Time":"2022-12-07T09:15:18.895474+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/MissingArg","Elapsed":0} +{"Time":"2022-12-07T09:15:18.89548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/NoInstallScript","Output":" --- PASS: TestDotfiles/NoInstallScript (0.11s)\n"} +{"Time":"2022-12-07T09:15:18.895484+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/NoInstallScript","Elapsed":0.11} +{"Time":"2022-12-07T09:15:18.8955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/InstallScript","Output":" --- PASS: TestDotfiles/InstallScript (0.26s)\n"} +{"Time":"2022-12-07T09:15:18.895503+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/InstallScript","Elapsed":0.26} +{"Time":"2022-12-07T09:15:18.895505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/SymlinkBackup","Output":" --- PASS: TestDotfiles/SymlinkBackup (0.12s)\n"} +{"Time":"2022-12-07T09:15:18.895506+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/SymlinkBackup","Elapsed":0.12} +{"Time":"2022-12-07T09:15:18.895507+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDotfiles","Elapsed":0.49} +{"Time":"2022-12-07T09:15:18.895509+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass"} +{"Time":"2022-12-07T09:15:18.89551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass","Output":"=== RUN TestGitAskpass\n"} +{"Time":"2022-12-07T09:15:18.895534+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword"} +{"Time":"2022-12-07T09:15:18.895539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":"=== RUN TestGitAskpass/UsernameAndPassword\n"} +{"Time":"2022-12-07T09:15:18.899529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":" ptytest.go:103: 2022-12-07 08:15:18.899: cmd: stdout: \"something\"\n"} +{"Time":"2022-12-07T09:15:18.899569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":" gitaskpass_test.go:37: 2022-12-07 08:15:18.899: cmd: matched \"something\" = \"something\"\n"} +{"Time":"2022-12-07T09:15:18.902865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":" ptytest.go:103: 2022-12-07 08:15:18.902: cmd: stdout: \"bananas\"\n"} +{"Time":"2022-12-07T09:15:18.902903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":" gitaskpass_test.go:44: 2022-12-07 08:15:18.902: cmd: matched \"bananas\" = \"bananas\"\n"} +{"Time":"2022-12-07T09:15:18.902958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":" ptytest.go:80: 2022-12-07 08:15:18.902: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:18.903002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":" ptytest.go:80: 2022-12-07 08:15:18.902: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:18.903463+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/NoHost"} +{"Time":"2022-12-07T09:15:18.90347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/NoHost","Output":"=== RUN TestGitAskpass/NoHost\n"} +{"Time":"2022-12-07T09:15:18.905832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/NoHost","Output":" ptytest.go:103: 2022-12-07 08:15:18.905: cmd: stdout: \"Nope!\"\n"} +{"Time":"2022-12-07T09:15:18.905878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/NoHost","Output":" gitaskpass_test.go:60: 2022-12-07 08:15:18.905: cmd: matched \"Nope!\" = \"Nope!\"\n"} +{"Time":"2022-12-07T09:15:18.90589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/NoHost","Output":" ptytest.go:80: 2022-12-07 08:15:18.905: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:18.906277+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll"} +{"Time":"2022-12-07T09:15:18.906282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":"=== RUN TestGitAskpass/Poll\n"} +{"Time":"2022-12-07T09:15:18.908611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" ptytest.go:103: 2022-12-07 08:15:18.908: cmd: stdout: \"Open the following URL to authenticate with Git:\"\n"} +{"Time":"2022-12-07T09:15:18.908622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" ptytest.go:103: 2022-12-07 08:15:18.908: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:18.908625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" ptytest.go:103: 2022-12-07 08:15:18.908: cmd: stdout: \"\\thttps://something.org\"\n"} +{"Time":"2022-12-07T09:15:18.908627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" ptytest.go:103: 2022-12-07 08:15:18.908: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:20.413031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" ptytest.go:103: 2022-12-07 08:15:20.412: cmd: stdout: \"You've been authenticated with Git!\"\n"} +{"Time":"2022-12-07T09:15:20.413088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" ptytest.go:103: 2022-12-07 08:15:20.412: cmd: stdout: \"username\"\n"} +{"Time":"2022-12-07T09:15:20.413314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" gitaskpass_test.go:95: 2022-12-07 08:15:20.413: cmd: matched \"username\" = \"Open the following URL to authenticate with Git:\\r\\n\\r\\n\\thttps://something.org\\r\\n\\r\\nYou've been authenticated with Git!\\r\\nusername\"\n"} +{"Time":"2022-12-07T09:15:20.413335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" ptytest.go:80: 2022-12-07 08:15:20.413: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:20.41543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass","Output":"--- PASS: TestGitAskpass (1.52s)\n"} +{"Time":"2022-12-07T09:15:20.415689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":" --- PASS: TestGitAskpass/UsernameAndPassword (0.01s)\n"} +{"Time":"2022-12-07T09:15:20.415711+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Elapsed":0.01} +{"Time":"2022-12-07T09:15:20.415736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/NoHost","Output":" --- PASS: TestGitAskpass/NoHost (0.00s)\n"} +{"Time":"2022-12-07T09:15:20.415755+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/NoHost","Elapsed":0} +{"Time":"2022-12-07T09:15:20.415769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" --- PASS: TestGitAskpass/Poll (1.51s)\n"} +{"Time":"2022-12-07T09:15:20.415781+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Elapsed":1.51} +{"Time":"2022-12-07T09:15:20.415789+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass","Elapsed":1.52} +{"Time":"2022-12-07T09:15:20.415796+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestGitSSH"} +{"Time":"2022-12-07T09:15:20.415802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH","Output":"=== RUN TestGitSSH\n"} +{"Time":"2022-12-07T09:15:20.415811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH","Output":"=== PAUSE TestGitSSH\n"} +{"Time":"2022-12-07T09:15:20.415817+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestGitSSH"} +{"Time":"2022-12-07T09:15:20.41583+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestList"} +{"Time":"2022-12-07T09:15:20.415837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList","Output":"=== RUN TestList\n"} +{"Time":"2022-12-07T09:15:20.415845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList","Output":"=== PAUSE TestList\n"} +{"Time":"2022-12-07T09:15:20.415852+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestList"} +{"Time":"2022-12-07T09:15:20.415858+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLoadTest"} +{"Time":"2022-12-07T09:15:20.415864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLoadTest","Output":"=== RUN TestLoadTest\n"} +{"Time":"2022-12-07T09:15:20.415872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLoadTest","Output":" loadtest_test.go:29: This test is flakey. See https://github.com/coder/coder/issues/4942\n"} +{"Time":"2022-12-07T09:15:20.415891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLoadTest","Output":"--- SKIP: TestLoadTest (0.00s)\n"} +{"Time":"2022-12-07T09:15:20.415899+01:00","Action":"skip","Package":"github.com/coder/coder/cli","Test":"TestLoadTest","Elapsed":0} +{"Time":"2022-12-07T09:15:20.415906+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin"} +{"Time":"2022-12-07T09:15:20.415912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin","Output":"=== RUN TestLogin\n"} +{"Time":"2022-12-07T09:15:20.415925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin","Output":"=== PAUSE TestLogin\n"} +{"Time":"2022-12-07T09:15:20.415932+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin"} +{"Time":"2022-12-07T09:15:20.415939+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogout"} +{"Time":"2022-12-07T09:15:20.415945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout","Output":"=== RUN TestLogout\n"} +{"Time":"2022-12-07T09:15:20.415953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout","Output":"=== PAUSE TestLogout\n"} +{"Time":"2022-12-07T09:15:20.41596+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogout"} +{"Time":"2022-12-07T09:15:20.415967+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestPortForward"} +{"Time":"2022-12-07T09:15:20.415978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPortForward","Output":"=== RUN TestPortForward\n"} +{"Time":"2022-12-07T09:15:20.415987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPortForward","Output":"=== PAUSE TestPortForward\n"} +{"Time":"2022-12-07T09:15:20.415993+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestPortForward"} +{"Time":"2022-12-07T09:15:20.416+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestPublicKey"} +{"Time":"2022-12-07T09:15:20.416006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey","Output":"=== RUN TestPublicKey\n"} +{"Time":"2022-12-07T09:15:20.416016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey","Output":"=== PAUSE TestPublicKey\n"} +{"Time":"2022-12-07T09:15:20.416022+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestPublicKey"} +{"Time":"2022-12-07T09:15:20.41603+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:20.416036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== RUN TestRename\n"} +{"Time":"2022-12-07T09:15:20.416043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== PAUSE TestRename\n"} +{"Time":"2022-12-07T09:15:20.41605+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:20.416056+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestResetPassword"} +{"Time":"2022-12-07T09:15:20.416062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestResetPassword","Output":"=== RUN TestResetPassword\n"} +{"Time":"2022-12-07T09:15:20.416074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestResetPassword","Output":"--- SKIP: TestResetPassword (0.00s)\n"} +{"Time":"2022-12-07T09:15:20.416088+01:00","Action":"skip","Package":"github.com/coder/coder/cli","Test":"TestResetPassword","Elapsed":0} +{"Time":"2022-12-07T09:15:20.416095+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp"} +{"Time":"2022-12-07T09:15:20.416102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp","Output":"=== RUN TestCommandHelp\n"} +{"Time":"2022-12-07T09:15:20.416109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp","Output":"=== PAUSE TestCommandHelp\n"} +{"Time":"2022-12-07T09:15:20.416116+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp"} +{"Time":"2022-12-07T09:15:20.416122+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRoot"} +{"Time":"2022-12-07T09:15:20.416128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot","Output":"=== RUN TestRoot\n"} +{"Time":"2022-12-07T09:15:20.416136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot","Output":"=== PAUSE TestRoot\n"} +{"Time":"2022-12-07T09:15:20.416142+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRoot"} +{"Time":"2022-12-07T09:15:20.416149+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow"} +{"Time":"2022-12-07T09:15:20.416162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow","Output":"=== RUN TestScheduleShow\n"} +{"Time":"2022-12-07T09:15:20.416176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow","Output":"=== PAUSE TestScheduleShow\n"} +{"Time":"2022-12-07T09:15:20.416183+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow"} +{"Time":"2022-12-07T09:15:20.416197+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:20.416203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== RUN TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:20.416211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== PAUSE TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:20.416217+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:20.416224+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:20.41623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== RUN TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:20.416237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== PAUSE TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:20.416243+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:20.41625+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride"} +{"Time":"2022-12-07T09:15:20.416256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride","Output":"=== RUN TestScheduleOverride\n"} +{"Time":"2022-12-07T09:15:20.416263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride","Output":"=== PAUSE TestScheduleOverride\n"} +{"Time":"2022-12-07T09:15:20.41627+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride"} +{"Time":"2022-12-07T09:15:20.416276+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults"} +{"Time":"2022-12-07T09:15:20.41629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":"=== RUN TestScheduleStartDefaults\n"} +{"Time":"2022-12-07T09:15:20.441976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.441 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"331.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2d4ca45e-f26f-413a-b125-760545ec8c4a\"}\n"} +{"Time":"2022-12-07T09:15:20.442369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.442 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"78.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d879262a-f882-419e-8fab-73727d8cd9ff\"}\n"} +{"Time":"2022-12-07T09:15:20.443579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.443 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"749.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f2f1c860-5130-46e5-a9a6-7c51f254e98c\"}\n"} +{"Time":"2022-12-07T09:15:20.445236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.445 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/organizations/b0b516cc-699c-41cb-bee7-d92885361ee0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.395625ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"4c410843-2cce-4032-8313-5b51c38926c8\"}\n"} +{"Time":"2022-12-07T09:15:20.445374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" schedule_test.go:361: waiting for template version job 923ea154-5222-475c-a92a-24ea6848d74f\n"} +{"Time":"2022-12-07T09:15:20.472481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.472 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"871.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e41e82d7-b573-46ea-8524-789ce07a19ba\"}\n"} +{"Time":"2022-12-07T09:15:20.497976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.497 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.142708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"184e582e-1137-49d5-a971-a11b1ee9f956\"}\n"} +{"Time":"2022-12-07T09:15:20.5233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.346208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3276dd7c-bb89-4194-a1c2-8f4209a44b73\"}\n"} +{"Time":"2022-12-07T09:15:20.540613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.540 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:20.547748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.547 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.302333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f1e0e31b-6c0c-4589-8430-153fd45e2131\"}\n"} +{"Time":"2022-12-07T09:15:20.57374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.573 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.575375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"05374cf6-9ca4-495b-9a28-8350fca46046\"}\n"} +{"Time":"2022-12-07T09:15:20.592903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.592 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.593604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.593 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.594076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.593 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:20.594235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.594 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStartDefaults3574742674/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:20.594358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.594 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStartDefaults3574742674/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:20.59448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.594 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStartDefaults3574742674/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:20.594498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.594 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.595137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.594 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:20.598066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.597 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.605542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a6582475-07f9-4a7f-a14c-6e8b5965dbdc\"}\n"} +{"Time":"2022-12-07T09:15:20.623634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.623 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.528458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2236cb70-4a1c-4b0c-9f4b-6fc0c66cc72e\"}\n"} +{"Time":"2022-12-07T09:15:20.63775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.637 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"271.125µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:20.647454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.645 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.647489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.646 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:20.647818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.647 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.560583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ccd977bf-2036-4cb5-92cc-0c1fb17ca5ba\"}\n"} +{"Time":"2022-12-07T09:15:20.675067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.3765ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1c927dde-57f6-4a67-b9c9-d858030e9b74\"}\n"} +{"Time":"2022-12-07T09:15:20.700305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.696 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.700336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.697 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:20.700346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.697 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:20.700354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.697 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:20.700376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.697 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:20.700384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.697 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.700391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.697 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.700398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.965417ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"254f3235-0585-41a0-ba87-c25b3a32e170\"}\n"} +{"Time":"2022-12-07T09:15:20.700956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.700 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:20.700967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.723875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.723 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"902µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fdf9a641-e060-4f69-92b6-e047287e9337\"}\n"} +{"Time":"2022-12-07T09:15:20.750206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.184583ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"3920ead6-677d-4239-88c2-8f879245d5bd\"}\n"} +{"Time":"2022-12-07T09:15:20.751285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.751 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.751439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.751 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:20.751567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.751 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:20.751584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.751 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.751743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.751 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.752003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.781373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.781 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"9.145458ms\", \"status_code\": 200, \"latency_ms\": 9, \"request_id\": \"094d0453-9e23-409c-8386-8cdd26ca9e86\"}\n"} +{"Time":"2022-12-07T09:15:20.798899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.798 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.351708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"940ca450-1a40-4613-a3e5-2a4c827a2b94\"}\n"} +{"Time":"2022-12-07T09:15:20.804126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.803 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.804219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.803 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.804228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.803 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.804237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.803 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} +{"Time":"2022-12-07T09:15:20.822963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.822 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.25875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d460859b-7af9-4b00-9755-7b00ab150c8c\"}\n"} +{"Time":"2022-12-07T09:15:20.827731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/organizations/b0b516cc-699c-41cb-bee7-d92885361ee0/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.856083ms\", \"status_code\": 201, \"latency_ms\": 3, \"request_id\": \"b13325b1-e390-461d-8bb1-6163d0129a7e\"}\n"} +{"Time":"2022-12-07T09:15:20.831815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/organizations/b0b516cc-699c-41cb-bee7-d92885361ee0/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.248875ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"0137d40b-829d-4413-87b4-0507c3f133fe\"}\n"} +{"Time":"2022-12-07T09:15:20.846666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.845 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"105.959µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"583b660a-7935-4a37-9cb4-321bf9a2a75c\"}\n"} +{"Time":"2022-12-07T09:15:20.847261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.846 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"86.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6fab4c6e-88f9-438b-8211-93e563e1e171\"}\n"} +{"Time":"2022-12-07T09:15:20.851863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.849 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/users/me/workspace/exciting-rubin6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.222083ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"52e4d7c3-1b9a-48f8-8ea5-2ab578a65332\"}\n"} +{"Time":"2022-12-07T09:15:20.856755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.856 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/workspaces/eb56adf1-a0ac-4ade-b7c9-c879ca88b306/autostart\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.19425ms\", \"status_code\": 204, \"latency_ms\": 1, \"request_id\": \"ec36e550-ab52-4dcc-9c00-2cc91749e665\"}\n"} +{"Time":"2022-12-07T09:15:20.857921+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.857 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/users/me/workspace/exciting-rubin6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"778.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a5e9d74-b3c1-47e0-b86a-e359624d9ba7\"}\n"} +{"Time":"2022-12-07T09:15:20.858642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.858 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:20.86093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:20.86108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":"--- PASS: TestScheduleStartDefaults (0.44s)\n"} +{"Time":"2022-12-07T09:15:20.861101+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Elapsed":0.44} +{"Time":"2022-12-07T09:15:20.861115+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer"} +{"Time":"2022-12-07T09:15:20.86112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer","Output":"=== RUN TestServer\n"} +{"Time":"2022-12-07T09:15:20.861131+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/Production"} +{"Time":"2022-12-07T09:15:20.861151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Production","Output":"=== RUN TestServer/Production\n"} +{"Time":"2022-12-07T09:15:20.861242+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres"} +{"Time":"2022-12-07T09:15:20.86125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":"=== RUN TestServer/BuiltinPostgres\n"} +{"Time":"2022-12-07T09:15:20.861256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":"=== PAUSE TestServer/BuiltinPostgres\n"} +{"Time":"2022-12-07T09:15:20.86126+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres"} +{"Time":"2022-12-07T09:15:20.861265+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL"} +{"Time":"2022-12-07T09:15:20.861269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":"=== RUN TestServer/BuiltinPostgresURL\n"} +{"Time":"2022-12-07T09:15:20.861274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":"=== PAUSE TestServer/BuiltinPostgresURL\n"} +{"Time":"2022-12-07T09:15:20.861286+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL"} +{"Time":"2022-12-07T09:15:20.861292+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL"} +{"Time":"2022-12-07T09:15:20.861297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":"=== RUN TestServer/LocalAccessURL\n"} +{"Time":"2022-12-07T09:15:20.861301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":"=== PAUSE TestServer/LocalAccessURL\n"} +{"Time":"2022-12-07T09:15:20.861306+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL"} +{"Time":"2022-12-07T09:15:20.861309+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL"} +{"Time":"2022-12-07T09:15:20.861313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":"=== RUN TestServer/RemoteAccessURL\n"} +{"Time":"2022-12-07T09:15:20.861322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":"=== PAUSE TestServer/RemoteAccessURL\n"} +{"Time":"2022-12-07T09:15:20.861326+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL"} +{"Time":"2022-12-07T09:15:20.861333+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL"} +{"Time":"2022-12-07T09:15:20.861339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":"=== RUN TestServer/NoWarningWithRemoteAccessURL\n"} +{"Time":"2022-12-07T09:15:20.861344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":"=== PAUSE TestServer/NoWarningWithRemoteAccessURL\n"} +{"Time":"2022-12-07T09:15:20.861347+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL"} +{"Time":"2022-12-07T09:15:20.861354+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL"} +{"Time":"2022-12-07T09:15:20.861359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL","Output":"=== RUN TestServer/NoSchemeAccessURL\n"} +{"Time":"2022-12-07T09:15:20.861364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL","Output":"=== PAUSE TestServer/NoSchemeAccessURL\n"} +{"Time":"2022-12-07T09:15:20.861368+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL"} +{"Time":"2022-12-07T09:15:20.861374+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion"} +{"Time":"2022-12-07T09:15:20.861378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion","Output":"=== RUN TestServer/TLSBadVersion\n"} +{"Time":"2022-12-07T09:15:20.861426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion","Output":"=== PAUSE TestServer/TLSBadVersion\n"} +{"Time":"2022-12-07T09:15:20.861443+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion"} +{"Time":"2022-12-07T09:15:20.86145+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth"} +{"Time":"2022-12-07T09:15:20.861456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth","Output":"=== RUN TestServer/TLSBadClientAuth\n"} +{"Time":"2022-12-07T09:15:20.861461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth","Output":"=== PAUSE TestServer/TLSBadClientAuth\n"} +{"Time":"2022-12-07T09:15:20.861468+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth"} +{"Time":"2022-12-07T09:15:20.861476+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid"} +{"Time":"2022-12-07T09:15:20.861482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid","Output":"=== RUN TestServer/TLSInvalid\n"} +{"Time":"2022-12-07T09:15:20.861488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid","Output":"=== PAUSE TestServer/TLSInvalid\n"} +{"Time":"2022-12-07T09:15:20.861493+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid"} +{"Time":"2022-12-07T09:15:20.861497+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid"} +{"Time":"2022-12-07T09:15:20.861501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid","Output":"=== RUN TestServer/TLSValid\n"} +{"Time":"2022-12-07T09:15:20.861509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid","Output":"=== PAUSE TestServer/TLSValid\n"} +{"Time":"2022-12-07T09:15:20.861514+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid"} +{"Time":"2022-12-07T09:15:20.861518+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple"} +{"Time":"2022-12-07T09:15:20.861535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple","Output":"=== RUN TestServer/TLSValidMultiple\n"} +{"Time":"2022-12-07T09:15:20.861541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple","Output":"=== PAUSE TestServer/TLSValidMultiple\n"} +{"Time":"2022-12-07T09:15:20.861545+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple"} +{"Time":"2022-12-07T09:15:20.86159+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/Shutdown"} +{"Time":"2022-12-07T09:15:20.861595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Shutdown","Output":"=== RUN TestServer/Shutdown\n"} +{"Time":"2022-12-07T09:15:20.892866+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak"} +{"Time":"2022-12-07T09:15:20.89291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak","Output":"=== RUN TestServer/TracerNoLeak\n"} +{"Time":"2022-12-07T09:15:20.892917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak","Output":"=== PAUSE TestServer/TracerNoLeak\n"} +{"Time":"2022-12-07T09:15:20.89292+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak"} +{"Time":"2022-12-07T09:15:20.892923+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry"} +{"Time":"2022-12-07T09:15:20.892927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry","Output":"=== RUN TestServer/Telemetry\n"} +{"Time":"2022-12-07T09:15:20.892933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry","Output":"=== PAUSE TestServer/Telemetry\n"} +{"Time":"2022-12-07T09:15:20.892937+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry"} +{"Time":"2022-12-07T09:15:20.89294+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus"} +{"Time":"2022-12-07T09:15:20.892957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":"=== RUN TestServer/Prometheus\n"} +{"Time":"2022-12-07T09:15:20.892967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":"=== PAUSE TestServer/Prometheus\n"} +{"Time":"2022-12-07T09:15:20.892971+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus"} +{"Time":"2022-12-07T09:15:20.892974+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth"} +{"Time":"2022-12-07T09:15:20.892976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth","Output":"=== RUN TestServer/GitHubOAuth\n"} +{"Time":"2022-12-07T09:15:20.89298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth","Output":"=== PAUSE TestServer/GitHubOAuth\n"} +{"Time":"2022-12-07T09:15:20.892982+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth"} +{"Time":"2022-12-07T09:15:20.892984+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit"} +{"Time":"2022-12-07T09:15:20.892995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit","Output":"=== RUN TestServer/RateLimit\n"} +{"Time":"2022-12-07T09:15:20.892998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit","Output":"=== PAUSE TestServer/RateLimit\n"} +{"Time":"2022-12-07T09:15:20.893001+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit"} +{"Time":"2022-12-07T09:15:20.893004+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres"} +{"Time":"2022-12-07T09:15:20.893007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":"=== CONT TestServer/BuiltinPostgres\n"} +{"Time":"2022-12-07T09:15:20.89301+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid"} +{"Time":"2022-12-07T09:15:20.893014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid","Output":"=== CONT TestServer/TLSInvalid\n"} +{"Time":"2022-12-07T09:15:20.893016+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry"} +{"Time":"2022-12-07T09:15:20.893018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry","Output":"=== CONT TestServer/Telemetry\n"} +{"Time":"2022-12-07T09:15:20.893198+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple"} +{"Time":"2022-12-07T09:15:20.893236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple","Output":"=== CONT TestServer/TLSValidMultiple\n"} +{"Time":"2022-12-07T09:15:20.893531+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak"} +{"Time":"2022-12-07T09:15:20.89354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak","Output":"=== CONT TestServer/TracerNoLeak\n"} +{"Time":"2022-12-07T09:15:20.894711+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL"} +{"Time":"2022-12-07T09:15:20.894728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":"=== CONT TestServer/NoWarningWithRemoteAccessURL\n"} +{"Time":"2022-12-07T09:15:20.895663+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth"} +{"Time":"2022-12-07T09:15:20.895677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth","Output":"=== CONT TestServer/GitHubOAuth\n"} +{"Time":"2022-12-07T09:15:20.895683+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit"} +{"Time":"2022-12-07T09:15:20.895688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit","Output":"=== CONT TestServer/RateLimit\n"} +{"Time":"2022-12-07T09:15:20.899036+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default"} +{"Time":"2022-12-07T09:15:20.899051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default","Output":"=== RUN TestServer/RateLimit/Default\n"} +{"Time":"2022-12-07T09:15:20.899054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default","Output":"=== PAUSE TestServer/RateLimit/Default\n"} +{"Time":"2022-12-07T09:15:20.899055+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default"} +{"Time":"2022-12-07T09:15:20.899057+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed"} +{"Time":"2022-12-07T09:15:20.899058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed","Output":"=== RUN TestServer/RateLimit/Changed\n"} +{"Time":"2022-12-07T09:15:20.899061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed","Output":"=== PAUSE TestServer/RateLimit/Changed\n"} +{"Time":"2022-12-07T09:15:20.899062+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed"} +{"Time":"2022-12-07T09:15:20.899113+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled"} +{"Time":"2022-12-07T09:15:20.899269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled","Output":"=== RUN TestServer/RateLimit/Disabled\n"} +{"Time":"2022-12-07T09:15:20.899291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled","Output":"=== PAUSE TestServer/RateLimit/Disabled\n"} +{"Time":"2022-12-07T09:15:20.899293+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled"} +{"Time":"2022-12-07T09:15:20.899985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL"} +{"Time":"2022-12-07T09:15:20.89999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":"=== CONT TestServer/RemoteAccessURL\n"} +{"Time":"2022-12-07T09:15:20.899992+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey"} +{"Time":"2022-12-07T09:15:20.899994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey","Output":"=== RUN TestServer/TLSInvalid/NoCertAndKey\n"} +{"Time":"2022-12-07T09:15:20.900003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey","Output":"=== PAUSE TestServer/TLSInvalid/NoCertAndKey\n"} +{"Time":"2022-12-07T09:15:20.900004+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey"} +{"Time":"2022-12-07T09:15:20.900005+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert"} +{"Time":"2022-12-07T09:15:20.900006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert","Output":"=== RUN TestServer/TLSInvalid/NoCert\n"} +{"Time":"2022-12-07T09:15:20.900008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert","Output":"=== PAUSE TestServer/TLSInvalid/NoCert\n"} +{"Time":"2022-12-07T09:15:20.900009+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert"} +{"Time":"2022-12-07T09:15:20.90001+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey"} +{"Time":"2022-12-07T09:15:20.900012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey","Output":"=== RUN TestServer/TLSInvalid/NoKey\n"} +{"Time":"2022-12-07T09:15:20.900013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey","Output":"=== PAUSE TestServer/TLSInvalid/NoKey\n"} +{"Time":"2022-12-07T09:15:20.900014+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey"} +{"Time":"2022-12-07T09:15:20.900016+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount"} +{"Time":"2022-12-07T09:15:20.90002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount","Output":"=== RUN TestServer/TLSInvalid/MismatchedCount\n"} +{"Time":"2022-12-07T09:15:20.900022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount","Output":"=== PAUSE TestServer/TLSInvalid/MismatchedCount\n"} +{"Time":"2022-12-07T09:15:20.900023+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount"} +{"Time":"2022-12-07T09:15:20.900025+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey"} +{"Time":"2022-12-07T09:15:20.900026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey","Output":"=== RUN TestServer/TLSInvalid/MismatchedCertAndKey\n"} +{"Time":"2022-12-07T09:15:20.900028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey","Output":"=== PAUSE TestServer/TLSInvalid/MismatchedCertAndKey\n"} +{"Time":"2022-12-07T09:15:20.90003+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey"} +{"Time":"2022-12-07T09:15:20.900031+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL"} +{"Time":"2022-12-07T09:15:20.900032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":"=== CONT TestServer/LocalAccessURL\n"} +{"Time":"2022-12-07T09:15:20.906733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres"} +{"Time":"2022-12-07T09:15:20.90676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":"=== CONT TestServer/BuiltinPostgres\n"} +{"Time":"2022-12-07T09:15:20.906766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:20.906: cmd: stdout: \"\\x1b[1mCoder v0.0.0-devel\\x1b[0m - Software development on your infrastucture\"\n"} +{"Time":"2022-12-07T09:15:20.906772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:20.906: cmd: stdout: \"Using built-in PostgreSQL (/tmp/TestServerBuiltinPostgres2910781540/002/postgres)\"\n"} +{"Time":"2022-12-07T09:15:20.907247+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL"} +{"Time":"2022-12-07T09:15:20.907257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":"=== CONT TestServer/RemoteAccessURL\n"} +{"Time":"2022-12-07T09:15:20.907267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.907: cmd: stdout: \"\\x1b[1mCoder v0.0.0-devel\\x1b[0m - Software development on your infrastucture\"\n"} +{"Time":"2022-12-07T09:15:20.907662+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL"} +{"Time":"2022-12-07T09:15:20.907683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":"=== CONT TestServer/NoWarningWithRemoteAccessURL\n"} +{"Time":"2022-12-07T09:15:20.907686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.907: cmd: stdout: \"\\x1b[1mCoder v0.0.0-devel\\x1b[0m - Software development on your infrastucture\"\n"} +{"Time":"2022-12-07T09:15:20.908607+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL"} +{"Time":"2022-12-07T09:15:20.908636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":"=== CONT TestServer/LocalAccessURL\n"} +{"Time":"2022-12-07T09:15:20.908678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.908: cmd: stdout: \"\\x1b[1mCoder v0.0.0-devel\\x1b[0m - Software development on your infrastucture\"\n"} +{"Time":"2022-12-07T09:15:20.910065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.909: cmd: stdout: \"Warning: The access URL \\x1b[;mhttp://localhost:3000/\\x1b[0m isn't externally reachable, this may cause unexpected problems when creating workspaces. Generate a unique *.try.coder.app URL by not specifying an access URL.\"\n"} +{"Time":"2022-12-07T09:15:20.911846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.911: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:20.91186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.911: cmd: stdout: \"View the Web UI: http://localhost:3000/\"\n"} +{"Time":"2022-12-07T09:15:20.911863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL"} +{"Time":"2022-12-07T09:15:20.911865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":"=== CONT TestServer/RemoteAccessURL\n"} +{"Time":"2022-12-07T09:15:20.911868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.911: cmd: stdout: \"Warning: The access URL \\x1b[;mhttps://foobarbaz.mydomain\\x1b[0m could not be resolved, this may cause unexpected problems when creating workspaces. Generate a unique *.try.coder.app URL by not specifying an access URL.\"\n"} +{"Time":"2022-12-07T09:15:20.91187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.911: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:20.912458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.911: cmd: stdout: \"View the Web UI: https://foobarbaz.mydomain\"\n"} +{"Time":"2022-12-07T09:15:20.930355+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL"} +{"Time":"2022-12-07T09:15:20.930374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":"=== CONT TestServer/NoWarningWithRemoteAccessURL\n"} +{"Time":"2022-12-07T09:15:20.930379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.929: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:20.930381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.929: cmd: stdout: \"View the Web UI: https://google.com\"\n"} +{"Time":"2022-12-07T09:15:20.932798+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL"} +{"Time":"2022-12-07T09:15:20.932825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":"=== CONT TestServer/LocalAccessURL\n"} +{"Time":"2022-12-07T09:15:20.932835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.932: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:20.932838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.932: cmd: stdout: \"Get started by creating the first user (in a new terminal):\"\n"} +{"Time":"2022-12-07T09:15:20.932841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.932: cmd: stdout: \" \\x1b[;mcoder login http://localhost:3000/\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:20.932843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.932: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:20.932844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.932: cmd: stdout: \"==\u003e Logs will stream in below (press ctrl+c to gracefully exit):\"\n"} +{"Time":"2022-12-07T09:15:20.938479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL"} +{"Time":"2022-12-07T09:15:20.938489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":"=== CONT TestServer/RemoteAccessURL\n"} +{"Time":"2022-12-07T09:15:20.938492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.938: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:20.938494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.938: cmd: stdout: \"Get started by creating the first user (in a new terminal):\"\n"} +{"Time":"2022-12-07T09:15:20.938502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.938: cmd: stdout: \" \\x1b[;mcoder login https://foobarbaz.mydomain\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:20.938504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.938: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:20.938505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.938: cmd: stdout: \"==\u003e Logs will stream in below (press ctrl+c to gracefully exit):\"\n"} +{"Time":"2022-12-07T09:15:20.939985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL"} +{"Time":"2022-12-07T09:15:20.940018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":"=== CONT TestServer/BuiltinPostgresURL\n"} +{"Time":"2022-12-07T09:15:20.953318+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL"} +{"Time":"2022-12-07T09:15:20.953337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":"=== CONT TestServer/RemoteAccessURL\n"} +{"Time":"2022-12-07T09:15:20.953341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" server_test.go:179: 2022-12-07 08:15:20.952: cmd: matched \"this may cause unexpected problems when creating workspaces\" = \"\\x1b[1mCoder v0.0.0-devel\\x1b[0m - Software development on your infrastucture\\r\\nWarning: The access URL \\x1b[;mhttps://foobarbaz.mydomain\\x1b[0m could not be resolved, this may cause unexpected problems when creating workspaces\"\n"} +{"Time":"2022-12-07T09:15:20.953345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" server_test.go:180: 2022-12-07 08:15:20.953: cmd: matched \"View the Web UI: https://foobarbaz.mydomain\" = \". Generate a unique *.try.coder.app URL by not specifying an access URL.\\r\\n\\r\\nView the Web UI: https://foobarbaz.mydomain\"\n"} +{"Time":"2022-12-07T09:15:20.953978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:80: 2022-12-07 08:15:20.953: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:20.954597+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL"} +{"Time":"2022-12-07T09:15:20.954603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":"=== CONT TestServer/NoWarningWithRemoteAccessURL\n"} +{"Time":"2022-12-07T09:15:20.954606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.954: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:20.957139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.954: cmd: stdout: \"Get started by creating the first user (in a new terminal):\"\n"} +{"Time":"2022-12-07T09:15:20.957146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.957: cmd: stdout: \" \\x1b[;mcoder login https://google.com\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:20.957148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.957: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:20.95715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.957: cmd: stdout: \"==\u003e Logs will stream in below (press ctrl+c to gracefully exit):\"\n"} +{"Time":"2022-12-07T09:15:20.958307+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL"} +{"Time":"2022-12-07T09:15:20.958321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":"=== CONT TestServer/LocalAccessURL\n"} +{"Time":"2022-12-07T09:15:20.958325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" server_test.go:147: 2022-12-07 08:15:20.958: cmd: matched \"this may cause unexpected problems when creating workspaces\" = \"\\x1b[1mCoder v0.0.0-devel\\x1b[0m - Software development on your infrastucture\\r\\nWarning: The access URL \\x1b[;mhttp://localhost:3000/\\x1b[0m isn't externally reachable, this may cause unexpected problems when creating workspaces\"\n"} +{"Time":"2022-12-07T09:15:20.958582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" server_test.go:148: 2022-12-07 08:15:20.958: cmd: matched \"View the Web UI: http://localhost:3000/\" = \". Generate a unique *.try.coder.app URL by not specifying an access URL.\\r\\n\\r\\nView the Web UI: http://localhost:3000/\"\n"} +{"Time":"2022-12-07T09:15:20.964492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.964: cmd: stdout: \"\\x1b[1mInterrupt caught, gracefully exiting. Use ctrl+\\\\ to force quit\\x1b[0m\"\n"} +{"Time":"2022-12-07T09:15:20.964511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.964: cmd: stdout: \"Shutting down API server...\"\n"} +{"Time":"2022-12-07T09:15:20.964513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.964: cmd: stdout: \"Gracefully shut down API server\"\n"} +{"Time":"2022-12-07T09:15:20.964515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.964: cmd: stdout: \"Waiting for WebSocket connections to close...\"\n"} +{"Time":"2022-12-07T09:15:20.964517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.964: cmd: stdout: \"Done waiting for WebSocket connections\"\n"} +{"Time":"2022-12-07T09:15:20.96452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:80: 2022-12-07 08:15:20.964: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:20.964754+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion"} +{"Time":"2022-12-07T09:15:20.964764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion","Output":"=== CONT TestServer/TLSBadVersion\n"} +{"Time":"2022-12-07T09:15:20.970378+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth"} +{"Time":"2022-12-07T09:15:20.970389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth","Output":"=== CONT TestServer/TLSBadClientAuth\n"} +{"Time":"2022-12-07T09:15:20.971122+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL"} +{"Time":"2022-12-07T09:15:20.971131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":"=== CONT TestServer/BuiltinPostgresURL\n"} +{"Time":"2022-12-07T09:15:20.971134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.970: cmd: stdout: \"psql \\\"postgres://coder@localhost:56521/coder?sslmode=disable\u0026password=FEZrm3rsuTMbAk0r\\\"\"\n"} +{"Time":"2022-12-07T09:15:20.971138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":" server_test.go:119: 2022-12-07 08:15:20.971: cmd: matched \"psql\" = \"psql\"\n"} +{"Time":"2022-12-07T09:15:20.971141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":" ptytest.go:80: 2022-12-07 08:15:20.971: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:20.974956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL"} +{"Time":"2022-12-07T09:15:20.974962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL","Output":"=== CONT TestServer/NoSchemeAccessURL\n"} +{"Time":"2022-12-07T09:15:20.977063+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid"} +{"Time":"2022-12-07T09:15:20.977075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid","Output":"=== CONT TestServer/TLSValid\n"} +{"Time":"2022-12-07T09:15:20.978568+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus"} +{"Time":"2022-12-07T09:15:20.978578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":"=== CONT TestServer/Prometheus\n"} +{"Time":"2022-12-07T09:15:20.980344+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL"} +{"Time":"2022-12-07T09:15:20.980355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":"=== CONT TestServer/NoWarningWithRemoteAccessURL\n"} +{"Time":"2022-12-07T09:15:20.980357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" server_test.go:209: 2022-12-07 08:15:20.980: cmd: matched \"View the Web UI: https://google.com\" = \"\\x1b[1mCoder v0.0.0-devel\\x1b[0m - Software development on your infrastucture\\r\\n\\r\\nView the Web UI: https://google.com\"\n"} +{"Time":"2022-12-07T09:15:20.980696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:80: 2022-12-07 08:15:20.980: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:20.981985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default"} +{"Time":"2022-12-07T09:15:20.982001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default","Output":"=== CONT TestServer/RateLimit/Default\n"} +{"Time":"2022-12-07T09:15:20.982006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled"} +{"Time":"2022-12-07T09:15:20.98201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled","Output":"=== CONT TestServer/RateLimit/Disabled\n"} +{"Time":"2022-12-07T09:15:20.982014+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed"} +{"Time":"2022-12-07T09:15:20.982028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed","Output":"=== CONT TestServer/RateLimit/Changed\n"} +{"Time":"2022-12-07T09:15:20.985964+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey"} +{"Time":"2022-12-07T09:15:20.985977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey","Output":"=== CONT TestServer/TLSInvalid/NoCertAndKey\n"} +{"Time":"2022-12-07T09:15:21.006636+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount"} +{"Time":"2022-12-07T09:15:21.006652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount","Output":"=== CONT TestServer/TLSInvalid/MismatchedCount\n"} +{"Time":"2022-12-07T09:15:21.023106+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey"} +{"Time":"2022-12-07T09:15:21.02313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey","Output":"=== CONT TestServer/TLSInvalid/MismatchedCertAndKey\n"} +{"Time":"2022-12-07T09:15:21.027644+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey"} +{"Time":"2022-12-07T09:15:21.027655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey","Output":"=== CONT TestServer/TLSInvalid/NoKey\n"} +{"Time":"2022-12-07T09:15:21.029089+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert"} +{"Time":"2022-12-07T09:15:21.029094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert","Output":"=== CONT TestServer/TLSInvalid/NoCert\n"} +{"Time":"2022-12-07T09:15:21.034761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus"} +{"Time":"2022-12-07T09:15:21.034775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":"=== CONT TestServer/Prometheus\n"} +{"Time":"2022-12-07T09:15:21.034779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP coderd_api_active_users_duration_hour The number of users that have been active within the last hour.\n"} +{"Time":"2022-12-07T09:15:21.034782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE coderd_api_active_users_duration_hour gauge\n"} +{"Time":"2022-12-07T09:15:21.034793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP coderd_api_concurrent_requests The number of concurrent API requests\n"} +{"Time":"2022-12-07T09:15:21.034795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE coderd_api_concurrent_requests gauge\n"} +{"Time":"2022-12-07T09:15:21.034798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_concurrent_requests 0\n"} +{"Time":"2022-12-07T09:15:21.034799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP coderd_api_concurrent_websockets The total number of concurrent API websockets\n"} +{"Time":"2022-12-07T09:15:21.034814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE coderd_api_concurrent_websockets gauge\n"} +{"Time":"2022-12-07T09:15:21.034815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_concurrent_websockets 0\n"} +{"Time":"2022-12-07T09:15:21.034817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP coderd_api_request_latencies_ms Latency distribution of requests in milliseconds\n"} +{"Time":"2022-12-07T09:15:21.034819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE coderd_api_request_latencies_ms histogram\n"} +{"Time":"2022-12-07T09:15:21.034823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"1\"} 1\n"} +{"Time":"2022-12-07T09:15:21.034825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"5\"} 1\n"} +{"Time":"2022-12-07T09:15:21.034827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"10\"} 1\n"} +{"Time":"2022-12-07T09:15:21.034829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"25\"} 1\n"} +{"Time":"2022-12-07T09:15:21.03483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"50\"} 1\n"} +{"Time":"2022-12-07T09:15:21.034832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"100\"} 1\n"} +{"Time":"2022-12-07T09:15:21.034833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"500\"} 1\n"} +{"Time":"2022-12-07T09:15:21.034836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"1000\"} 1\n"} +{"Time":"2022-12-07T09:15:21.034838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"5000\"} 1\n"} +{"Time":"2022-12-07T09:15:21.034839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"10000\"} 1\n"} +{"Time":"2022-12-07T09:15:21.034841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"30000\"} 1\n"} +{"Time":"2022-12-07T09:15:21.034842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"+Inf\"} 1\n"} +{"Time":"2022-12-07T09:15:21.034843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_sum{method=\"GET\",path=\"/api/v2/users/first\"} 0.099125\n"} +{"Time":"2022-12-07T09:15:21.034845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_count{method=\"GET\",path=\"/api/v2/users/first\"} 1\n"} +{"Time":"2022-12-07T09:15:21.034847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP coderd_api_requests_processed_total The total number of processed API requests\n"} +{"Time":"2022-12-07T09:15:21.03485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE coderd_api_requests_processed_total counter\n"} +{"Time":"2022-12-07T09:15:21.034852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_requests_processed_total{code=\"404\",method=\"GET\",path=\"/api/v2/users/first\"} 1\n"} +{"Time":"2022-12-07T09:15:21.034853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP coderd_api_workspace_latest_build_total The latest workspace builds with a status.\n"} +{"Time":"2022-12-07T09:15:21.034855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE coderd_api_workspace_latest_build_total gauge\n"} +{"Time":"2022-12-07T09:15:21.034856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_gc_duration_seconds A summary of the pause duration of garbage collection cycles.\n"} +{"Time":"2022-12-07T09:15:21.034857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_gc_duration_seconds summary\n"} +{"Time":"2022-12-07T09:15:21.034859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_gc_duration_seconds{quantile=\"0\"} 2.7875e-05\n"} +{"Time":"2022-12-07T09:15:21.03486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_gc_duration_seconds{quantile=\"0.25\"} 0.000114791\n"} +{"Time":"2022-12-07T09:15:21.034862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_gc_duration_seconds{quantile=\"0.5\"} 0.000157624\n"} +{"Time":"2022-12-07T09:15:21.034863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_gc_duration_seconds{quantile=\"0.75\"} 0.000262542\n"} +{"Time":"2022-12-07T09:15:21.034865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_gc_duration_seconds{quantile=\"1\"} 0.0013015\n"} +{"Time":"2022-12-07T09:15:21.034866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_gc_duration_seconds_sum 0.005762207\n"} +{"Time":"2022-12-07T09:15:21.034867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_gc_duration_seconds_count 21\n"} +{"Time":"2022-12-07T09:15:21.034869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_goroutines Number of goroutines that currently exist.\n"} +{"Time":"2022-12-07T09:15:21.034872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_goroutines gauge\n"} +{"Time":"2022-12-07T09:15:21.034873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_goroutines 149\n"} +{"Time":"2022-12-07T09:15:21.034874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_info Information about the Go environment.\n"} +{"Time":"2022-12-07T09:15:21.034876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_info gauge\n"} +{"Time":"2022-12-07T09:15:21.034877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_info{version=\"go1.19\"} 1\n"} +{"Time":"2022-12-07T09:15:21.034878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_alloc_bytes Number of bytes allocated and still in use.\n"} +{"Time":"2022-12-07T09:15:21.034882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_alloc_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.034884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_alloc_bytes 1.2229408e+07\n"} +{"Time":"2022-12-07T09:15:21.034885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_alloc_bytes_total Total number of bytes allocated, even if freed.\n"} +{"Time":"2022-12-07T09:15:21.034889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_alloc_bytes_total counter\n"} +{"Time":"2022-12-07T09:15:21.03489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_alloc_bytes_total 1.27641408e+08\n"} +{"Time":"2022-12-07T09:15:21.034892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_buck_hash_sys_bytes Number of bytes used by the profiling bucket hash table.\n"} +{"Time":"2022-12-07T09:15:21.034894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_buck_hash_sys_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.034897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_buck_hash_sys_bytes 1.507147e+06\n"} +{"Time":"2022-12-07T09:15:21.034898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_frees_total Total number of frees.\n"} +{"Time":"2022-12-07T09:15:21.0349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_frees_total counter\n"} +{"Time":"2022-12-07T09:15:21.034903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_frees_total 854950\n"} +{"Time":"2022-12-07T09:15:21.034904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_gc_sys_bytes Number of bytes used for garbage collection system metadata.\n"} +{"Time":"2022-12-07T09:15:21.034908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_gc_sys_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.03491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_gc_sys_bytes 5.99836e+06\n"} +{"Time":"2022-12-07T09:15:21.034911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_heap_alloc_bytes Number of heap bytes allocated and still in use.\n"} +{"Time":"2022-12-07T09:15:21.034915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_heap_alloc_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.034919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_heap_alloc_bytes 1.2229408e+07\n"} +{"Time":"2022-12-07T09:15:21.03492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_heap_idle_bytes Number of heap bytes waiting to be used.\n"} +{"Time":"2022-12-07T09:15:21.034922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_heap_idle_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.034923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_heap_idle_bytes 1.851392e+07\n"} +{"Time":"2022-12-07T09:15:21.034929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_heap_inuse_bytes Number of heap bytes that are in use.\n"} +{"Time":"2022-12-07T09:15:21.034931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_heap_inuse_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.034933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_heap_inuse_bytes 1.7072128e+07\n"} +{"Time":"2022-12-07T09:15:21.034937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_heap_objects Number of allocated objects.\n"} +{"Time":"2022-12-07T09:15:21.034939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_heap_objects gauge\n"} +{"Time":"2022-12-07T09:15:21.034942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_heap_objects 113506\n"} +{"Time":"2022-12-07T09:15:21.034947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_heap_released_bytes Number of heap bytes released to OS.\n"} +{"Time":"2022-12-07T09:15:21.034951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_heap_released_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.034953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_heap_released_bytes 1.605632e+07\n"} +{"Time":"2022-12-07T09:15:21.034964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_heap_sys_bytes Number of heap bytes obtained from system.\n"} +{"Time":"2022-12-07T09:15:21.034966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_heap_sys_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.034967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_heap_sys_bytes 3.5586048e+07\n"} +{"Time":"2022-12-07T09:15:21.034968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_last_gc_time_seconds Number of seconds since 1970 of last garbage collection.\n"} +{"Time":"2022-12-07T09:15:21.03497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_last_gc_time_seconds gauge\n"} +{"Time":"2022-12-07T09:15:21.034971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_last_gc_time_seconds 1.6704009210269e+09\n"} +{"Time":"2022-12-07T09:15:21.034973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_lookups_total Total number of pointer lookups.\n"} +{"Time":"2022-12-07T09:15:21.034975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_lookups_total counter\n"} +{"Time":"2022-12-07T09:15:21.034977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_lookups_total 0\n"} +{"Time":"2022-12-07T09:15:21.034978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_mallocs_total Total number of mallocs.\n"} +{"Time":"2022-12-07T09:15:21.03498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_mallocs_total counter\n"} +{"Time":"2022-12-07T09:15:21.034981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_mallocs_total 968456\n"} +{"Time":"2022-12-07T09:15:21.034983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_mcache_inuse_bytes Number of bytes in use by mcache structures.\n"} +{"Time":"2022-12-07T09:15:21.034984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_mcache_inuse_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.034986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_mcache_inuse_bytes 9600\n"} +{"Time":"2022-12-07T09:15:21.034987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_mcache_sys_bytes Number of bytes used for mcache structures obtained from system.\n"} +{"Time":"2022-12-07T09:15:21.034989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_mcache_sys_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.034998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_mcache_sys_bytes 15600\n"} +{"Time":"2022-12-07T09:15:21.034999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_mspan_inuse_bytes Number of bytes in use by mspan structures.\n"} +{"Time":"2022-12-07T09:15:21.035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_mspan_inuse_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.035002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_mspan_inuse_bytes 291856\n"} +{"Time":"2022-12-07T09:15:21.035003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_mspan_sys_bytes Number of bytes used for mspan structures obtained from system.\n"} +{"Time":"2022-12-07T09:15:21.035005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_mspan_sys_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.035007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_mspan_sys_bytes 326400\n"} +{"Time":"2022-12-07T09:15:21.035008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_next_gc_bytes Number of heap bytes when next garbage collection will take place.\n"} +{"Time":"2022-12-07T09:15:21.035009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_next_gc_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.035011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_next_gc_bytes 1.851736e+07\n"} +{"Time":"2022-12-07T09:15:21.035012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_other_sys_bytes Number of bytes used for other system allocations.\n"} +{"Time":"2022-12-07T09:15:21.035014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_other_sys_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.035015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_other_sys_bytes 1.509045e+06\n"} +{"Time":"2022-12-07T09:15:21.035018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_stack_inuse_bytes Number of bytes in use by the stack allocator.\n"} +{"Time":"2022-12-07T09:15:21.03502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_stack_inuse_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.035021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_stack_inuse_bytes 2.162688e+06\n"} +{"Time":"2022-12-07T09:15:21.035023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_stack_sys_bytes Number of bytes obtained from system for stack allocator.\n"} +{"Time":"2022-12-07T09:15:21.035024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_stack_sys_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.035026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_stack_sys_bytes 2.162688e+06\n"} +{"Time":"2022-12-07T09:15:21.035028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_sys_bytes Number of bytes obtained from system.\n"} +{"Time":"2022-12-07T09:15:21.035029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_sys_bytes gauge\n"} +{"Time":"2022-12-07T09:15:21.035031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_sys_bytes 4.7105288e+07\n"} +{"Time":"2022-12-07T09:15:21.035032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_threads Number of OS threads created.\n"} +{"Time":"2022-12-07T09:15:21.035034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_threads gauge\n"} +{"Time":"2022-12-07T09:15:21.035036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_threads 27\n"} +{"Time":"2022-12-07T09:15:21.035037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP promhttp_metric_handler_requests_in_flight Current number of scrapes being served.\n"} +{"Time":"2022-12-07T09:15:21.035039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE promhttp_metric_handler_requests_in_flight gauge\n"} +{"Time":"2022-12-07T09:15:21.035041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned promhttp_metric_handler_requests_in_flight 1\n"} +{"Time":"2022-12-07T09:15:21.035043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP promhttp_metric_handler_requests_total Total number of scrapes by HTTP status code.\n"} +{"Time":"2022-12-07T09:15:21.035044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE promhttp_metric_handler_requests_total counter\n"} +{"Time":"2022-12-07T09:15:21.035045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned promhttp_metric_handler_requests_total{code=\"200\"} 0\n"} +{"Time":"2022-12-07T09:15:21.035047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned promhttp_metric_handler_requests_total{code=\"500\"} 0\n"} +{"Time":"2022-12-07T09:15:21.035049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned promhttp_metric_handler_requests_total{code=\"503\"} 0\n"} +{"Time":"2022-12-07T09:15:30.697301+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres"} +{"Time":"2022-12-07T09:15:30.697319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":"=== CONT TestServer/BuiltinPostgres\n"} +{"Time":"2022-12-07T09:15:30.697322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:30.697: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:30.697325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:30.697: cmd: stdout: \"View the Web UI: http://example.com\"\n"} +{"Time":"2022-12-07T09:15:31.011532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.011: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:31.011556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.011: cmd: stdout: \"Get started by creating the first user (in a new terminal):\"\n"} +{"Time":"2022-12-07T09:15:31.011753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.011: cmd: stdout: \" \\x1b[;mcoder login http://example.com\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:31.011767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.011: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:31.011771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.011: cmd: stdout: \"==\u003e Logs will stream in below (press ctrl+c to gracefully exit):\"\n"} +{"Time":"2022-12-07T09:15:31.026022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.025: cmd: stdout: \"\\x1b[1mInterrupt caught, gracefully exiting. Use ctrl+\\\\ to force quit\\x1b[0m\"\n"} +{"Time":"2022-12-07T09:15:31.02603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.026: cmd: stdout: \"Shutting down API server...\"\n"} +{"Time":"2022-12-07T09:15:31.026168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.026: cmd: stdout: \"Gracefully shut down API server\"\n"} +{"Time":"2022-12-07T09:15:31.026185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.026: cmd: stdout: \"Waiting for WebSocket connections to close...\"\n"} +{"Time":"2022-12-07T09:15:31.026188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.026: cmd: stdout: \"Done waiting for WebSocket connections\"\n"} +{"Time":"2022-12-07T09:15:31.026202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.026: cmd: stdout: \"Stopping built-in PostgreSQL...\"\n"} +{"Time":"2022-12-07T09:15:31.138612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.138: cmd: stdout: \"Stopped built-in PostgreSQL\"\n"} +{"Time":"2022-12-07T09:15:31.138883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:80: 2022-12-07 08:15:31.138: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:31.250341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer","Output":"--- PASS: TestServer (0.03s)\n"} +{"Time":"2022-12-07T09:15:31.25036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Production","Output":" --- SKIP: TestServer/Production (0.00s)\n"} +{"Time":"2022-12-07T09:15:31.250363+01:00","Action":"skip","Package":"github.com/coder/coder/cli","Test":"TestServer/Production","Elapsed":0} +{"Time":"2022-12-07T09:15:31.250367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Shutdown","Output":" --- PASS: TestServer/Shutdown (0.03s)\n"} +{"Time":"2022-12-07T09:15:31.250369+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/Shutdown","Elapsed":0.03} +{"Time":"2022-12-07T09:15:31.250371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth","Output":" --- PASS: TestServer/GitHubOAuth (0.04s)\n"} +{"Time":"2022-12-07T09:15:31.250372+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth","Elapsed":0.04} +{"Time":"2022-12-07T09:15:31.250374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" --- PASS: TestServer/RemoteAccessURL (0.06s)\n"} +{"Time":"2022-12-07T09:15:31.250376+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Elapsed":0.06} +{"Time":"2022-12-07T09:15:31.250386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" --- PASS: TestServer/LocalAccessURL (0.07s)\n"} +{"Time":"2022-12-07T09:15:31.250388+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Elapsed":0.07} +{"Time":"2022-12-07T09:15:31.25039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple","Output":" --- PASS: TestServer/TLSValidMultiple (0.08s)\n"} +{"Time":"2022-12-07T09:15:31.250392+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple","Elapsed":0.08} +{"Time":"2022-12-07T09:15:31.250394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":" --- PASS: TestServer/BuiltinPostgresURL (0.04s)\n"} +{"Time":"2022-12-07T09:15:31.250396+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Elapsed":0.04} +{"Time":"2022-12-07T09:15:31.250397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry","Output":" --- PASS: TestServer/Telemetry (0.08s)\n"} +{"Time":"2022-12-07T09:15:31.250399+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry","Elapsed":0.08} +{"Time":"2022-12-07T09:15:31.250401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" --- PASS: TestServer/NoWarningWithRemoteAccessURL (0.09s)\n"} +{"Time":"2022-12-07T09:15:31.250403+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Elapsed":0.09} +{"Time":"2022-12-07T09:15:31.250404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth","Output":" --- PASS: TestServer/TLSBadClientAuth (0.01s)\n"} +{"Time":"2022-12-07T09:15:31.250406+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth","Elapsed":0.01} +{"Time":"2022-12-07T09:15:31.250407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion","Output":" --- PASS: TestServer/TLSBadVersion (0.02s)\n"} +{"Time":"2022-12-07T09:15:31.250409+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion","Elapsed":0.02} +{"Time":"2022-12-07T09:15:31.25041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL","Output":" --- PASS: TestServer/NoSchemeAccessURL (0.01s)\n"} +{"Time":"2022-12-07T09:15:31.250411+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL","Elapsed":0.01} +{"Time":"2022-12-07T09:15:31.250416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid","Output":" --- PASS: TestServer/TLSValid (0.05s)\n"} +{"Time":"2022-12-07T09:15:31.250418+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid","Elapsed":0.05} +{"Time":"2022-12-07T09:15:31.25042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid","Output":" --- PASS: TestServer/TLSInvalid (0.01s)\n"} +{"Time":"2022-12-07T09:15:31.250424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey","Output":" --- PASS: TestServer/TLSInvalid/NoCertAndKey (0.02s)\n"} +{"Time":"2022-12-07T09:15:31.250431+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey","Elapsed":0.02} +{"Time":"2022-12-07T09:15:31.250433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount","Output":" --- PASS: TestServer/TLSInvalid/MismatchedCount (0.02s)\n"} +{"Time":"2022-12-07T09:15:31.250435+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount","Elapsed":0.02} +{"Time":"2022-12-07T09:15:31.250436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey","Output":" --- PASS: TestServer/TLSInvalid/MismatchedCertAndKey (0.01s)\n"} +{"Time":"2022-12-07T09:15:31.250438+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey","Elapsed":0.01} +{"Time":"2022-12-07T09:15:31.25044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey","Output":" --- PASS: TestServer/TLSInvalid/NoKey (0.00s)\n"} +{"Time":"2022-12-07T09:15:31.250441+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey","Elapsed":0} +{"Time":"2022-12-07T09:15:31.250442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert","Output":" --- PASS: TestServer/TLSInvalid/NoCert (0.01s)\n"} +{"Time":"2022-12-07T09:15:31.250444+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert","Elapsed":0.01} +{"Time":"2022-12-07T09:15:31.250445+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid","Elapsed":0.01} +{"Time":"2022-12-07T09:15:31.250447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" --- PASS: TestServer/Prometheus (0.06s)\n"} +{"Time":"2022-12-07T09:15:31.250449+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Elapsed":0.06} +{"Time":"2022-12-07T09:15:31.250452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit","Output":" --- PASS: TestServer/RateLimit (0.00s)\n"} +{"Time":"2022-12-07T09:15:31.250453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed","Output":" --- PASS: TestServer/RateLimit/Changed (0.05s)\n"} +{"Time":"2022-12-07T09:15:31.250455+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed","Elapsed":0.05} +{"Time":"2022-12-07T09:15:31.250456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled","Output":" --- PASS: TestServer/RateLimit/Disabled (0.05s)\n"} +{"Time":"2022-12-07T09:15:31.250458+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled","Elapsed":0.05} +{"Time":"2022-12-07T09:15:31.25046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default","Output":" --- PASS: TestServer/RateLimit/Default (0.06s)\n"} +{"Time":"2022-12-07T09:15:31.250462+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default","Elapsed":0.06} +{"Time":"2022-12-07T09:15:31.250463+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit","Elapsed":0} +{"Time":"2022-12-07T09:15:31.250464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak","Output":" --- PASS: TestServer/TracerNoLeak (0.55s)\n"} +{"Time":"2022-12-07T09:15:31.250466+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak","Elapsed":0.55} +{"Time":"2022-12-07T09:15:31.250468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" --- PASS: TestServer/BuiltinPostgres (10.36s)\n"} +{"Time":"2022-12-07T09:15:31.250469+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Elapsed":10.36} +{"Time":"2022-12-07T09:15:31.250471+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer","Elapsed":0.03} +{"Time":"2022-12-07T09:15:31.250473+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestShow"} +{"Time":"2022-12-07T09:15:31.250475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow","Output":"=== RUN TestShow\n"} +{"Time":"2022-12-07T09:15:31.250479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow","Output":"=== PAUSE TestShow\n"} +{"Time":"2022-12-07T09:15:31.25048+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestShow"} +{"Time":"2022-12-07T09:15:31.250481+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.250483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== RUN TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.250484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== PAUSE TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.250486+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.250487+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestSSH"} +{"Time":"2022-12-07T09:15:31.250488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH","Output":"=== RUN TestSSH\n"} +{"Time":"2022-12-07T09:15:31.250499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH","Output":"=== PAUSE TestSSH\n"} +{"Time":"2022-12-07T09:15:31.250501+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestSSH"} +{"Time":"2022-12-07T09:15:31.250502+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestStatePull"} +{"Time":"2022-12-07T09:15:31.250503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull","Output":"=== RUN TestStatePull\n"} +{"Time":"2022-12-07T09:15:31.250505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull","Output":"=== PAUSE TestStatePull\n"} +{"Time":"2022-12-07T09:15:31.250506+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestStatePull"} +{"Time":"2022-12-07T09:15:31.250509+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestStatePush"} +{"Time":"2022-12-07T09:15:31.25051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush","Output":"=== RUN TestStatePush\n"} +{"Time":"2022-12-07T09:15:31.250512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush","Output":"=== PAUSE TestStatePush\n"} +{"Time":"2022-12-07T09:15:31.250513+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestStatePush"} +{"Time":"2022-12-07T09:15:31.250514+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate"} +{"Time":"2022-12-07T09:15:31.250518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate","Output":"=== RUN TestTemplateCreate\n"} +{"Time":"2022-12-07T09:15:31.25052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate","Output":"=== PAUSE TestTemplateCreate\n"} +{"Time":"2022-12-07T09:15:31.250521+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate"} +{"Time":"2022-12-07T09:15:31.250522+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete"} +{"Time":"2022-12-07T09:15:31.250523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete","Output":"=== RUN TestTemplateDelete\n"} +{"Time":"2022-12-07T09:15:31.250526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete","Output":"=== PAUSE TestTemplateDelete\n"} +{"Time":"2022-12-07T09:15:31.250528+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete"} +{"Time":"2022-12-07T09:15:31.25053+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit"} +{"Time":"2022-12-07T09:15:31.250532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit","Output":"=== RUN TestTemplateEdit\n"} +{"Time":"2022-12-07T09:15:31.250534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit","Output":"=== PAUSE TestTemplateEdit\n"} +{"Time":"2022-12-07T09:15:31.250536+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit"} +{"Time":"2022-12-07T09:15:31.250538+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit"} +{"Time":"2022-12-07T09:15:31.250539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit","Output":"=== RUN TestTemplateInit\n"} +{"Time":"2022-12-07T09:15:31.250541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit","Output":"=== PAUSE TestTemplateInit\n"} +{"Time":"2022-12-07T09:15:31.250542+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit"} +{"Time":"2022-12-07T09:15:31.250544+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateList"} +{"Time":"2022-12-07T09:15:31.250545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList","Output":"=== RUN TestTemplateList\n"} +{"Time":"2022-12-07T09:15:31.250547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList","Output":"=== PAUSE TestTemplateList\n"} +{"Time":"2022-12-07T09:15:31.25055+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateList"} +{"Time":"2022-12-07T09:15:31.250552+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull"} +{"Time":"2022-12-07T09:15:31.250553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull","Output":"=== RUN TestTemplatePull\n"} +{"Time":"2022-12-07T09:15:31.250556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull","Output":"=== PAUSE TestTemplatePull\n"} +{"Time":"2022-12-07T09:15:31.250557+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull"} +{"Time":"2022-12-07T09:15:31.250558+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush"} +{"Time":"2022-12-07T09:15:31.25056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush","Output":"=== RUN TestTemplatePush\n"} +{"Time":"2022-12-07T09:15:31.250561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush","Output":"=== PAUSE TestTemplatePush\n"} +{"Time":"2022-12-07T09:15:31.250563+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush"} +{"Time":"2022-12-07T09:15:31.250564+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions"} +{"Time":"2022-12-07T09:15:31.250565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions","Output":"=== RUN TestTemplateVersions\n"} +{"Time":"2022-12-07T09:15:31.250566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions","Output":"=== PAUSE TestTemplateVersions\n"} +{"Time":"2022-12-07T09:15:31.250567+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions"} +{"Time":"2022-12-07T09:15:31.250569+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTokens"} +{"Time":"2022-12-07T09:15:31.25057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== RUN TestTokens\n"} +{"Time":"2022-12-07T09:15:31.250572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== PAUSE TestTokens\n"} +{"Time":"2022-12-07T09:15:31.250573+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTokens"} +{"Time":"2022-12-07T09:15:31.250576+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUpdate"} +{"Time":"2022-12-07T09:15:31.250577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate","Output":"=== RUN TestUpdate\n"} +{"Time":"2022-12-07T09:15:31.250579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate","Output":"=== PAUSE TestUpdate\n"} +{"Time":"2022-12-07T09:15:31.25058+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUpdate"} +{"Time":"2022-12-07T09:15:31.250582+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserCreate"} +{"Time":"2022-12-07T09:15:31.250583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate","Output":"=== RUN TestUserCreate\n"} +{"Time":"2022-12-07T09:15:31.250585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate","Output":"=== PAUSE TestUserCreate\n"} +{"Time":"2022-12-07T09:15:31.250586+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserCreate"} +{"Time":"2022-12-07T09:15:31.250587+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserList"} +{"Time":"2022-12-07T09:15:31.250589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList","Output":"=== RUN TestUserList\n"} +{"Time":"2022-12-07T09:15:31.250591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList","Output":"=== PAUSE TestUserList\n"} +{"Time":"2022-12-07T09:15:31.250593+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserList"} +{"Time":"2022-12-07T09:15:31.250595+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserShow"} +{"Time":"2022-12-07T09:15:31.250596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow","Output":"=== RUN TestUserShow\n"} +{"Time":"2022-12-07T09:15:31.250597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow","Output":"=== PAUSE TestUserShow\n"} +{"Time":"2022-12-07T09:15:31.250599+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserShow"} +{"Time":"2022-12-07T09:15:31.250601+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.250602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== RUN TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.250604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== PAUSE TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.250605+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.250655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape"} +{"Time":"2022-12-07T09:15:31.250668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape","Output":"=== CONT Test_sshConfigExecEscape\n"} +{"Time":"2022-12-07T09:15:31.250673+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList"} +{"Time":"2022-12-07T09:15:31.250675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList","Output":"=== CONT TestUserList\n"} +{"Time":"2022-12-07T09:15:31.250677+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate"} +{"Time":"2022-12-07T09:15:31.250678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate","Output":"=== CONT TestTemplateCreate\n"} +{"Time":"2022-12-07T09:15:31.25068+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces"} +{"Time":"2022-12-07T09:15:31.250682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces","Output":"=== RUN Test_sshConfigExecEscape/no_spaces\n"} +{"Time":"2022-12-07T09:15:31.250683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces","Output":"=== PAUSE Test_sshConfigExecEscape/no_spaces\n"} +{"Time":"2022-12-07T09:15:31.250685+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces"} +{"Time":"2022-12-07T09:15:31.250686+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete"} +{"Time":"2022-12-07T09:15:31.250688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete","Output":"=== CONT TestTemplateDelete\n"} +{"Time":"2022-12-07T09:15:31.250691+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow"} +{"Time":"2022-12-07T09:15:31.250692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow","Output":"=== CONT TestScheduleShow\n"} +{"Time":"2022-12-07T09:15:31.250693+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.250694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.250696+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.250698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== RUN TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.2507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== PAUSE TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.250701+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.250703+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.250704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== RUN TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.250706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== PAUSE TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.250708+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.25071+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.250711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== RUN TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.25072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== PAUSE TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.250722+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.250723+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table"} +{"Time":"2022-12-07T09:15:31.250724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":"=== RUN TestUserList/Table\n"} +{"Time":"2022-12-07T09:15:31.250726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":"=== PAUSE TestUserList/Table\n"} +{"Time":"2022-12-07T09:15:31.250728+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table"} +{"Time":"2022-12-07T09:15:31.250734+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON"} +{"Time":"2022-12-07T09:15:31.250735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":"=== RUN TestUserList/JSON\n"} +{"Time":"2022-12-07T09:15:31.250739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":"=== PAUSE TestUserList/JSON\n"} +{"Time":"2022-12-07T09:15:31.250741+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON"} +{"Time":"2022-12-07T09:15:31.250742+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText"} +{"Time":"2022-12-07T09:15:31.250744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText","Output":"=== RUN TestUserList/NoURLFileErrorHasHelperText\n"} +{"Time":"2022-12-07T09:15:31.250745+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull"} +{"Time":"2022-12-07T09:15:31.250747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull","Output":"=== CONT TestStatePull\n"} +{"Time":"2022-12-07T09:15:31.25075+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} +{"Time":"2022-12-07T09:15:31.250752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== RUN TestTemplateCreate/Create\n"} +{"Time":"2022-12-07T09:15:31.250771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== PAUSE TestTemplateCreate/Create\n"} +{"Time":"2022-12-07T09:15:31.250776+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} +{"Time":"2022-12-07T09:15:31.250778+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:31.25078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== RUN TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:31.250801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText","Output":"=== PAUSE TestUserList/NoURLFileErrorHasHelperText\n"} +{"Time":"2022-12-07T09:15:31.250804+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText"} +{"Time":"2022-12-07T09:15:31.25082+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText"} +{"Time":"2022-12-07T09:15:31.250821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":"=== RUN TestUserList/SessionAuthErrorHasHelperText\n"} +{"Time":"2022-12-07T09:15:31.250825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":"=== PAUSE TestUserList/SessionAuthErrorHasHelperText\n"} +{"Time":"2022-12-07T09:15:31.250826+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText"} +{"Time":"2022-12-07T09:15:31.250829+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.250831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== RUN TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.250852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== PAUSE TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.250854+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.250855+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:31.250857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== RUN TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:31.250859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== PAUSE TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:31.25086+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:31.250862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.250863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.250903+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH"} +{"Time":"2022-12-07T09:15:31.250908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH","Output":"=== CONT TestSSH\n"} +{"Time":"2022-12-07T09:15:31.250989+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:31.250997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== RUN TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:31.251+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:31.251001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== RUN TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:31.251003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== PAUSE TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:31.251004+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:31.251006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== PAUSE TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:31.251007+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:31.25101+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:31.251011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== RUN TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:31.251013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== PAUSE TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:31.251014+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:31.251015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow"} +{"Time":"2022-12-07T09:15:31.251017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow","Output":"=== CONT TestUserShow\n"} +{"Time":"2022-12-07T09:15:31.251019+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush"} +{"Time":"2022-12-07T09:15:31.251022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush","Output":"=== CONT TestStatePush\n"} +{"Time":"2022-12-07T09:15:31.251024+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} +{"Time":"2022-12-07T09:15:31.251026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== RUN TestUserShow/Table\n"} +{"Time":"2022-12-07T09:15:31.251029+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:31.251036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== RUN TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:31.251037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== PAUSE TestUserShow/Table\n"} +{"Time":"2022-12-07T09:15:31.251039+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} +{"Time":"2022-12-07T09:15:31.25104+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces"} +{"Time":"2022-12-07T09:15:31.251042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces","Output":"=== RUN Test_sshConfigExecEscape/spaces\n"} +{"Time":"2022-12-07T09:15:31.251043+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} +{"Time":"2022-12-07T09:15:31.251045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== RUN TestUserShow/JSON\n"} +{"Time":"2022-12-07T09:15:31.251046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== PAUSE TestUserShow/JSON\n"} +{"Time":"2022-12-07T09:15:31.251048+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} +{"Time":"2022-12-07T09:15:31.25105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces","Output":"=== PAUSE Test_sshConfigExecEscape/spaces\n"} +{"Time":"2022-12-07T09:15:31.251051+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces"} +{"Time":"2022-12-07T09:15:31.251053+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes"} +{"Time":"2022-12-07T09:15:31.251054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes","Output":"=== RUN Test_sshConfigExecEscape/quotes\n"} +{"Time":"2022-12-07T09:15:31.251071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes","Output":"=== PAUSE Test_sshConfigExecEscape/quotes\n"} +{"Time":"2022-12-07T09:15:31.251073+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes"} +{"Time":"2022-12-07T09:15:31.251077+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes"} +{"Time":"2022-12-07T09:15:31.251079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes","Output":"=== RUN Test_sshConfigExecEscape/backslashes\n"} +{"Time":"2022-12-07T09:15:31.251081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes","Output":"=== PAUSE Test_sshConfigExecEscape/backslashes\n"} +{"Time":"2022-12-07T09:15:31.251083+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes"} +{"Time":"2022-12-07T09:15:31.251084+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs"} +{"Time":"2022-12-07T09:15:31.251085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs","Output":"=== RUN Test_sshConfigExecEscape/tabs\n"} +{"Time":"2022-12-07T09:15:31.251087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs","Output":"=== PAUSE Test_sshConfigExecEscape/tabs\n"} +{"Time":"2022-12-07T09:15:31.251089+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs"} +{"Time":"2022-12-07T09:15:31.25109+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails"} +{"Time":"2022-12-07T09:15:31.251092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails","Output":"=== RUN Test_sshConfigExecEscape/newline_fails\n"} +{"Time":"2022-12-07T09:15:31.251094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails","Output":"=== PAUSE Test_sshConfigExecEscape/newline_fails\n"} +{"Time":"2022-12-07T09:15:31.251095+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails"} +{"Time":"2022-12-07T09:15:31.251096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== PAUSE TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:31.251097+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:31.251099+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:31.2511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== RUN TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:31.251102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== PAUSE TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:31.251103+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:31.251105+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRoot"} +{"Time":"2022-12-07T09:15:31.251106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot","Output":"=== CONT TestRoot\n"} +{"Time":"2022-12-07T09:15:31.251107+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError"} +{"Time":"2022-12-07T09:15:31.251108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError","Output":"=== RUN TestRoot/FormatCobraError\n"} +{"Time":"2022-12-07T09:15:31.25111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError","Output":"=== PAUSE TestRoot/FormatCobraError\n"} +{"Time":"2022-12-07T09:15:31.251111+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError"} +{"Time":"2022-12-07T09:15:31.251113+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version"} +{"Time":"2022-12-07T09:15:31.251114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version","Output":"=== RUN TestRoot/Version\n"} +{"Time":"2022-12-07T09:15:31.251115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version","Output":"=== PAUSE TestRoot/Version\n"} +{"Time":"2022-12-07T09:15:31.251117+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version"} +{"Time":"2022-12-07T09:15:31.251118+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header"} +{"Time":"2022-12-07T09:15:31.25112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header","Output":"=== RUN TestRoot/Header\n"} +{"Time":"2022-12-07T09:15:31.251121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header","Output":"=== PAUSE TestRoot/Header\n"} +{"Time":"2022-12-07T09:15:31.251123+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header"} +{"Time":"2022-12-07T09:15:31.251125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== PAUSE TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:31.251127+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:31.251128+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:31.25113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== RUN TestTemplateCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:31.251134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== PAUSE TestTemplateCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:31.251136+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:31.251137+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:31.251139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== RUN TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:31.251141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== PAUSE TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:31.251142+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:31.251146+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:31.251147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== RUN TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:31.251152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== PAUSE TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:31.251153+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:31.251157+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit"} +{"Time":"2022-12-07T09:15:31.251158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":"=== RUN TestTemplateCreate/WithParameterExceedingCharLimit\n"} +{"Time":"2022-12-07T09:15:31.25116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":"=== PAUSE TestTemplateCreate/WithParameterExceedingCharLimit\n"} +{"Time":"2022-12-07T09:15:31.251164+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit"} +{"Time":"2022-12-07T09:15:31.251166+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp"} +{"Time":"2022-12-07T09:15:31.251167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp","Output":"=== CONT TestCommandHelp\n"} +{"Time":"2022-12-07T09:15:31.251169+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_--help"} +{"Time":"2022-12-07T09:15:31.251175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_--help","Output":"=== RUN TestCommandHelp/coder_--help\n"} +{"Time":"2022-12-07T09:15:31.251176+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.251178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.25118+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride"} +{"Time":"2022-12-07T09:15:31.251181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride","Output":"=== CONT TestScheduleOverride\n"} +{"Time":"2022-12-07T09:15:31.251182+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:31.251184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== RUN TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:31.251185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== PAUSE TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:31.251187+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:31.251188+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:31.251189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== RUN TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:31.251191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== PAUSE TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:31.251193+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:31.251194+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:31.251195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== RUN TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:31.251197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== PAUSE TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:31.251199+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:31.251201+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow"} +{"Time":"2022-12-07T09:15:31.251203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow","Output":"=== CONT TestShow\n"} +{"Time":"2022-12-07T09:15:31.251205+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:31.251207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== RUN TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:31.251209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== PAUSE TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:31.251211+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:31.251407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestPublicKey"} +{"Time":"2022-12-07T09:15:31.251411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey","Output":"=== CONT TestPublicKey\n"} +{"Time":"2022-12-07T09:15:31.251415+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK"} +{"Time":"2022-12-07T09:15:31.251418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":"=== RUN TestPublicKey/OK\n"} +{"Time":"2022-12-07T09:15:31.25142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":"=== PAUSE TestPublicKey/OK\n"} +{"Time":"2022-12-07T09:15:31.251422+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK"} +{"Time":"2022-12-07T09:15:31.251425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestPortForward"} +{"Time":"2022-12-07T09:15:31.251427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPortForward","Output":"=== CONT TestPortForward\n"} +{"Time":"2022-12-07T09:15:31.251431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPortForward","Output":" portforward_test.go:27: These tests flake... a lot. It seems related to the Tailscale change, but all other tests pass...\n"} +{"Time":"2022-12-07T09:15:31.251438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPortForward","Output":"--- SKIP: TestPortForward (0.00s)\n"} +{"Time":"2022-12-07T09:15:31.251441+01:00","Action":"skip","Package":"github.com/coder/coder/cli","Test":"TestPortForward","Elapsed":0} +{"Time":"2022-12-07T09:15:31.251443+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin"} +{"Time":"2022-12-07T09:15:31.251444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin","Output":"=== CONT TestLogin\n"} +{"Time":"2022-12-07T09:15:31.251447+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY"} +{"Time":"2022-12-07T09:15:31.251448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Output":"=== RUN TestLogin/InitialUserNoTTY\n"} +{"Time":"2022-12-07T09:15:31.25145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Output":"=== PAUSE TestLogin/InitialUserNoTTY\n"} +{"Time":"2022-12-07T09:15:31.251451+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY"} +{"Time":"2022-12-07T09:15:31.251455+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL"} +{"Time":"2022-12-07T09:15:31.251456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL","Output":"=== RUN TestLogin/InitialUserBadLoginURL\n"} +{"Time":"2022-12-07T09:15:31.251458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL","Output":"=== PAUSE TestLogin/InitialUserBadLoginURL\n"} +{"Time":"2022-12-07T09:15:31.25146+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL"} +{"Time":"2022-12-07T09:15:31.251463+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY"} +{"Time":"2022-12-07T09:15:31.251464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":"=== RUN TestLogin/InitialUserTTY\n"} +{"Time":"2022-12-07T09:15:31.251467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":"=== PAUSE TestLogin/InitialUserTTY\n"} +{"Time":"2022-12-07T09:15:31.251469+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY"} +{"Time":"2022-12-07T09:15:31.251493+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags"} +{"Time":"2022-12-07T09:15:31.2515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":"=== RUN TestLogin/InitialUserFlags\n"} +{"Time":"2022-12-07T09:15:31.251502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":"=== PAUSE TestLogin/InitialUserFlags\n"} +{"Time":"2022-12-07T09:15:31.251504+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags"} +{"Time":"2022-12-07T09:15:31.251507+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt"} +{"Time":"2022-12-07T09:15:31.251509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":"=== RUN TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt\n"} +{"Time":"2022-12-07T09:15:31.251512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":"=== PAUSE TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt\n"} +{"Time":"2022-12-07T09:15:31.251513+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt"} +{"Time":"2022-12-07T09:15:31.251516+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} +{"Time":"2022-12-07T09:15:31.251517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== RUN TestLogin/ExistingUserValidTokenTTY\n"} +{"Time":"2022-12-07T09:15:31.251519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== PAUSE TestLogin/ExistingUserValidTokenTTY\n"} +{"Time":"2022-12-07T09:15:31.25152+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} +{"Time":"2022-12-07T09:15:31.251521+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout"} +{"Time":"2022-12-07T09:15:31.251523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout","Output":"=== CONT TestLogout\n"} +{"Time":"2022-12-07T09:15:31.251565+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:31.251587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== RUN TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:31.251596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== PAUSE TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:31.251601+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:31.251606+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:31.25161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== RUN TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:31.251615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== PAUSE TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:31.251618+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:31.251622+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY"} +{"Time":"2022-12-07T09:15:31.251634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":"=== RUN TestLogin/ExistingUserInvalidTokenTTY\n"} +{"Time":"2022-12-07T09:15:31.251639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":"=== PAUSE TestLogin/ExistingUserInvalidTokenTTY\n"} +{"Time":"2022-12-07T09:15:31.251642+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY"} +{"Time":"2022-12-07T09:15:31.251646+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} +{"Time":"2022-12-07T09:15:31.25165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== RUN TestLogout/Logout\n"} +{"Time":"2022-12-07T09:15:31.251657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== PAUSE TestLogout/Logout\n"} +{"Time":"2022-12-07T09:15:31.251676+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} +{"Time":"2022-12-07T09:15:31.251682+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt"} +{"Time":"2022-12-07T09:15:31.251684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":"=== RUN TestLogout/SkipPrompt\n"} +{"Time":"2022-12-07T09:15:31.251685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":"=== PAUSE TestLogout/SkipPrompt\n"} +{"Time":"2022-12-07T09:15:31.251687+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt"} +{"Time":"2022-12-07T09:15:31.251692+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile"} +{"Time":"2022-12-07T09:15:31.251693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":"=== RUN TestLogout/NoURLFile\n"} +{"Time":"2022-12-07T09:15:31.251695+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag"} +{"Time":"2022-12-07T09:15:31.251697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":"=== RUN TestLogin/TokenFlag\n"} +{"Time":"2022-12-07T09:15:31.251698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":"=== PAUSE TestLogin/TokenFlag\n"} +{"Time":"2022-12-07T09:15:31.2517+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag"} +{"Time":"2022-12-07T09:15:31.251701+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.251702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.251816+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.251823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.251826+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:31.251828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== RUN TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:31.25183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== PAUSE TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:31.251831+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:31.251833+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:31.251834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== RUN TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:31.251836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== PAUSE TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:31.251837+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:31.251838+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:31.25184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== RUN TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:31.251875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== PAUSE TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:31.251877+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:31.252205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":"=== PAUSE TestLogout/NoURLFile\n"} +{"Time":"2022-12-07T09:15:31.25221+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile"} +{"Time":"2022-12-07T09:15:31.252212+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile"} +{"Time":"2022-12-07T09:15:31.252214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":"=== RUN TestLogout/NoSessionFile\n"} +{"Time":"2022-12-07T09:15:31.252216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":"=== PAUSE TestLogout/NoSessionFile\n"} +{"Time":"2022-12-07T09:15:31.252217+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile"} +{"Time":"2022-12-07T09:15:31.252224+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles"} +{"Time":"2022-12-07T09:15:31.252225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":"=== RUN TestLogout/CannotDeleteFiles\n"} +{"Time":"2022-12-07T09:15:31.252227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":"=== PAUSE TestLogout/CannotDeleteFiles\n"} +{"Time":"2022-12-07T09:15:31.252228+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles"} +{"Time":"2022-12-07T09:15:31.252229+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList"} +{"Time":"2022-12-07T09:15:31.25223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList","Output":"=== CONT TestList\n"} +{"Time":"2022-12-07T09:15:31.252232+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:31.252233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== RUN TestList/Single\n"} +{"Time":"2022-12-07T09:15:31.252235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== PAUSE TestList/Single\n"} +{"Time":"2022-12-07T09:15:31.252236+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:31.252237+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate"} +{"Time":"2022-12-07T09:15:31.252239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate","Output":"=== CONT TestUpdate\n"} +{"Time":"2022-12-07T09:15:31.25224+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs"} +{"Time":"2022-12-07T09:15:31.252242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs","Output":"=== RUN TestUpdate/NoArgs\n"} +{"Time":"2022-12-07T09:15:31.252244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs","Output":"=== PAUSE TestUpdate/NoArgs\n"} +{"Time":"2022-12-07T09:15:31.252245+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs"} +{"Time":"2022-12-07T09:15:31.252246+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:31.252247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== RUN TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:31.252344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== PAUSE TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:31.252353+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:31.252356+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:31.25236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== RUN TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:31.252362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== PAUSE TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:31.252363+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:31.252365+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserCreate"} +{"Time":"2022-12-07T09:15:31.252369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate","Output":"=== CONT TestUserCreate\n"} +{"Time":"2022-12-07T09:15:31.252371+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts"} +{"Time":"2022-12-07T09:15:31.252372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":"=== RUN TestUserCreate/Prompts\n"} +{"Time":"2022-12-07T09:15:31.252374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":"=== PAUSE TestUserCreate/Prompts\n"} +{"Time":"2022-12-07T09:15:31.252375+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts"} +{"Time":"2022-12-07T09:15:31.252376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay"} +{"Time":"2022-12-07T09:15:31.252378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay","Output":"=== CONT TestDurationDisplay\n"} +{"Time":"2022-12-07T09:15:31.252379+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s"} +{"Time":"2022-12-07T09:15:31.25238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s","Output":"=== RUN TestDurationDisplay/-1s\n"} +{"Time":"2022-12-07T09:15:31.252382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s","Output":"=== PAUSE TestDurationDisplay/-1s\n"} +{"Time":"2022-12-07T09:15:31.252383+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s"} +{"Time":"2022-12-07T09:15:31.252384+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s"} +{"Time":"2022-12-07T09:15:31.252387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s","Output":"=== RUN TestDurationDisplay/0s\n"} +{"Time":"2022-12-07T09:15:31.252388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s","Output":"=== PAUSE TestDurationDisplay/0s\n"} +{"Time":"2022-12-07T09:15:31.252391+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s"} +{"Time":"2022-12-07T09:15:31.252392+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s"} +{"Time":"2022-12-07T09:15:31.252393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s","Output":"=== RUN TestDurationDisplay/1s\n"} +{"Time":"2022-12-07T09:15:31.252395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s","Output":"=== PAUSE TestDurationDisplay/1s\n"} +{"Time":"2022-12-07T09:15:31.252396+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s"} +{"Time":"2022-12-07T09:15:31.252397+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s"} +{"Time":"2022-12-07T09:15:31.252399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s","Output":"=== RUN TestDurationDisplay/59s\n"} +{"Time":"2022-12-07T09:15:31.2524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s","Output":"=== PAUSE TestDurationDisplay/59s\n"} +{"Time":"2022-12-07T09:15:31.252402+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s"} +{"Time":"2022-12-07T09:15:31.252403+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m"} +{"Time":"2022-12-07T09:15:31.252404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m","Output":"=== RUN TestDurationDisplay/1m\n"} +{"Time":"2022-12-07T09:15:31.252407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m","Output":"=== PAUSE TestDurationDisplay/1m\n"} +{"Time":"2022-12-07T09:15:31.252408+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m"} +{"Time":"2022-12-07T09:15:31.252411+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s"} +{"Time":"2022-12-07T09:15:31.252412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s","Output":"=== RUN TestDurationDisplay/1m1s\n"} +{"Time":"2022-12-07T09:15:31.252417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s","Output":"=== PAUSE TestDurationDisplay/1m1s\n"} +{"Time":"2022-12-07T09:15:31.252419+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s"} +{"Time":"2022-12-07T09:15:31.25242+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m"} +{"Time":"2022-12-07T09:15:31.252422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m","Output":"=== RUN TestDurationDisplay/2m\n"} +{"Time":"2022-12-07T09:15:31.252425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m","Output":"=== PAUSE TestDurationDisplay/2m\n"} +{"Time":"2022-12-07T09:15:31.252426+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m"} +{"Time":"2022-12-07T09:15:31.252427+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m"} +{"Time":"2022-12-07T09:15:31.252429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m","Output":"=== RUN TestDurationDisplay/59m\n"} +{"Time":"2022-12-07T09:15:31.252432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m","Output":"=== PAUSE TestDurationDisplay/59m\n"} +{"Time":"2022-12-07T09:15:31.252433+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m"} +{"Time":"2022-12-07T09:15:31.252434+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h"} +{"Time":"2022-12-07T09:15:31.252438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h","Output":"=== RUN TestDurationDisplay/1h\n"} +{"Time":"2022-12-07T09:15:31.25244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h","Output":"=== PAUSE TestDurationDisplay/1h\n"} +{"Time":"2022-12-07T09:15:31.252442+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h"} +{"Time":"2022-12-07T09:15:31.252445+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s"} +{"Time":"2022-12-07T09:15:31.252446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s","Output":"=== RUN TestDurationDisplay/1h1m1s\n"} +{"Time":"2022-12-07T09:15:31.252448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s","Output":"=== PAUSE TestDurationDisplay/1h1m1s\n"} +{"Time":"2022-12-07T09:15:31.252449+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s"} +{"Time":"2022-12-07T09:15:31.252451+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h"} +{"Time":"2022-12-07T09:15:31.252453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h","Output":"=== RUN TestDurationDisplay/2h\n"} +{"Time":"2022-12-07T09:15:31.252454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h","Output":"=== PAUSE TestDurationDisplay/2h\n"} +{"Time":"2022-12-07T09:15:31.252456+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h"} +{"Time":"2022-12-07T09:15:31.252457+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h"} +{"Time":"2022-12-07T09:15:31.252459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h","Output":"=== RUN TestDurationDisplay/23h\n"} +{"Time":"2022-12-07T09:15:31.252462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h","Output":"=== PAUSE TestDurationDisplay/23h\n"} +{"Time":"2022-12-07T09:15:31.252463+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h"} +{"Time":"2022-12-07T09:15:31.252465+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h"} +{"Time":"2022-12-07T09:15:31.252466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h","Output":"=== RUN TestDurationDisplay/24h\n"} +{"Time":"2022-12-07T09:15:31.252467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h","Output":"=== PAUSE TestDurationDisplay/24h\n"} +{"Time":"2022-12-07T09:15:31.252469+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h"} +{"Time":"2022-12-07T09:15:31.25247+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s"} +{"Time":"2022-12-07T09:15:31.252471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s","Output":"=== RUN TestDurationDisplay/24h1m1s\n"} +{"Time":"2022-12-07T09:15:31.252473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s","Output":"=== PAUSE TestDurationDisplay/24h1m1s\n"} +{"Time":"2022-12-07T09:15:31.252475+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s"} +{"Time":"2022-12-07T09:15:31.252476+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h"} +{"Time":"2022-12-07T09:15:31.252478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h","Output":"=== RUN TestDurationDisplay/25h\n"} +{"Time":"2022-12-07T09:15:31.252481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h","Output":"=== PAUSE TestDurationDisplay/25h\n"} +{"Time":"2022-12-07T09:15:31.252482+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h"} +{"Time":"2022-12-07T09:15:31.252484+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH"} +{"Time":"2022-12-07T09:15:31.252485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH","Output":"=== CONT TestGitSSH\n"} +{"Time":"2022-12-07T09:15:31.252487+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:31.252488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== RUN TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:31.25249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== PAUSE TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:31.252491+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:31.252492+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:31.252494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== RUN TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:31.252497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== PAUSE TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:31.252498+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:31.2525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink"} +{"Time":"2022-12-07T09:15:31.252501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink","Output":"=== CONT TestBuildWorkspaceLink\n"} +{"Time":"2022-12-07T09:15:31.252503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink","Output":"--- PASS: TestBuildWorkspaceLink (0.00s)\n"} +{"Time":"2022-12-07T09:15:31.252506+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink","Elapsed":0} +{"Time":"2022-12-07T09:15:31.252508+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate"} +{"Time":"2022-12-07T09:15:31.252509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate","Output":"=== CONT TestCreate\n"} +{"Time":"2022-12-07T09:15:31.252511+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:31.252512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== RUN TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:31.252513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== PAUSE TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:31.252515+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:31.252517+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:31.252521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== RUN TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:31.252523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== PAUSE TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:31.252525+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:31.252526+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:31.252528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== RUN TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:31.25253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== PAUSE TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:31.252531+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:31.252534+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:31.252535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== RUN TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:31.252536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== PAUSE TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:31.252538+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:31.25254+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:31.252541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== RUN TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:31.252543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== PAUSE TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:31.252544+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:31.252546+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:31.252547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== RUN TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:31.252548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== PAUSE TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:31.25255+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:31.252552+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:31.252554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== RUN TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:31.252557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== PAUSE TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:31.252559+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:31.252562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete"} +{"Time":"2022-12-07T09:15:31.252564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete","Output":"=== CONT TestDelete\n"} +{"Time":"2022-12-07T09:15:31.252566+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:31.252568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== RUN TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:31.252569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== PAUSE TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:31.252571+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:31.252572+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:31.252573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== RUN TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:31.252576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== PAUSE TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:31.252577+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:31.252578+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:31.25258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== RUN TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:31.252582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== PAUSE TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:31.252584+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:31.252585+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier"} +{"Time":"2022-12-07T09:15:31.252586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Output":"=== RUN TestDelete/InvalidWorkspaceIdentifier\n"} +{"Time":"2022-12-07T09:15:31.252588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Output":"=== PAUSE TestDelete/InvalidWorkspaceIdentifier\n"} +{"Time":"2022-12-07T09:15:31.25259+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier"} +{"Time":"2022-12-07T09:15:31.252592+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames"} +{"Time":"2022-12-07T09:15:31.252593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames","Output":"=== CONT TestConfigSSH_Hostnames\n"} +{"Time":"2022-12-07T09:15:31.252596+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:31.252597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== RUN TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:31.252599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== PAUSE TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:31.2526+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:31.252602+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:31.252604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== RUN TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:31.252606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== PAUSE TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:31.252607+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:31.252608+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:31.252609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== RUN TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:31.252612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== PAUSE TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:31.252613+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:31.252614+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:31.252615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== RUN TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:31.252618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== PAUSE TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:31.25262+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:31.253205+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow"} +{"Time":"2022-12-07T09:15:31.253209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow\n"} +{"Time":"2022-12-07T09:15:31.253211+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush"} +{"Time":"2022-12-07T09:15:31.253212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush","Output":"=== CONT TestTemplatePush\n"} +{"Time":"2022-12-07T09:15:31.253214+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:31.253215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== RUN TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:31.253217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== PAUSE TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:31.253219+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:31.254544+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:31.254568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:31.254577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:31.254581+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:31.254585+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:31.254589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:31.254629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:31.254636+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:31.254638+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:31.25464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:31.254642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:31.254643+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:31.254649+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:31.254651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:31.254654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:31.254656+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:31.254659+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:31.25466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:31.254662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:31.254663+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:31.254741+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:31.254749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== RUN TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:31.254792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== PAUSE TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:31.254801+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:31.254803+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:31.254805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== RUN TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:31.254807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== PAUSE TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:31.254808+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:31.254812+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:31.254814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:31.254815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:31.254817+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:31.254818+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:31.25482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:31.254847+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} +{"Time":"2022-12-07T09:15:31.254849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} +{"Time":"2022-12-07T09:15:31.255098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:31.255103+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:31.255104+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:31.255106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:31.255108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:31.255109+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:31.255111+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:31.255112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:31.255115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:31.255116+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:31.255121+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:31.255123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:31.255124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:31.255126+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:31.255133+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:31.255135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:31.255138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:31.25514+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:31.255141+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:31.255142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:31.255144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:31.255145+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:31.255146+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:31.255148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:31.255149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:31.255151+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:31.255152+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.255153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.256053+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.256062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.256065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.255 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"128.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"50cdac7b-f992-4b48-bee5-5cdfe969f377\"}\n"} +{"Time":"2022-12-07T09:15:31.256586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.256 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"61µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"dd36d8fd-5bc7-49e1-a3e8-1e01f5e71963\"}\n"} +{"Time":"2022-12-07T09:15:31.258346+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.258359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.258362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.258 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"90.916µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c2879ced-52b1-4fd3-9f85-447f631e205c\"}\n"} +{"Time":"2022-12-07T09:15:31.258367+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.258368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.25837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.258 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"164µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1712019e-8ec0-4c98-b9d9-7a7e1692ed00\"}\n"} +{"Time":"2022-12-07T09:15:31.25879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.258794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.258796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.258 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"38.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5f3a2139-2f2d-475c-b506-6d8401bf4f8f\"}\n"} +{"Time":"2022-12-07T09:15:31.259544+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.259559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.259562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.046208ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"11af3200-7fd1-402b-8a17-2d0ae63d4df5\"}\n"} +{"Time":"2022-12-07T09:15:31.259567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.259569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.25957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"138.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3217deab-7f45-471f-b9f5-72a8d098bef7\"}\n"} +{"Time":"2022-12-07T09:15:31.259573+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.259574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.259576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b6df3256-ee07-4546-8d59-8c493fe0d609\"}\n"} +{"Time":"2022-12-07T09:15:31.259889+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_server_--help"} +{"Time":"2022-12-07T09:15:31.259896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_server_--help","Output":"=== RUN TestCommandHelp/coder_server_--help\n"} +{"Time":"2022-12-07T09:15:31.26012+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.260125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.260127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"171.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d30d315b-dd95-4a90-a91e-631554e248ef\"}\n"} +{"Time":"2022-12-07T09:15:31.260131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.260133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.260134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"105.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9763ef86-0b85-44cc-94e1-a5a206182785\"}\n"} +{"Time":"2022-12-07T09:15:31.260365+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.260371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.260374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"80.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e896be58-2179-4ee8-a38a-4a28826934fa\"}\n"} +{"Time":"2022-12-07T09:15:31.260479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.260487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.26049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"44.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a7a76780-4365-4fba-b227-18ee67a2d654\"}\n"} +{"Time":"2022-12-07T09:15:31.260624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.260629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.260631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.560167ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"bcf005f6-a11d-442c-89e8-8a34e08a099e\"}\n"} +{"Time":"2022-12-07T09:15:31.260986+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.260992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.260994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6b0ae1b7-9687-42c9-a144-d55f8c7ffa6c\"}\n"} +{"Time":"2022-12-07T09:15:31.260999+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.261001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.261002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"330.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8d988f20-ecbd-4634-8c1f-cb93137eebd4\"}\n"} +{"Time":"2022-12-07T09:15:31.261071+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.261097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.261103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6cbf59ba-4551-4a26-bc14-007fde5c7bbf\"}\n"} +{"Time":"2022-12-07T09:15:31.26115+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusSelf"} +{"Time":"2022-12-07T09:15:31.26116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusSelf","Output":"=== RUN TestUserStatus/StatusSelf\n"} +{"Time":"2022-12-07T09:15:31.261162+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.261163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.261165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"80.541µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9fe0fbf3-20a3-4ae7-9468-cdf9766f4f9b\"}\n"} +{"Time":"2022-12-07T09:15:31.261356+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.261362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.261363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3ea9ada5-b3be-433a-b9a4-0b7aeb6c9238\"}\n"} +{"Time":"2022-12-07T09:15:31.261488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} +{"Time":"2022-12-07T09:15:31.261498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} +{"Time":"2022-12-07T09:15:31.261538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"103.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e68b2e45-2f9e-42e0-9162-0150de4db1ca\"}\n"} +{"Time":"2022-12-07T09:15:31.261543+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.261544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.261546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/organizations/e6a67067-7846-4aac-943f-66f56090e659/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"575.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b43a38f8-3403-4495-9e7f-74fad3187c5e\"}\n"} +{"Time":"2022-12-07T09:15:31.261549+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.26155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.261552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"143.709µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"82c32ef3-1799-41fd-b694-a21c4989094e\"}\n"} +{"Time":"2022-12-07T09:15:31.261674+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.261681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.261685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" schedule_test.go:123: waiting for template version job 83f6409b-411a-440c-a46d-68bf890f1b28\n"} +{"Time":"2022-12-07T09:15:31.261811+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} +{"Time":"2022-12-07T09:15:31.261817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} +{"Time":"2022-12-07T09:15:31.261819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"128.041µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cd3a74c7-27cc-4f4d-bcda-33541cbd4d2e\"}\n"} +{"Time":"2022-12-07T09:15:31.261931+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.261952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.261954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/organizations/2d6404d9-6b63-464a-9089-9fa94543235d/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"539.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"49599dc9-f1f4-4b4c-93d4-812aee7ee37b\"}\n"} +{"Time":"2022-12-07T09:15:31.262121+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.262124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.262126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/organizations/776fb9a2-c282-474f-860a-f5963a2514bc/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"537.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8f7fc750-6298-409b-bce8-646c54ce62a0\"}\n"} +{"Time":"2022-12-07T09:15:31.262133+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.262135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.262138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" schedule_test.go:180: waiting for template version job 2a977a53-d7f3-464f-8cc7-d92b1b41572f\n"} +{"Time":"2022-12-07T09:15:31.26214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.262141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.262143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/organizations/af53e927-c7ea-4846-ae8d-989e96093375/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"779.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"27098dd3-d91d-44f6-84b2-ea33f14fe8a7\"}\n"} +{"Time":"2022-12-07T09:15:31.262145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.262146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.262147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" rename_test.go:22: waiting for template version job 323f6f0b-7169-45e9-91ba-55cf05a9783e\n"} +{"Time":"2022-12-07T09:15:31.262223+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.262226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.262228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" speedtest_test.go:23: waiting for template version job 3950bdc7-f4a2-4cf3-aa97-45144a791868\n"} +{"Time":"2022-12-07T09:15:31.262343+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.26235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.262353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"640.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"55e68978-1a78-4988-84d3-8771cbca0e73\"}\n"} +{"Time":"2022-12-07T09:15:31.263011+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.263015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.263019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"0f6702e9-8328-40d2-94d6-e62a05b626df\"}\n"} +{"Time":"2022-12-07T09:15:31.263024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp","Output":"--- PASS: TestCommandHelp (0.01s)\n"} +{"Time":"2022-12-07T09:15:31.263027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_--help","Output":" --- PASS: TestCommandHelp/coder_--help (0.01s)\n"} +{"Time":"2022-12-07T09:15:31.26303+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_--help","Elapsed":0.01} +{"Time":"2022-12-07T09:15:31.263033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_server_--help","Output":" --- PASS: TestCommandHelp/coder_server_--help (0.00s)\n"} +{"Time":"2022-12-07T09:15:31.263035+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_server_--help","Elapsed":0} +{"Time":"2022-12-07T09:15:31.263037+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp","Elapsed":0.01} +{"Time":"2022-12-07T09:15:31.263039+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent"} +{"Time":"2022-12-07T09:15:31.26304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent","Output":"=== CONT TestWorkspaceAgent\n"} +{"Time":"2022-12-07T09:15:31.263043+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:31.263045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== RUN TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:31.263048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== PAUSE TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:31.26305+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:31.263052+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:31.263055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== RUN TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:31.263056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== PAUSE TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:31.263058+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:31.26306+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:31.263062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== RUN TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:31.263063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== PAUSE TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:31.263065+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:31.263068+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRelative"} +{"Time":"2022-12-07T09:15:31.263069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRelative","Output":"=== CONT TestRelative\n"} +{"Time":"2022-12-07T09:15:31.263071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRelative","Output":"--- PASS: TestRelative (0.00s)\n"} +{"Time":"2022-12-07T09:15:31.263073+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRelative","Elapsed":0} +{"Time":"2022-12-07T09:15:31.263074+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList"} +{"Time":"2022-12-07T09:15:31.263076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList","Output":"=== CONT TestTemplateList\n"} +{"Time":"2022-12-07T09:15:31.263078+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:31.263079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== RUN TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:31.263081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== PAUSE TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:31.263083+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:31.263085+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates"} +{"Time":"2022-12-07T09:15:31.263086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":"=== RUN TestTemplateList/NoTemplates\n"} +{"Time":"2022-12-07T09:15:31.263087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":"=== PAUSE TestTemplateList/NoTemplates\n"} +{"Time":"2022-12-07T09:15:31.26309+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates"} +{"Time":"2022-12-07T09:15:31.263091+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull"} +{"Time":"2022-12-07T09:15:31.263092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull","Output":"=== CONT TestTemplatePull\n"} +{"Time":"2022-12-07T09:15:31.263093+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName"} +{"Time":"2022-12-07T09:15:31.263095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName","Output":"=== RUN TestTemplatePull/NoName\n"} +{"Time":"2022-12-07T09:15:31.263097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.263098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.2631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.263 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/organizations/77d6674e-0f03-4ecc-bd20-fdc9a2980a76/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"525.791µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"caf06f80-fafb-4202-a2bf-570427006ec3\"}\n"} +{"Time":"2022-12-07T09:15:31.263103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName","Output":"=== PAUSE TestTemplatePull/NoName\n"} +{"Time":"2022-12-07T09:15:31.263104+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName"} +{"Time":"2022-12-07T09:15:31.263106+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:31.263107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== RUN TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:31.263115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== PAUSE TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:31.263116+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:31.263118+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:31.26312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== RUN TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:31.263121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== PAUSE TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:31.263123+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:31.263124+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit"} +{"Time":"2022-12-07T09:15:31.263125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit","Output":"=== CONT TestTemplateInit\n"} +{"Time":"2022-12-07T09:15:31.263127+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract"} +{"Time":"2022-12-07T09:15:31.263129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":"=== RUN TestTemplateInit/Extract\n"} +{"Time":"2022-12-07T09:15:31.263131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":"=== PAUSE TestTemplateInit/Extract\n"} +{"Time":"2022-12-07T09:15:31.263132+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract"} +{"Time":"2022-12-07T09:15:31.263133+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile"} +{"Time":"2022-12-07T09:15:31.263135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile","Output":"=== CONT TestCreateParameterMapFromFile\n"} +{"Time":"2022-12-07T09:15:31.263137+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile"} +{"Time":"2022-12-07T09:15:31.263139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile","Output":"=== RUN TestCreateParameterMapFromFile/CreateParameterMapFromFile\n"} +{"Time":"2022-12-07T09:15:31.263141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile","Output":"=== PAUSE TestCreateParameterMapFromFile/CreateParameterMapFromFile\n"} +{"Time":"2022-12-07T09:15:31.263143+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile"} +{"Time":"2022-12-07T09:15:31.263144+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename"} +{"Time":"2022-12-07T09:15:31.263146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename","Output":"=== RUN TestCreateParameterMapFromFile/WithEmptyFilename\n"} +{"Time":"2022-12-07T09:15:31.263147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename","Output":"=== PAUSE TestCreateParameterMapFromFile/WithEmptyFilename\n"} +{"Time":"2022-12-07T09:15:31.263149+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename"} +{"Time":"2022-12-07T09:15:31.26315+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename"} +{"Time":"2022-12-07T09:15:31.263152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename","Output":"=== RUN TestCreateParameterMapFromFile/WithInvalidFilename\n"} +{"Time":"2022-12-07T09:15:31.263153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename","Output":"=== PAUSE TestCreateParameterMapFromFile/WithInvalidFilename\n"} +{"Time":"2022-12-07T09:15:31.263155+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename"} +{"Time":"2022-12-07T09:15:31.263156+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML"} +{"Time":"2022-12-07T09:15:31.263158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML","Output":"=== RUN TestCreateParameterMapFromFile/WithInvalidYAML\n"} +{"Time":"2022-12-07T09:15:31.263162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML","Output":"=== PAUSE TestCreateParameterMapFromFile/WithInvalidYAML\n"} +{"Time":"2022-12-07T09:15:31.263163+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML"} +{"Time":"2022-12-07T09:15:31.263165+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples"} +{"Time":"2022-12-07T09:15:31.263167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples","Output":"=== CONT Test_formatExamples\n"} +{"Time":"2022-12-07T09:15:31.263168+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples"} +{"Time":"2022-12-07T09:15:31.263169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples","Output":"=== RUN Test_formatExamples/No_examples\n"} +{"Time":"2022-12-07T09:15:31.263171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples","Output":"=== PAUSE Test_formatExamples/No_examples\n"} +{"Time":"2022-12-07T09:15:31.263176+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples"} +{"Time":"2022-12-07T09:15:31.263178+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples"} +{"Time":"2022-12-07T09:15:31.26318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples","Output":"=== RUN Test_formatExamples/Output_examples\n"} +{"Time":"2022-12-07T09:15:31.263181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples","Output":"=== PAUSE Test_formatExamples/Output_examples\n"} +{"Time":"2022-12-07T09:15:31.263182+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples"} +{"Time":"2022-12-07T09:15:31.263184+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands"} +{"Time":"2022-12-07T09:15:31.263186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands","Output":"=== RUN Test_formatExamples/No_description_outputs_commands\n"} +{"Time":"2022-12-07T09:15:31.263189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands","Output":"=== PAUSE Test_formatExamples/No_description_outputs_commands\n"} +{"Time":"2022-12-07T09:15:31.26319+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands"} +{"Time":"2022-12-07T09:15:31.263191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards"} +{"Time":"2022-12-07T09:15:31.263193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards","Output":"=== CONT Test_parsePortForwards\n"} +{"Time":"2022-12-07T09:15:31.263195+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges"} +{"Time":"2022-12-07T09:15:31.263196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges","Output":"=== RUN Test_parsePortForwards/TCP_mixed_ports_and_ranges\n"} +{"Time":"2022-12-07T09:15:31.263198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges","Output":"=== PAUSE Test_parsePortForwards/TCP_mixed_ports_and_ranges\n"} +{"Time":"2022-12-07T09:15:31.263199+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges"} +{"Time":"2022-12-07T09:15:31.263201+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range"} +{"Time":"2022-12-07T09:15:31.263202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range","Output":"=== RUN Test_parsePortForwards/UDP_with_port_range\n"} +{"Time":"2022-12-07T09:15:31.263204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range","Output":"=== PAUSE Test_parsePortForwards/UDP_with_port_range\n"} +{"Time":"2022-12-07T09:15:31.263206+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range"} +{"Time":"2022-12-07T09:15:31.263209+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.26321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.263215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" configssh_test.go:103: waiting for template version job 1715306d-575a-4cfd-b024-ba0e9cc794c1\n"} +{"Time":"2022-12-07T09:15:31.263216+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range"} +{"Time":"2022-12-07T09:15:31.263218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range","Output":"=== RUN Test_parsePortForwards/Bad_port_range\n"} +{"Time":"2022-12-07T09:15:31.263227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range","Output":"=== PAUSE Test_parsePortForwards/Bad_port_range\n"} +{"Time":"2022-12-07T09:15:31.263233+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range"} +{"Time":"2022-12-07T09:15:31.263235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.263236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.263238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.263 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ef18c1ee-06ed-4f22-9381-c4a2adfb76b7\"}\n"} +{"Time":"2022-12-07T09:15:31.263241+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range"} +{"Time":"2022-12-07T09:15:31.263242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range","Output":"=== RUN Test_parsePortForwards/Bad_dest_port_range\n"} +{"Time":"2022-12-07T09:15:31.263244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range","Output":"=== PAUSE Test_parsePortForwards/Bad_dest_port_range\n"} +{"Time":"2022-12-07T09:15:31.263245+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range"} +{"Time":"2022-12-07T09:15:31.263247+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit"} +{"Time":"2022-12-07T09:15:31.263248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit","Output":"=== CONT TestTemplateEdit\n"} +{"Time":"2022-12-07T09:15:31.26325+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:31.263251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== RUN TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:31.263253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== PAUSE TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:31.263254+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:31.263258+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:31.263259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== RUN TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:31.263261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== PAUSE TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:31.263262+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:31.263264+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:31.263267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== RUN TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:31.263268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== PAUSE TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:31.26327+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:31.263271+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:31.263272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== RUN TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:31.263275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== PAUSE TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:31.263277+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:31.263278+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:31.26328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== RUN TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:31.263282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== PAUSE TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:31.263285+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:31.263287+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions"} +{"Time":"2022-12-07T09:15:31.263289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions","Output":"=== CONT TestTemplateVersions\n"} +{"Time":"2022-12-07T09:15:31.26329+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:31.263292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== RUN TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:31.263293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== PAUSE TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:31.263295+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:31.263296+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated"} +{"Time":"2022-12-07T09:15:31.263297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated","Output":"=== CONT TestVerifyWorkspaceOutdated\n"} +{"Time":"2022-12-07T09:15:31.263298+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date"} +{"Time":"2022-12-07T09:15:31.263302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date","Output":"=== RUN TestVerifyWorkspaceOutdated/Up-to-date\n"} +{"Time":"2022-12-07T09:15:31.263303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date","Output":"=== PAUSE TestVerifyWorkspaceOutdated/Up-to-date\n"} +{"Time":"2022-12-07T09:15:31.263305+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date"} +{"Time":"2022-12-07T09:15:31.263306+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated"} +{"Time":"2022-12-07T09:15:31.263308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated","Output":"=== RUN TestVerifyWorkspaceOutdated/Outdated\n"} +{"Time":"2022-12-07T09:15:31.263309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated","Output":"=== PAUSE TestVerifyWorkspaceOutdated/Outdated\n"} +{"Time":"2022-12-07T09:15:31.263311+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated"} +{"Time":"2022-12-07T09:15:31.263312+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.263333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.263733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.263738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.263741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.263 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"547037d5-2532-4bdd-bd19-900dacebb7d4\"}\n"} +{"Time":"2022-12-07T09:15:31.263749+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} +{"Time":"2022-12-07T09:15:31.263751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} +{"Time":"2022-12-07T09:15:31.263753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.263 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.75µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"9a3dc1f1-a1af-4251-984f-d517a103f1ac\"}\n"} +{"Time":"2022-12-07T09:15:31.263913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.263 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eb6233a2-9503-4021-9a88-34accb2416c4\"}\n"} +{"Time":"2022-12-07T09:15:31.264273+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.264281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.264283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.264 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/92be3fa1-f7d8-4c79-a416-b55f280486cb/status/suspend\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"278.416µs\", \"status_code\": 400, \"latency_ms\": 0, \"request_id\": \"d2432c7f-3708-47c6-ac1b-093652a93d02\"}\n"} +{"Time":"2022-12-07T09:15:31.264486+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} +{"Time":"2022-12-07T09:15:31.264491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} +{"Time":"2022-12-07T09:15:31.264493+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.264 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/users/me/keys/tokens\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bc8849bb-c08f-41ce-a713-6f4372904ef6\"}\n"} +{"Time":"2022-12-07T09:15:31.264762+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusOther"} +{"Time":"2022-12-07T09:15:31.264765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusOther","Output":"=== RUN TestUserStatus/StatusOther\n"} +{"Time":"2022-12-07T09:15:31.267184+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.267196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.267199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"89.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bbcac795-e8ad-47e5-9b57-a6b06400bb26\"}\n"} +{"Time":"2022-12-07T09:15:31.267388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8a7309b6-627e-4557-9fc7-a367858e87b3\"}\n"} +{"Time":"2022-12-07T09:15:31.267602+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} +{"Time":"2022-12-07T09:15:31.267611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} +{"Time":"2022-12-07T09:15:31.267613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.25µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"19380c9f-8691-4576-8686-a65180f71aad\"}\n"} +{"Time":"2022-12-07T09:15:31.267757+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.267764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.267766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.083µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"27eb5a94-d0ec-4b9b-96ef-36a430e11f32\"}\n"} +{"Time":"2022-12-07T09:15:31.267769+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} +{"Time":"2022-12-07T09:15:31.267771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} +{"Time":"2022-12-07T09:15:31.267773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7d28f6a7-68a6-4852-a594-e9315324e22b\"}\n"} +{"Time":"2022-12-07T09:15:31.267924+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.267928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.26793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5c442b4b-5e74-47f8-a95b-5b3310a98ed1\"}\n"} +{"Time":"2022-12-07T09:15:31.267973+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.267977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.267984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"388.541µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0e370e55-61b6-4a72-80c6-76c0f1063c6e\"}\n"} +{"Time":"2022-12-07T09:15:31.268281+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} +{"Time":"2022-12-07T09:15:31.268285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} +{"Time":"2022-12-07T09:15:31.268286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.268 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/users/me/keys/tokens\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e3bd369b-805d-4865-8ff7-e0eae5a87e87\"}\n"} +{"Time":"2022-12-07T09:15:31.26844+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.268443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.268444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.268 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/compassionate-shtern9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f6b4a211-79d9-46fa-93c6-93426330d9d1\"}\n"} +{"Time":"2022-12-07T09:15:31.268651+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.268654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.268657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.268 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/organizations/4b03f6f1-82c5-4c05-a33b-0522ccf384cc/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"470.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ebdb0880-fe75-44c2-b6ed-f74783bea7af\"}\n"} +{"Time":"2022-12-07T09:15:31.268739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" schedule_test.go:34: waiting for template version job c8f60357-5e21-4623-a231-7d6aa8217d8e\n"} +{"Time":"2022-12-07T09:15:31.268952+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.26896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.268962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.268 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/f03b97db-55fc-4168-bbd9-bcd444eb7616/status/suspend\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"235.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1a2ff61e-fcaf-49d5-bd11-bdc8fc8c4bb9\"}\n"} +{"Time":"2022-12-07T09:15:31.269332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.269 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/compassionate-shtern9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"245.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"54292fa5-3041-40a7-8b77-bfb1747c8172\"}\n"} +{"Time":"2022-12-07T09:15:31.269997+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} +{"Time":"2022-12-07T09:15:31.270004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} +{"Time":"2022-12-07T09:15:31.270006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.269 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"431beff6-fab9-491b-b629-04ab9220d435\"}\n"} +{"Time":"2022-12-07T09:15:31.270151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"acf01c30-f644-4f8c-b3c2-facb21bcc063\"}\n"} +{"Time":"2022-12-07T09:15:31.270552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/users/me/keys/tokens\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90809586-8ec5-4d3d-84a1-c764364443fb\"}\n"} +{"Time":"2022-12-07T09:15:31.270918+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.270923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.270924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.25µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"c630621c-5ff8-4313-a197-1fc63c84ab27\"}\n"} +{"Time":"2022-12-07T09:15:31.27108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.271 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"17968765-fcb5-4a70-aae3-73355bbdc5f4\"}\n"} +{"Time":"2022-12-07T09:15:31.271434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.271 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/f03b97db-55fc-4168-bbd9-bcd444eb7616\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"242.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a5c2a90c-85de-4c7d-8e28-58de901c7c55\"}\n"} +{"Time":"2022-12-07T09:15:31.27187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.271 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/f03b97db-55fc-4168-bbd9-bcd444eb7616/status/activate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"230.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b88c02c0-6cfb-4986-b13c-d1e6001bfb2d\"}\n"} +{"Time":"2022-12-07T09:15:31.272132+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} +{"Time":"2022-12-07T09:15:31.272136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} +{"Time":"2022-12-07T09:15:31.272138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.272 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"10.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"78239511-3fd6-4680-a0d3-5148671de0e6\"}\n"} +{"Time":"2022-12-07T09:15:31.272225+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.272229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.272231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.272 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/f03b97db-55fc-4168-bbd9-bcd444eb7616\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"216.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5dbc5382-d248-4014-b4b1-ac542742e665\"}\n"} +{"Time":"2022-12-07T09:15:31.272259+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} +{"Time":"2022-12-07T09:15:31.272263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} +{"Time":"2022-12-07T09:15:31.272268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.272 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"9.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"a23398ea-9538-4f27-96ac-ab080c098113\"}\n"} +{"Time":"2022-12-07T09:15:31.272641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"2022-12-07 08:15:31.272 [INFO]\t(stdlib)\t\u003cnet/http/server.go:3230\u003e\t(*Server).logf\t2022/12/07 09:15:31 http: superfluous response.WriteHeader call from github.com/coder/coder/coderd/tracing.(*StatusWriter).WriteHeader (status_writer.go:38)\n"} +{"Time":"2022-12-07T09:15:31.272684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.272 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/users/me/keys/qI9ePcMNro\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"269.125µs\", \"status_code\": 204, \"latency_ms\": 0, \"request_id\": \"4d53d8dc-f6cc-4402-8aa0-f6b976a22c56\"}\n"} +{"Time":"2022-12-07T09:15:31.27338+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} +{"Time":"2022-12-07T09:15:31.273386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} +{"Time":"2022-12-07T09:15:31.273388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:31.273391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"--- PASS: TestUserStatus (0.02s)\n"} +{"Time":"2022-12-07T09:15:31.273393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusSelf","Output":" --- PASS: TestUserStatus/StatusSelf (0.00s)\n"} +{"Time":"2022-12-07T09:15:31.273395+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusSelf","Elapsed":0} +{"Time":"2022-12-07T09:15:31.273397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusOther","Output":" --- PASS: TestUserStatus/StatusOther (0.01s)\n"} +{"Time":"2022-12-07T09:15:31.2734+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusOther","Elapsed":0.01} +{"Time":"2022-12-07T09:15:31.273402+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Elapsed":0.02} +{"Time":"2022-12-07T09:15:31.273404+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.273405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.274006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} +{"Time":"2022-12-07T09:15:31.274014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} +{"Time":"2022-12-07T09:15:31.274016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:31.274033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"--- PASS: TestTokens (0.02s)\n"} +{"Time":"2022-12-07T09:15:31.274037+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTokens","Elapsed":0.02} +{"Time":"2022-12-07T09:15:31.27404+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.274041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.276115+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.276125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.276127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.276 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"116.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"dab7deb7-c2c5-4f1b-8cfa-ffaef8f46b9d\"}\n"} +{"Time":"2022-12-07T09:15:31.276416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.276 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"42.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"82e033b5-c784-44c8-909d-0d8cbdbf3cf4\"}\n"} +{"Time":"2022-12-07T09:15:31.277027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.276 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"410.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"164d58d3-a425-4796-bb09-1ed4b3b6179d\"}\n"} +{"Time":"2022-12-07T09:15:31.277035+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.277037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.277039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.277 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"108.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8e1a1ff3-68aa-4080-99d1-51f8b432d969\"}\n"} +{"Time":"2022-12-07T09:15:31.277202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.277 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"27.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0dbaa747-140c-4c34-b760-fa9e70b2fc14\"}\n"} +{"Time":"2022-12-07T09:15:31.277655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.27766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.277661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.277 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/organizations/a402f4e9-4ace-49ca-a1dc-a528942489c4/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"467.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"634f6f16-9a61-4119-8f71-1350ea0fcc45\"}\n"} +{"Time":"2022-12-07T09:15:31.277682+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.277689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.277692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.277 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"342.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6a0d0d6e-747a-4bab-b2a9-a00878a7e73d\"}\n"} +{"Time":"2022-12-07T09:15:31.277737+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.277742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.277743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" schedule_test.go:104: waiting for template version job 075850e3-9dd1-4c18-a49a-984c7fd9d6c1\n"} +{"Time":"2022-12-07T09:15:31.278252+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.278256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.278267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.278 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/organizations/7a194acc-1f18-4514-8aa5-edb5f77d15de/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"447.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7f94af10-77fb-4804-890f-93110d15d82e\"}\n"} +{"Time":"2022-12-07T09:15:31.278324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" schedule_test.go:71: waiting for template version job 995ccff3-c44c-45d2-868d-658e4e245702\n"} +{"Time":"2022-12-07T09:15:31.28938+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.289386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.289388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.289 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9c58519b-95b4-41c6-be2c-b002f3f0bbc9\"}\n"} +{"Time":"2022-12-07T09:15:31.289398+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.2894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.289401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.289 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"363.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"30662def-f111-4b24-880c-c672efb74a33\"}\n"} +{"Time":"2022-12-07T09:15:31.289465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.289476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.289479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.289 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"380.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3fdb04d5-75fa-4a1d-b722-cd72da6c149d\"}\n"} +{"Time":"2022-12-07T09:15:31.289494+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.289499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.289502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.289 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"405.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"37292d10-e9a9-4e53-93b4-95c19feb3837\"}\n"} +{"Time":"2022-12-07T09:15:31.289664+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.289669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.289671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.289 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"360.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0ddf0800-2ce5-4f50-9dd9-06a55b22f3b6\"}\n"} +{"Time":"2022-12-07T09:15:31.295282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.295287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.295288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.295 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"caa38326-85bd-4007-b464-e53d7ff8f40b\"}\n"} +{"Time":"2022-12-07T09:15:31.304037+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.304045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.304047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.303 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"243.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33998e73-0b4f-4581-8060-94300ad1b023\"}\n"} +{"Time":"2022-12-07T09:15:31.304055+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.304056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.304058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.304 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"236.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"abd3b80e-c933-4823-96a5-f5ede9ca3240\"}\n"} +{"Time":"2022-12-07T09:15:31.31307+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.313078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.31308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5813be16-d44b-4709-90ae-65bf9fd2d9c2\"}\n"} +{"Time":"2022-12-07T09:15:31.313085+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.313086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.313088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"256.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b06c234b-d5db-4661-8c60-d4ba36e80863\"}\n"} +{"Time":"2022-12-07T09:15:31.313105+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.313106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.313108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"89252ca4-29c1-4c2f-84bf-6a9f5e500141\"}\n"} +{"Time":"2022-12-07T09:15:31.31319+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.313194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.313196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"283.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ddf5ca54-e326-48bf-a47e-02502746159b\"}\n"} +{"Time":"2022-12-07T09:15:31.313536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.31354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.313541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"251.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"636798ef-ec3b-4397-8d08-afa6980c507e\"}\n"} +{"Time":"2022-12-07T09:15:31.319802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.319805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.319807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.319 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"23ea0748-fac5-4095-90af-08c9f5d64e85\"}\n"} +{"Time":"2022-12-07T09:15:31.329149+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.329154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.329157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.329 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"266.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"74fea9e3-48b3-472c-bcac-23181765d9ae\"}\n"} +{"Time":"2022-12-07T09:15:31.329179+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.329184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.329186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.329 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e4096258-eb34-4072-9a35-8e51b6e7c5bf\"}\n"} +{"Time":"2022-12-07T09:15:31.338123+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.33813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.338133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3e09572f-4b92-493a-a914-71ca01f3cdeb\"}\n"} +{"Time":"2022-12-07T09:15:31.338137+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.338139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.338146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"115d2d92-e104-4c68-bd3e-73abdb0f1d71\"}\n"} +{"Time":"2022-12-07T09:15:31.338163+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.338165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.338167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"308.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a44eae5-aa86-424e-9a28-496f99b49ac2\"}\n"} +{"Time":"2022-12-07T09:15:31.33817+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.338171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.338173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ea9ca8ae-0e0f-49f4-8242-73cba6bf15a4\"}\n"} +{"Time":"2022-12-07T09:15:31.338595+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.338603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.338606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e92b4c73-e400-4619-b462-b4d114f25cd3\"}\n"} +{"Time":"2022-12-07T09:15:31.344948+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.344962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.344965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.344 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"300.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fba14c32-f4f9-485d-876d-dba8abf44fcc\"}\n"} +{"Time":"2022-12-07T09:15:31.353794+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.353806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.353809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.353 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"417.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1323a600-3f60-47fb-ac05-005f65b4d12c\"}\n"} +{"Time":"2022-12-07T09:15:31.353815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.353817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.35382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.353 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4aed768f-6a89-44a6-921b-608a9630d5e2\"}\n"} +{"Time":"2022-12-07T09:15:31.356715+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.356726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.356729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.356 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:31.356732+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.356734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.356736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.356 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:31.357906+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.357911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.357913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.357 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:31.35894+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.358948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.358951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.358 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:31.360791+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.360806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.36081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.360 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:31.362253+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.362258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.362261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"329.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"78dfb1a0-a272-4f16-a5f8-58994a98c2e6\"}\n"} +{"Time":"2022-12-07T09:15:31.362688+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.362699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.362702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1a6540d5-5f59-41ed-a213-83574b900c2d\"}\n"} +{"Time":"2022-12-07T09:15:31.362754+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.362757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.362759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"95357c50-0f65-4125-bf44-05326f63ce91\"}\n"} +{"Time":"2022-12-07T09:15:31.362766+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.362767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.362769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"416.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62759d97-dabf-4f3a-8869-52982fa0b27e\"}\n"} +{"Time":"2022-12-07T09:15:31.363739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.363744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.363746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.363 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2e54e08d-b13d-48f2-9fd9-b0dab5ac51d3\"}\n"} +{"Time":"2022-12-07T09:15:31.366721+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.366727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.36673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.366 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:31.369542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.369 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"354.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5557ef5d-7176-4590-b943-cf625ab6a01f\"}\n"} +{"Time":"2022-12-07T09:15:31.37583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.375837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.375839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.375 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:31.376611+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.376634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.376638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.376 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:31.378501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.378509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.378513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0e9a951a-15c8-42e9-a090-07a6f535b426\"}\n"} +{"Time":"2022-12-07T09:15:31.378903+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.37891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.378913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cf09a126-af13-45b1-8c53-7aed6e6ac5c8\"}\n"} +{"Time":"2022-12-07T09:15:31.388583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.388596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.3886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.388 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"703.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7d3d0d84-1fe0-43d1-9b3c-594efce95d46\"}\n"} +{"Time":"2022-12-07T09:15:31.388679+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.388683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.388685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.388 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"778.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b163acad-cb3f-47c4-8276-103ac08ba669\"}\n"} +{"Time":"2022-12-07T09:15:31.388691+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.388693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.388695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.388 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"773.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"10db3e33-3885-41e5-8d9d-cc8d3f2c625a\"}\n"} +{"Time":"2022-12-07T09:15:31.3889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.388904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.388907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.388 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"981.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b9da8c76-6e25-424e-9282-3899326b5f38\"}\n"} +{"Time":"2022-12-07T09:15:31.389583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.389592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.389596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.389 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"872.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d483b92d-8aa4-4e96-8ee3-161ad4f61b68\"}\n"} +{"Time":"2022-12-07T09:15:31.394833+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.394839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.394843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.394 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"469.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16041eac-a2b1-42be-8d13-9aa58292f14a\"}\n"} +{"Time":"2022-12-07T09:15:31.404495+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.404505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.404508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.404 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"512.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c2c2b6f6-45da-45d9-b5ee-9f26f57ef4af\"}\n"} +{"Time":"2022-12-07T09:15:31.404518+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.404521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.404523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.404 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"554.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3534f62-2e79-43da-8c1c-6cce7f544bca\"}\n"} +{"Time":"2022-12-07T09:15:31.407107+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.407115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.407119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.407163+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.407173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.407177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.407281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.407292+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.407296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.407299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.407351+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.407358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.407361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:31.407369+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.407372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.407376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:31.407421+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.407427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.40743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"size_bytes\": 2, \"path\": \"/tmp/TestRename1486770065/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.407435+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.407437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.407439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"size_bytes\": 2, \"path\": \"/tmp/TestSpeedtest1248491661/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.407447+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.40745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.407452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"size_bytes\": 2, \"path\": \"/tmp/TestRename1486770065/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.407457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.40746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.407462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"size_bytes\": 112, \"path\": \"/tmp/TestSpeedtest1248491661/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.407468+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.407471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.407475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"size_bytes\": 2, \"path\": \"/tmp/TestRename1486770065/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.407492+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.407496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.407499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"size_bytes\": 2, \"path\": \"/tmp/TestSpeedtest1248491661/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.407505+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.407508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.407511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.407516+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.407528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.407531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.407639+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.407645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.407648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:31.407654+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.407656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.407659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:31.40813+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.408135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.408139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.40821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.40827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:31.408296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStart4175551108/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.408326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStart4175551108/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.408354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStart4175551108/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.408391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.408476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:31.409145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.409152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.409156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.409252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.409264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:31.409311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStop3343082525/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.409329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStop3343082525/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.409368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStop3343082525/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.409384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.409479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:31.411097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.411102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.411106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.411173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.411205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:31.41124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH2701562645/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.411285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"size_bytes\": 114, \"path\": \"/tmp/TestConfigSSH2701562645/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.411323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"size_bytes\": 76, \"path\": \"/tmp/TestConfigSSH2701562645/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.411348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.41144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:31.412367+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.412374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.412377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"425.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a80acbc9-d6cf-4ca3-8d1e-ba381e9aa9dd\"}\n"} +{"Time":"2022-12-07T09:15:31.412865+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.412874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.412878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"582.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"130a334a-5c45-4e55-bf48-928d8693e461\"}\n"} +{"Time":"2022-12-07T09:15:31.412884+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.412887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.412897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"522.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fa708503-9880-4d86-b28a-479142bba70a\"}\n"} +{"Time":"2022-12-07T09:15:31.413038+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.413044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.413055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"574.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"763e8936-1bd5-4388-803a-a4a4f9fc94e2\"}\n"} +{"Time":"2022-12-07T09:15:31.413713+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.41372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.413723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.413 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0cad6682-aa45-433b-b058-ee8c6c91e49c\"}\n"} +{"Time":"2022-12-07T09:15:31.417201+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.417207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.417209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.41729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.417352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:31.417386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowEnabled3677771965/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.417418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowEnabled3677771965/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.417443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowEnabled3677771965/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.417464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.417559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:31.419606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.419 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"478.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d3a9c4f6-07ce-427b-8577-ea5500c1155c\"}\n"} +{"Time":"2022-12-07T09:15:31.42673+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.426744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.426748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.426 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.426755+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.426757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.42676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.426 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.4268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.426804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.42681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.426 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.426883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.426 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:31.426891+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.426895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.426899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.426 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.426904+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.426906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.426909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.426 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowNotFound2474356092/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.42694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.426 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowNotFound2474356092/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.426995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.426 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowNotFound2474356092/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.427017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.426 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.427032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.427035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.42704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.426 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:31.427087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowManual3642865273/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.427119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowManual3642865273/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.427168+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.427172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.427177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.427 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:31.427181+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.427184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.427189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowManual3642865273/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.427195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.427309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.427 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:31.42854+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.428548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.428551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.428 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"462.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c3d8b93-a24b-440e-ad2a-3157577747c2\"}\n"} +{"Time":"2022-12-07T09:15:31.428981+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.428989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.428992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.428 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"462.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20911351-350d-4b5e-a421-03c3b50286d4\"}\n"} +{"Time":"2022-12-07T09:15:31.438287+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.438298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.438303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9e28f273-2288-4129-b7c1-35faa01c7ee8\"}\n"} +{"Time":"2022-12-07T09:15:31.43839+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.438396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.4384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"41f4ae16-51c1-413d-9f63-b54a0b884fda\"}\n"} +{"Time":"2022-12-07T09:15:31.438445+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.43845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.438453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"509.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39bf02ec-bc1e-4d6f-a7dd-28e910f4e208\"}\n"} +{"Time":"2022-12-07T09:15:31.438509+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.438516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.438519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"541.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"862220e0-3a64-4e88-95b0-c20ff6f5e793\"}\n"} +{"Time":"2022-12-07T09:15:31.438903+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.43891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.438913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"489.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"21377a31-802b-49fe-b68f-3dda38044d2f\"}\n"} +{"Time":"2022-12-07T09:15:31.44509+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.4451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.445104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.445 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"532.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a20827b2-c85e-4ae0-b289-0343c340e087\"}\n"} +{"Time":"2022-12-07T09:15:31.453761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.453771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.453775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.453 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"12.333µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:31.453781+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.453785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.453789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.453 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"4.666µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:31.453847+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.453861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.453867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.453 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.792µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:31.453888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.453891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.453895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.453 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"21.375µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:31.454507+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.454517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.454521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"539.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5159c1af-ebdf-437a-8447-5fd0523bdf14\"}\n"} +{"Time":"2022-12-07T09:15:31.454576+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.454583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.454607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"628.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a5ec7789-b544-4cf1-a888-e5dc97b28b76\"}\n"} +{"Time":"2022-12-07T09:15:31.456862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.456872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.456876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.456 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"19.042µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:31.457782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.457791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.457795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.457 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.457837+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.457844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.457848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.457 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.458012+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.458021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.458025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.457 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.458063+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.458071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.458075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.457 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.45862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.458627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.458631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.458 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.458773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.458 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.459654+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.45966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.459678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.459 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.45988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.459 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.461689+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.461698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.46171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.461 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.462951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.462 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"resource_count\": 1, \"resources\": [{\"name\": \"example\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"6ced57b7-a44f-42f1-ada3-7ef385529bc6\", \"name\": \"example\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.464086+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.464134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.464142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.463 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.834875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f070e718-14c8-49f2-92b8-5c6fa931be38\"}\n"} +{"Time":"2022-12-07T09:15:31.464764+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.464776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.464802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.464 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"161.667µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:31.46599+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.466007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.466012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.465 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.13775ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"bd50f420-d357-4fc7-b631-63166ab44e82\"}\n"} +{"Time":"2022-12-07T09:15:31.466019+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.466022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.466028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.465 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.463334ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"f295048b-2407-4dc5-a792-20370fa2068c\"}\n"} +{"Time":"2022-12-07T09:15:31.466285+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.466292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.466296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.388625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"08e16771-67df-464b-9ddd-28e27c25ad22\"}\n"} +{"Time":"2022-12-07T09:15:31.466305+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.466309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.466313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.86175ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9aeae095-240e-46fe-9e6b-b2118cec4efe\"}\n"} +{"Time":"2022-12-07T09:15:31.46776+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.467772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.467778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.467 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.467971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.467 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.469764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.469 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"652.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"26fc25b0-877d-4ba3-b37b-1293073b699e\"}\n"} +{"Time":"2022-12-07T09:15:31.474826+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.474836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.474841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.474 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"11.542µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:31.474981+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.474987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.474991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.474 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.583µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:31.477446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.477 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.477465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.477469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.477473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.477 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.477645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.477 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.477657+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.47766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.477663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.477 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.478638+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.478646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.47865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.478 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"623.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"156e4c05-b213-496c-879a-472fd2b89837\"}\n"} +{"Time":"2022-12-07T09:15:31.479231+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.47924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.479244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"656.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8e16fff0-0b1a-43e2-b7f5-51f58b8b1273\"}\n"} +{"Time":"2022-12-07T09:15:31.488589+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.488603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.488609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.488 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"669.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11874aa0-df43-400e-8ffe-88620021e445\"}\n"} +{"Time":"2022-12-07T09:15:31.48863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.488634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.488639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.488 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"681.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"770fe6f8-5d79-49f6-8f9f-f8a68531b90d\"}\n"} +{"Time":"2022-12-07T09:15:31.488652+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.488658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.488664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.488 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"748.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e845768-53df-4597-9913-1b4f3c02acc6\"}\n"} +{"Time":"2022-12-07T09:15:31.488756+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.488764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.48877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.488 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"737.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd90f093-c211-4a9f-85bc-6481739f733c\"}\n"} +{"Time":"2022-12-07T09:15:31.489164+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.489173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.489178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.489 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"691.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b888242a-a73f-43e1-82ed-703ad44bb111\"}\n"} +{"Time":"2022-12-07T09:15:31.495274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.495283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.495288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"624.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97a77859-a8cb-4d5c-a31b-23ad30f1fa30\"}\n"} +{"Time":"2022-12-07T09:15:31.504025+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.504034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.504046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.503 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"642.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4be01608-8d01-4889-8e00-057af6f4819f\"}\n"} +{"Time":"2022-12-07T09:15:31.504213+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.504222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.504229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.504 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"638.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11db7a89-d6ef-45ef-868a-7a15c42d4092\"}\n"} +{"Time":"2022-12-07T09:15:31.508674+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.508701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.508708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.508716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.508951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.508967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.508972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.508977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.508981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.508986+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.508989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.508994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.509014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.50902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.509696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.509706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.509711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.509716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.509722+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.509725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.509728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.509 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.509746+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.50975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.509754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.509758+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.509761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.509764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.509769+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.509772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.509776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.50978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.509785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.50979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.509794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.509799+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.509842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.509848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.509 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.509853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.50986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.509863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.509868+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.50987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.509874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.509879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.509881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.509885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.509895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.510274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.51028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.510285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.51029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.510295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.5103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.510305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.51031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.510519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.510526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.510533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.512473+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.51258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.512586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.511 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.512592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.511 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.512597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.512 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.512603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.512 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.512609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.512 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.512615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.512 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.51262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.512 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.512625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.512 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"resource_count\": 1, \"resources\": [{\"name\": \"example\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"6ced57b7-a44f-42f1-ada3-7ef385529bc6\", \"name\": \"example\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.512633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.512 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.514784+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.514816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.514823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.513 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.066709ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"6572faf5-c960-4423-83c5-81940d5c2431\"}\n"} +{"Time":"2022-12-07T09:15:31.514832+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.514836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.51484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.514 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"760.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8276344a-f1a6-4450-9e13-6e8942e8c313\"}\n"} +{"Time":"2022-12-07T09:15:31.514848+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.514851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.514856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.514 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"705.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"946866a7-ac5b-4d2f-9ab4-cf61458c9a05\"}\n"} +{"Time":"2022-12-07T09:15:31.517358+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.517369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.517375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.517 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.983917ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"45ee926c-16a9-471e-8bf9-742635852a10\"}\n"} +{"Time":"2022-12-07T09:15:31.517718+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.51774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.517746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.517 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.012ms\", \"status_code\": 200, \"latency_ms\": 3, \"request_id\": \"ef58950b-e44c-4604-8226-3ff12c471b28\"}\n"} +{"Time":"2022-12-07T09:15:31.51818+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.518188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.518193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.51834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.518352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.518361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.518484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.518494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.518608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.518981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.519028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.520439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.520 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.358625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"42a8c5fc-6391-4dda-a3f2-5a2d813b5fef\"}\n"} +{"Time":"2022-12-07T09:15:31.529101+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.52912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.529125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.529131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.529136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.529143+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.529146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.529149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.529154+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.529157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.52916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.529165+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.52919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.529193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.529198+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.529201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.529204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.52921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.529221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.529225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.529229+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.529232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.529236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.529244+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.529247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.529251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.529255+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.529258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.529261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.529265+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.529268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.529271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.529276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.52928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.529285+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.529287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.529291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.529295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.5293+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.529303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.529306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.52931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.529 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.530284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.530 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"893.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6026dfa-5ebb-4000-a1a4-e7a4c204841d\"}\n"} +{"Time":"2022-12-07T09:15:31.530299+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.530302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.530306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.530 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"750.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"05bc4f40-1886-4886-a379-cd9da9046f12\"}\n"} +{"Time":"2022-12-07T09:15:31.539418+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.539465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.539473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"914.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"10561ee5-ab0c-4e04-b36e-b08fc8dbe6a3\"}\n"} +{"Time":"2022-12-07T09:15:31.539482+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.539486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.539491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"960.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0d3d65e-ce1d-4de9-acf2-098acaecc60f\"}\n"} +{"Time":"2022-12-07T09:15:31.539498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.539507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.539513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.539 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"733.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c147bde3-cdcf-4b09-99ce-bcbbbc739ab6\"}\n"} +{"Time":"2022-12-07T09:15:31.53952+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.539524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.539528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.539 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"726.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"613f7770-46d1-458a-835a-e28e8214d4fb\"}\n"} +{"Time":"2022-12-07T09:15:31.540685+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.540696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.540701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.540 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"925.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8bdcd9fa-dbfc-4bb9-bad9-3e974b066507\"}\n"} +{"Time":"2022-12-07T09:15:31.54502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.545032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.545036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.544 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"649.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"610462cb-8326-4d1e-9ccc-e32f53c6f4ef\"}\n"} +{"Time":"2022-12-07T09:15:31.554921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.554943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.554986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.554 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"778µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"304b2be8-3a30-40df-b5bc-14e619bd98d8\"}\n"} +{"Time":"2022-12-07T09:15:31.554996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.555001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.555005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.554 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"795.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"861adb99-bda2-4fcc-af9d-4eaea04b1116\"}\n"} +{"Time":"2022-12-07T09:15:31.560438+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.56045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.560455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.559 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.560462+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.560466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.560471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.560476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.56048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.560484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.560491+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.560494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.560499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.560505+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.560509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.560514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.560519+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.560523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.560527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.560533+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.560537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.560542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.560547+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.560552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.560556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.560561+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.560565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.56057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.560575+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.560579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.560584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.560589+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.560593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.560597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.560603+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.560619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.560623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.560631+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.560635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.560639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.560644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.56065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.560662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.560757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.560769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.56119+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.561197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.561202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.561208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.561215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.561221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.561226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.561 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.561231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.561 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.565251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.563 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.042125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ba967bb3-d1f7-42bf-ad34-69d3e1722f94\"}\n"} +{"Time":"2022-12-07T09:15:31.565326+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.565332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.565338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.563 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.278625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bf8490f8-50ff-450c-b4ba-f02804c2d4df\"}\n"} +{"Time":"2022-12-07T09:15:31.565345+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.565349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.565354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.563 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.56536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.563 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.565367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.563 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.565373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.563 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.565389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.563 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.565395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.564 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.565401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.564 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"969.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b7c9053-5f2c-4044-9d95-acc301552e08\"}\n"} +{"Time":"2022-12-07T09:15:31.565411+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.565415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.565421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.565 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"996.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"051e142b-d996-476e-b628-dc55b84c3ee7\"}\n"} +{"Time":"2022-12-07T09:15:31.56645+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.566462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.566469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.566 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"778.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e27fd98-36a4-4df5-8ca7-a7ce57d03b81\"}\n"} +{"Time":"2022-12-07T09:15:31.56957+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.569583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.569589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.569 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.569595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.569 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.569602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.569 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.569608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.569 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.569614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.569 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.569619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.569 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.570172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.570 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"845.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"734e62bc-b2c2-4937-ae3a-1efda7845a49\"}\n"} +{"Time":"2022-12-07T09:15:31.586312+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.586349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.586357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.579 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.586364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.579 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.586369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.579 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.586382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.579 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.586387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.579 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.586391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.580 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.586396+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.586399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.586402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.71125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"adf262be-8d09-4ead-82f1-c3e91030ad86\"}\n"} +{"Time":"2022-12-07T09:15:31.586408+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.586411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.586431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.583 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.200125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"99f86d93-199f-42d6-b12d-e2bd79d8b6e3\"}\n"} +{"Time":"2022-12-07T09:15:31.586437+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.58644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.586444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.585 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.586448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.585 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.586453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.585 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.586464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.585 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.586468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.585 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.586473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.585 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.588336+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.58836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.588367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"934.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f23b4e0-43fc-4b3a-8439-04f0e5c58714\"}\n"} +{"Time":"2022-12-07T09:15:31.588376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.58838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.588385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.588 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"703.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4cb225ce-e3ee-41db-b5f7-eafa9ecbb194\"}\n"} +{"Time":"2022-12-07T09:15:31.589878+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.589924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.58995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.588 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"674.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"02c8e98c-802c-4731-a4d4-c3e09acfc544\"}\n"} +{"Time":"2022-12-07T09:15:31.589974+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.590027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.590043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"732.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"08c1b98c-cf98-4eba-9ff9-42bcff93351b\"}\n"} +{"Time":"2022-12-07T09:15:31.590058+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.590063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.590066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"751.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d6c1105c-9010-4dd4-8f34-80a414600e77\"}\n"} +{"Time":"2022-12-07T09:15:31.595378+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.595399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.595405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.595 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"718.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e01181c8-4c67-4750-90fa-a1fcf8b77ac2\"}\n"} +{"Time":"2022-12-07T09:15:31.60497+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.605032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.605043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.604 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.131ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"776b3753-d79a-4cf0-a316-b609470e92d5\"}\n"} +{"Time":"2022-12-07T09:15:31.605055+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.60506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.605072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.604 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.118834ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"61c5d58f-700a-48b8-ba0c-855985d3ac9b\"}\n"} +{"Time":"2022-12-07T09:15:31.61179+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.611813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.61183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.611836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.611841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.611846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.611 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} +{"Time":"2022-12-07T09:15:31.611851+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.611854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.611858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.611863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.611867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.611872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.611 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} +{"Time":"2022-12-07T09:15:31.61265+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.612659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.612663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.612668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.612673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.612 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.612677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.612 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} +{"Time":"2022-12-07T09:15:31.612682+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.612686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.612689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.612 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.612702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.612 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.612706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.612 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.612711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.612 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} +{"Time":"2022-12-07T09:15:31.617947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.614 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.337208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0b402080-a606-4f4e-9fad-c64c1430e2dc\"}\n"} +{"Time":"2022-12-07T09:15:31.621019+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.621046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.621052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.619 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.086416ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"7456fdb8-2168-4127-b925-fba21555d4dc\"}\n"} +{"Time":"2022-12-07T09:15:31.62106+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.621064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.621068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.619 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"903.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"352b0132-58b2-4600-99f8-68a6ea39a678\"}\n"} +{"Time":"2022-12-07T09:15:31.621077+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.621081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.621086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.619 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"703.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"80b90f46-9653-4613-b6bf-9f425db301f2\"}\n"} +{"Time":"2022-12-07T09:15:31.621093+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.621096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.6211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.620 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/organizations/2d6404d9-6b63-464a-9089-9fa94543235d/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"831.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"43d145d2-96a7-43f5-88b2-cc8b4a350c52\"}\n"} +{"Time":"2022-12-07T09:15:31.630601+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.630657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.63067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.630 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"10.163708ms\", \"status_code\": 200, \"latency_ms\": 10, \"request_id\": \"0a4ba24c-b8f7-4f99-a1c1-d2f62bdf4530\"}\n"} +{"Time":"2022-12-07T09:15:31.630966+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.631001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.631021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.630 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.631031+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.631034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.631037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.630 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.63104+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.631043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.631046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.630 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.631049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.630 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.6313+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.631313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.631316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.631 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.631319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.631 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.631322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.631323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.631325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.631 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} +{"Time":"2022-12-07T09:15:31.631327+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.631329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.631349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.631 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.631351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.631 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} +{"Time":"2022-12-07T09:15:31.631502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.631512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.631527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.631 [INFO]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"resource_name\": \"example\", \"resource_type\": \"aws_instance\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:31.631653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.631 [INFO]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"resource_name\": \"example\", \"resource_type\": \"aws_instance\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:31.631818+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.63183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.631837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.631 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.12ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"63c4f397-b7f2-437b-b13c-0b61eb6d2e66\"}\n"} +{"Time":"2022-12-07T09:15:31.631846+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.631849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.631852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.631 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/organizations/e6a67067-7846-4aac-943f-66f56090e659/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.982042ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"aff66b2e-d971-44ad-85f5-61e5f42db8f7\"}\n"} +{"Time":"2022-12-07T09:15:31.631876+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.631881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.631884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.631 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.631886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.631 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.632241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.632 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} +{"Time":"2022-12-07T09:15:31.632269+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.632273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.632277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.251708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c9851c03-ed05-4ef0-8ba0-79deaa9e0200\"}\n"} +{"Time":"2022-12-07T09:15:31.632559+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.632569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.632573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.082583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"cbb5f80a-f209-4411-af4a-408bf5ffd75a\"}\n"} +{"Time":"2022-12-07T09:15:31.632579+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.632582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.632586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/organizations/776fb9a2-c282-474f-860a-f5963a2514bc/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.768959ms\", \"status_code\": 201, \"latency_ms\": 11, \"request_id\": \"e170de72-dc7c-4e87-b010-95df92abe612\"}\n"} +{"Time":"2022-12-07T09:15:31.632801+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.632822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.632831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/organizations/4b03f6f1-82c5-4c05-a33b-0522ccf384cc/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"505.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1a321eaa-5d4a-4b2d-aa9f-43ffe889b67a\"}\n"} +{"Time":"2022-12-07T09:15:31.6329+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.632905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.632908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/organizations/e6a67067-7846-4aac-943f-66f56090e659/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"562.916µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7ede72bb-190c-45c0-90c1-46191b603b64\"}\n"} +{"Time":"2022-12-07T09:15:31.632964+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.632969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.632971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/organizations/af53e927-c7ea-4846-ae8d-989e96093375/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.339042ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"a0754c87-b694-40ab-aa7c-563e3030c759\"}\n"} +{"Time":"2022-12-07T09:15:31.633041+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.633056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.633062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" schedule_test.go:128: waiting for workspace build job 26a0c3f6-81d4-4d15-8d12-6353d982cbbb\n"} +{"Time":"2022-12-07T09:15:31.634199+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.634209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.634214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/organizations/776fb9a2-c282-474f-860a-f5963a2514bc/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.40975ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"37221f32-46dd-4d62-83d6-da536be8b6a2\"}\n"} +{"Time":"2022-12-07T09:15:31.634222+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.634227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.63423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/organizations/2d6404d9-6b63-464a-9089-9fa94543235d/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.188625ms\", \"status_code\": 201, \"latency_ms\": 3, \"request_id\": \"1a40d7ec-0beb-4944-801d-a93cb76b545b\"}\n"} +{"Time":"2022-12-07T09:15:31.634365+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.634374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.634378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" rename_test.go:25: waiting for workspace build job c73b0cb3-9904-4ae8-972e-2567854483a7\n"} +{"Time":"2022-12-07T09:15:31.634384+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.634387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.634432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" schedule_test.go:184: waiting for workspace build job 42bafdf5-d95a-4c0b-b4ad-59e663315caf\n"} +{"Time":"2022-12-07T09:15:31.634632+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.63464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.634643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/organizations/af53e927-c7ea-4846-ae8d-989e96093375/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.2475ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"0c2ff77e-834c-4779-9c4e-41b2e60a2289\"}\n"} +{"Time":"2022-12-07T09:15:31.634786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.634821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.634838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/organizations/4b03f6f1-82c5-4c05-a33b-0522ccf384cc/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.674625ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"1393887c-e794-432b-84d8-d00310ad4c70\"}\n"} +{"Time":"2022-12-07T09:15:31.634859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.634871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.634879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" speedtest_test.go:23: waiting for workspace build job fc55599b-cbee-4e49-a39a-a09ff3bab930\n"} +{"Time":"2022-12-07T09:15:31.634948+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.634951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.634955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" schedule_test.go:40: waiting for workspace build job 2df72dfe-ca58-4072-80d5-620c94d61d27\n"} +{"Time":"2022-12-07T09:15:31.635952+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.635958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.635961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.635 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.635967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.635 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.636009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.635 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.636081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.636 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} +{"Time":"2022-12-07T09:15:31.63634+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} +{"Time":"2022-12-07T09:15:31.63635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} +{"Time":"2022-12-07T09:15:31.636354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"28.375µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"de02eb68-4e23-484a-8add-cabd16468cec\"}\n"} +{"Time":"2022-12-07T09:15:31.636628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0bc18ae4-73c3-4a90-8899-228da1bb3f4f\"}\n"} +{"Time":"2022-12-07T09:15:31.637043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/users/me/workspace/doesnotexist\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"43.042µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"16931033-f850-48f9-a26f-aec0b54e1d1d\"}\n"} +{"Time":"2022-12-07T09:15:31.637211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.637 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:31.638376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:31.63843+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table"} +{"Time":"2022-12-07T09:15:31.63844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":"=== CONT TestUserList/Table\n"} +{"Time":"2022-12-07T09:15:31.640228+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.640243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.640247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.640 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"687.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e6b5cc64-d33f-489e-8b39-041188e7b73d\"}\n"} +{"Time":"2022-12-07T09:15:31.642175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.642 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/organizations/77d6674e-0f03-4ecc-bd20-fdc9a2980a76/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"772.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6811eb4e-9c27-4d60-917e-045bdecf824d\"}\n"} +{"Time":"2022-12-07T09:15:31.643031+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table"} +{"Time":"2022-12-07T09:15:31.643071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":"=== CONT TestUserList/Table\n"} +{"Time":"2022-12-07T09:15:31.643079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" t.go:81: 2022-12-07 08:15:31.642 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56605\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"214.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1ef3a18c-6698-4593-8362-7f7d754f5efb\"}\n"} +{"Time":"2022-12-07T09:15:31.644238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" t.go:81: 2022-12-07 08:15:31.644 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56605\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"578.334µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"82fae316-f0ec-468d-93e9-bd66b926040e\"}\n"} +{"Time":"2022-12-07T09:15:31.645544+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.645563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.645569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.645 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/organizations/77d6674e-0f03-4ecc-bd20-fdc9a2980a76/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.798083ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"8fbbbd4c-42eb-4a92-9afc-cee7c05b8c57\"}\n"} +{"Time":"2022-12-07T09:15:31.645984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" configssh_test.go:106: waiting for workspace build job e074c4e5-cef3-4189-9066-7da13fd84aee\n"} +{"Time":"2022-12-07T09:15:31.649685+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table"} +{"Time":"2022-12-07T09:15:31.649704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":"=== CONT TestUserList/Table\n"} +{"Time":"2022-12-07T09:15:31.649708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" t.go:81: 2022-12-07 08:15:31.649 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56605\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"33.541µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"3c22cddb-153e-4b16-992b-d138e4ff55f4\"}\n"} +{"Time":"2022-12-07T09:15:31.649953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" t.go:81: 2022-12-07 08:15:31.649 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56605\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"39.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"02c7224b-3eb6-4127-b65b-455a5ee8e984\"}\n"} +{"Time":"2022-12-07T09:15:31.651114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" t.go:81: 2022-12-07 08:15:31.651 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56605\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"847.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8ca5caa7-3d05-40e3-9d20-2e143822d351\"}\n"} +{"Time":"2022-12-07T09:15:31.651356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" ptytest.go:103: 2022-12-07 08:15:31.651: cmd: stdout: \"USERNAME EMAIL CREATED AT STATUS \"\n"} +{"Time":"2022-12-07T09:15:31.651366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" ptytest.go:103: 2022-12-07 08:15:31.651: cmd: stdout: \"testuser testuser@coder.com 2022-12-07T08:15:31Z active \"\n"} +{"Time":"2022-12-07T09:15:31.651371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" userlist_test.go:34: 2022-12-07 08:15:31.651: cmd: matched \"coder.com\" = \"USERNAME EMAIL CREATED AT STATUS \\r\\ntestuser testuser@coder.com\"\n"} +{"Time":"2022-12-07T09:15:31.65143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" ptytest.go:80: 2022-12-07 08:15:31.651: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:31.652401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:31.652473+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText"} +{"Time":"2022-12-07T09:15:31.652483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText","Output":"=== CONT TestUserList/NoURLFileErrorHasHelperText\n"} +{"Time":"2022-12-07T09:15:31.654898+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.65491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.654914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"646µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a590e09d-651e-4867-97ae-8988418d59a2\"}\n"} +{"Time":"2022-12-07T09:15:31.655637+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText"} +{"Time":"2022-12-07T09:15:31.655645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":"=== CONT TestUserList/SessionAuthErrorHasHelperText\n"} +{"Time":"2022-12-07T09:15:31.655717+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.655728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.655731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.655 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/organizations/7a194acc-1f18-4514-8aa5-edb5f77d15de/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d8a017b7-1a00-48bc-8aaf-429c683df5c9\"}\n"} +{"Time":"2022-12-07T09:15:31.656973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.656 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/organizations/7a194acc-1f18-4514-8aa5-edb5f77d15de/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"989.541µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"80b50cec-454e-4fb1-8d90-b29e1019ae56\"}\n"} +{"Time":"2022-12-07T09:15:31.657109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" schedule_test.go:77: waiting for workspace build job 41e57f15-a46b-42bf-ab59-81db41ecdffa\n"} +{"Time":"2022-12-07T09:15:31.659553+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.659567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.659571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.659 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"644.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e79a1804-78c5-4cba-8613-bce0487d8c51\"}\n"} +{"Time":"2022-12-07T09:15:31.660834+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.660841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.660845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"635.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3111e4fa-e309-442e-9dac-714a316152ac\"}\n"} +{"Time":"2022-12-07T09:15:31.66085+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.660852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.660855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"681µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"367b1219-aaaa-47fe-ab66-bf5994692ef1\"}\n"} +{"Time":"2022-12-07T09:15:31.661181+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText"} +{"Time":"2022-12-07T09:15:31.661189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":"=== CONT TestUserList/SessionAuthErrorHasHelperText\n"} +{"Time":"2022-12-07T09:15:31.661192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":" t.go:81: 2022-12-07 08:15:31.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56614\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.667µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"58d55b13-6f69-4fb9-aeeb-99dd0a57d71b\"}\n"} +{"Time":"2022-12-07T09:15:31.661232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":" t.go:81: 2022-12-07 08:15:31.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56614\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1c0c8ee4-bad0-4d1c-a0fc-27e2b1e9b486\"}\n"} +{"Time":"2022-12-07T09:15:31.66159+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.661597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.661601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"625.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"89020a91-120e-44ce-8fea-fce8eb0b66c8\"}\n"} +{"Time":"2022-12-07T09:15:31.661739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.66175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.661753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"837.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97c79b2d-39a2-41c8-a043-5ea9c8647b65\"}\n"} +{"Time":"2022-12-07T09:15:31.661826+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText"} +{"Time":"2022-12-07T09:15:31.661833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":"=== CONT TestUserList/SessionAuthErrorHasHelperText\n"} +{"Time":"2022-12-07T09:15:31.661837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":" t.go:81: 2022-12-07 08:15:31.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56614\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.333µs\", \"status_code\": 401, \"latency_ms\": 0, \"request_id\": \"5e574f7c-f60d-485b-b1d7-5b94dc94bc6b\"}\n"} +{"Time":"2022-12-07T09:15:31.662805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:31.662812+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON"} +{"Time":"2022-12-07T09:15:31.662815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":"=== CONT TestUserList/JSON\n"} +{"Time":"2022-12-07T09:15:31.666054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":" t.go:81: 2022-12-07 08:15:31.665 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56629\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"122.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bf056267-f233-4771-b5a2-e1f6902f8189\"}\n"} +{"Time":"2022-12-07T09:15:31.666261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":" t.go:81: 2022-12-07 08:15:31.666 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56629\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"47.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"06ec6bec-5bd7-4e36-9a32-43d32e271110\"}\n"} +{"Time":"2022-12-07T09:15:31.668697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":" t.go:81: 2022-12-07 08:15:31.668 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56629\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"acf3efeb-b53e-4a8b-a72b-8194a29e2c40\"}\n"} +{"Time":"2022-12-07T09:15:31.668897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":" t.go:81: 2022-12-07 08:15:31.668 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56629\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"21.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fcfc905a-b6c2-43f8-a591-ee61f6d77bc8\"}\n"} +{"Time":"2022-12-07T09:15:31.66962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":" t.go:81: 2022-12-07 08:15:31.669 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56629\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"537.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5fd22c2-e5d2-4c27-91b9-a07d222233fb\"}\n"} +{"Time":"2022-12-07T09:15:31.670318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:31.670354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList","Output":"--- PASS: TestUserList (0.00s)\n"} +{"Time":"2022-12-07T09:15:31.670367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" --- PASS: TestUserList/Table (0.01s)\n"} +{"Time":"2022-12-07T09:15:31.670371+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Elapsed":0.01} +{"Time":"2022-12-07T09:15:31.670376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText","Output":" --- PASS: TestUserList/NoURLFileErrorHasHelperText (0.00s)\n"} +{"Time":"2022-12-07T09:15:31.670381+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText","Elapsed":0} +{"Time":"2022-12-07T09:15:31.670384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":" --- PASS: TestUserList/SessionAuthErrorHasHelperText (0.01s)\n"} +{"Time":"2022-12-07T09:15:31.670391+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Elapsed":0.01} +{"Time":"2022-12-07T09:15:31.670394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":" --- PASS: TestUserList/JSON (0.01s)\n"} +{"Time":"2022-12-07T09:15:31.670396+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Elapsed":0.01} +{"Time":"2022-12-07T09:15:31.670399+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserList","Elapsed":0} +{"Time":"2022-12-07T09:15:31.670401+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.670403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.67195+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.671959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.671963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.671 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"501.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f0ce3d49-f361-4879-b7cc-4bce97c409a8\"}\n"} +{"Time":"2022-12-07T09:15:31.674312+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.67432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.674324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"113.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7027e7c3-7704-42e7-829a-36a59a94fe70\"}\n"} +{"Time":"2022-12-07T09:15:31.674578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"62.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"feeb8614-6b89-4763-b698-768862ace4d9\"}\n"} +{"Time":"2022-12-07T09:15:31.675274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.675 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0b308649-d5bc-4ca4-a60d-9b751cdc19ce\"}\n"} +{"Time":"2022-12-07T09:15:31.676065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.676 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/organizations/1b8aafcf-a913-43d2-858c-2bd901595123/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"614.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b5405414-46cb-4450-8d35-18bf8cdd3b39\"}\n"} +{"Time":"2022-12-07T09:15:31.676154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" state_test.go:36: waiting for template version job 211458ea-6383-4ab3-8d67-7d1013b623c9\n"} +{"Time":"2022-12-07T09:15:31.68424+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.68425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.684253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.684 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"469.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7649226e-48c3-433a-b3e6-f845177248f3\"}\n"} +{"Time":"2022-12-07T09:15:31.684281+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.684286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.684289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.684 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e279e7a1-eaa4-47a3-8132-6b4bd75c15ba\"}\n"} +{"Time":"2022-12-07T09:15:31.685408+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.685414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.685425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.685 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"441.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fa32ebfe-2fcb-4e0c-ad39-e34a6034db2b\"}\n"} +{"Time":"2022-12-07T09:15:31.68556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.685567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.68557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.685 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"559.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"de5d3787-1815-4e15-a16e-b4bc11ce0874\"}\n"} +{"Time":"2022-12-07T09:15:31.685891+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.685898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.685901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.685 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"503.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9d2c6b91-c5b5-488e-b9e9-a6bc1671023a\"}\n"} +{"Time":"2022-12-07T09:15:31.686064+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.686069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.686071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.686 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"491.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b4d0a51b-985d-4b5e-94df-2c36707c3134\"}\n"} +{"Time":"2022-12-07T09:15:31.697488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.697498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.697501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.697 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"468.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f40b8e86-2c91-455b-854c-b22e2d821b17\"}\n"} +{"Time":"2022-12-07T09:15:31.699749+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.699754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.699756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.699 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.699981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.699 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.700035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.699 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:31.700077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowManual3642865273/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.700105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowManual3642865273/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.70014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowManual3642865273/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.700198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"workspace_name\": \"naughty-bardeen9\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:31.700329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.700355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.700 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.701921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.701932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.701935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.701 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"376.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"194bb3da-c3c5-4d21-bac6-78cff462488a\"}\n"} +{"Time":"2022-12-07T09:15:31.708314+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.708323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.708326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.708 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"380.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f292409b-1622-49bf-a099-7a352f3f5ca7\"}\n"} +{"Time":"2022-12-07T09:15:31.708582+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.708589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.708592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.708 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"29867cf5-0858-4deb-baa8-6c8aad32240b\"}\n"} +{"Time":"2022-12-07T09:15:31.70997+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.709977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.70998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.709 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"372.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf7b916e-652f-4449-9925-348e80fdf8d4\"}\n"} +{"Time":"2022-12-07T09:15:31.709986+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.709989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.709992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.709 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"397.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c8d3bc7d-b7cc-4344-bf4b-141fe5806986\"}\n"} +{"Time":"2022-12-07T09:15:31.710413+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.710419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.710422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.710 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"393.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8b3a65b6-7704-43df-9440-3316300187fe\"}\n"} +{"Time":"2022-12-07T09:15:31.710524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.71053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.710533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.710 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"413.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9efd04b9-5fb1-4da4-8783-e1d9eb008237\"}\n"} +{"Time":"2022-12-07T09:15:31.722706+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.72272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.722725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.722 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"609.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6066e409-6040-46ec-97c5-df52f37540ea\"}\n"} +{"Time":"2022-12-07T09:15:31.727285+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.727301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.727305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.727 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c9fa35f-e7c4-4855-b015-feabb0bd150a\"}\n"} +{"Time":"2022-12-07T09:15:31.733381+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.733389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.733392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"07459606-108b-4781-a568-8d5c85a4398e\"}\n"} +{"Time":"2022-12-07T09:15:31.733578+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.733585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.733587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"414.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"79a85d2c-6851-402c-84d5-a50221f2301b\"}\n"} +{"Time":"2022-12-07T09:15:31.735072+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.735083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.735093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.734 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"417.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0d7ffaa9-b8aa-4c15-abf7-5550dfe69c56\"}\n"} +{"Time":"2022-12-07T09:15:31.735099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.735101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.735104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.735 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"451.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44f6942b-93e8-438f-9e2a-a5e17732d18b\"}\n"} +{"Time":"2022-12-07T09:15:31.735534+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.735541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.735544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.735 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a60c943c-0868-432b-9fc7-bbbb221ed152\"}\n"} +{"Time":"2022-12-07T09:15:31.73577+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.735777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.735781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.735 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"447.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a74d04d5-9aaf-4872-84c5-c006f71e50b2\"}\n"} +{"Time":"2022-12-07T09:15:31.747536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.747553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.747557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.747 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"467.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d68b15a2-768c-45fa-8293-5c4e6ab6ecbb\"}\n"} +{"Time":"2022-12-07T09:15:31.750859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.750866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.750869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.750 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.750874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.750 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.75089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.750 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.750916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.750 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.751761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.751764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.751767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.751 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"74d22349-ba9e-4d0b-bd7c-036f72d6cd9c\"}\n"} +{"Time":"2022-12-07T09:15:31.758582+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.758591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.758594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"438.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"858ac338-fc3f-4bbb-a309-c5113ba6d5f6\"}\n"} +{"Time":"2022-12-07T09:15:31.758624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.758639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.758642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"369.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"615a04ae-ccab-4758-8354-a222ba67caa8\"}\n"} +{"Time":"2022-12-07T09:15:31.760349+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.760392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.760425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"616.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40377d93-249c-4f14-b43f-76940b0ff124\"}\n"} +{"Time":"2022-12-07T09:15:31.760473+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.760494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.760497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"656.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b974b91e-1b8c-4b06-9090-b6210da93714\"}\n"} +{"Time":"2022-12-07T09:15:31.761291+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.761296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.761299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.761 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.033291ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"39ae6c23-b7c4-420b-afbd-1d95b32d5b92\"}\n"} +{"Time":"2022-12-07T09:15:31.761302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.761303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.761305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.761 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.056834ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d13a4662-5e5b-4f8c-994e-aae4d06d3ed0\"}\n"} +{"Time":"2022-12-07T09:15:31.772325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.772358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.772365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.772 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"810.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c16bf63-75f7-45f4-b48a-4602a85d970f\"}\n"} +{"Time":"2022-12-07T09:15:31.772786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.772794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.772799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.772 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:31.777353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.777 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"524.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c5f35416-f467-4dbf-9ee8-8f951c8f43b9\"}\n"} +{"Time":"2022-12-07T09:15:31.783373+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.783378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.783381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"449µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b0a6cc45-cee2-4125-bf1a-5930cbf42116\"}\n"} +{"Time":"2022-12-07T09:15:31.783622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.78363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.783633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"446µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f8b3953-08e3-478f-be21-9169318c1565\"}\n"} +{"Time":"2022-12-07T09:15:31.785407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.785419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.785424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"701.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2aa9926e-e525-4a12-b7f6-26bc917b5771\"}\n"} +{"Time":"2022-12-07T09:15:31.785457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.785464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.785468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"704.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a094721-9e93-4473-9452-a11325d74a54\"}\n"} +{"Time":"2022-12-07T09:15:31.785787+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.785796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.7858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"645.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"46f5d813-83a6-43ab-827f-222f1d1740df\"}\n"} +{"Time":"2022-12-07T09:15:31.785981+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.785989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.785992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"657.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c8969eb4-e12c-4a50-9ad5-ee157343ca7a\"}\n"} +{"Time":"2022-12-07T09:15:31.797204+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.797214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.797217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.797 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"385µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"87e9016a-4707-471e-a87a-7c75f876a5ac\"}\n"} +{"Time":"2022-12-07T09:15:31.801584+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.801602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.801606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.801 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.80171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.801 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.801721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.801 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.801983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.801987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.80199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.801 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bd921ca0-d8e0-4aa1-9671-2a4900ae60a8\"}\n"} +{"Time":"2022-12-07T09:15:31.808459+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.808465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.808469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.808 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"27c7e938-ce58-4fa2-a991-236a81c22985\"}\n"} +{"Time":"2022-12-07T09:15:31.808548+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.808556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.808559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.808 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dbc7f561-dad9-43de-8d5d-7c0f08894b8d\"}\n"} +{"Time":"2022-12-07T09:15:31.81004+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.810047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.81005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"371.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"733ca915-a733-4983-bd9c-fb77d92ac0df\"}\n"} +{"Time":"2022-12-07T09:15:31.810054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.810075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.810078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7d6e44d-e137-49b7-9d8c-fd76b070fa12\"}\n"} +{"Time":"2022-12-07T09:15:31.81039+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.810401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.810404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.810 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ddcdb835-3f39-435a-9e5d-388d6dc595c4\"}\n"} +{"Time":"2022-12-07T09:15:31.810542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.810546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.810548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.810 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"898cd2e9-fede-4be9-a1cf-3ce9ac8d8764\"}\n"} +{"Time":"2022-12-07T09:15:31.817458+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.817486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.817492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:31.817689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:31.817755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:31.817809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"size_bytes\": 2, \"path\": \"/tmp/TestRename1486770065/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.817867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"size_bytes\": 2, \"path\": \"/tmp/TestRename1486770065/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.817923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"size_bytes\": 2, \"path\": \"/tmp/TestRename1486770065/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.817932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"workspace_name\": \"lucid-ishizaka7\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:31.818043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:31.818078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.818 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.82252+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.822529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.822559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.822 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"993.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3fc5323-36df-4061-be00-31cc50602f1f\"}\n"} +{"Time":"2022-12-07T09:15:31.822994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.823004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.82301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.822 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:31.82313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.823 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:31.823216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.823 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:31.823287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePullFile4042663601/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.823353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullFile4042663601/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.82342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullFile4042663601/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.82343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:31.823551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.823 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:31.827887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"829.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"76a28ab6-5dee-4c0d-880e-56c7a09160bc\"}\n"} +{"Time":"2022-12-07T09:15:31.833885+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.8339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.833907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.833 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"800.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"86fe511b-abd1-42ec-8e38-57a0cf330689\"}\n"} +{"Time":"2022-12-07T09:15:31.83411+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.834118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.834123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"832.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ef3c53f-572f-4c77-918a-c0401248fed0\"}\n"} +{"Time":"2022-12-07T09:15:31.835584+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.835596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.835602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.835 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"786.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f909ce79-285a-4ea7-a9b2-0e1dc118fd21\"}\n"} +{"Time":"2022-12-07T09:15:31.83714+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.837154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.837161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"824µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9d2905ba-705f-437d-936c-6c846f0fac92\"}\n"} +{"Time":"2022-12-07T09:15:31.837169+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.837173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.837178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"891.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2bce754e-ac2f-4d92-918e-e518e984ce5a\"}\n"} +{"Time":"2022-12-07T09:15:31.838036+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.838044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.83805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:31.838057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:31.838063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:31.838069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStart4175551108/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.838076+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.838079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.838101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.837 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"759.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6cd92dae-1161-45d4-a145-124cb9d5552e\"}\n"} +{"Time":"2022-12-07T09:15:31.838108+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.838112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.838116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStart4175551108/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.838123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStart4175551108/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.838129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"workspace_name\": \"eloquent-greider4\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:31.838135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:31.838141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.847149+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.847164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.84717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.847 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"751.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4d7c697-ced7-4760-a55f-e0ea9588ed18\"}\n"} +{"Time":"2022-12-07T09:15:31.852363+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.852377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.852385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.851 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.852392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.852 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.852401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.852 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.852408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.852 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.852415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.852 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.853086+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.853096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.853103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.852 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"965.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6da8929b-10d2-41d5-a05d-5f50efc8dd04\"}\n"} +{"Time":"2022-12-07T09:15:31.859053+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.859071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.859079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.858 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.112042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"8e376a11-9fcf-43ef-b2c0-1e278edbdec2\"}\n"} +{"Time":"2022-12-07T09:15:31.859353+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.859365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.859372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.859 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"976.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b52a8f24-c84c-49f2-a3df-2ea36df8a294\"}\n"} +{"Time":"2022-12-07T09:15:31.869996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.870017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.870023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.869 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:31.870079+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.870095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.8701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.869 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:31.870661+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.870688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.870694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.869 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.8707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:31.870705+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.870708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.870738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.870 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:31.87075+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.870755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.870793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:31.870805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.008792ms\", \"status_code\": 200, \"latency_ms\": 11, \"request_id\": \"39a08fbf-47b2-466c-91b7-e465bfb96f61\"}\n"} +{"Time":"2022-12-07T09:15:31.870813+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.870816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.87082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"10.854459ms\", \"status_code\": 200, \"latency_ms\": 10, \"request_id\": \"1896953a-86dc-43eb-8de0-b0c7e99e5770\"}\n"} +{"Time":"2022-12-07T09:15:31.870825+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.870828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.870832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.870 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:31.870839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH2701562645/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.870878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"size_bytes\": 114, \"path\": \"/tmp/TestConfigSSH2701562645/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.870994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"size_bytes\": 76, \"path\": \"/tmp/TestConfigSSH2701562645/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:31.871009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"workspace_name\": \"optimistic-panini6\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:31.871125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.871 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:31.8712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.871 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"resource_count\": 1, \"resources\": [{\"name\": \"example\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"6ced57b7-a44f-42f1-ada3-7ef385529bc6\", \"name\": \"example\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.871547+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.871576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.871588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.871 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"30.667µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:31.871615+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.871624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.871628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.871 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.421458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"5b85ca78-e656-4330-a181-66342f689bab\"}\n"} +{"Time":"2022-12-07T09:15:31.871637+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.87164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.871646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.871 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"923.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0b0dcd8f-85c7-48fd-ab02-34097252fcb7\"}\n"} +{"Time":"2022-12-07T09:15:31.87213+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.872139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.872144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"881.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f86293a-7245-4d7f-a285-f763be161a1c\"}\n"} +{"Time":"2022-12-07T09:15:31.873774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.873786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.873791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.873 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:31.873897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.873 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} +{"Time":"2022-12-07T09:15:31.877021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.876 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"440.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9969c0f4-c138-48b3-80af-e66c97e029af\"}\n"} +{"Time":"2022-12-07T09:15:31.884032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.88406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.884066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.883 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.060333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f415f91b-a3cf-445b-a974-58dd1146b6ef\"}\n"} +{"Time":"2022-12-07T09:15:31.884194+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.884202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.884207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.884 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"812.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f07fc61c-c338-4006-9413-45fc85f26125\"}\n"} +{"Time":"2022-12-07T09:15:31.885501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.885511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.885517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.885 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"739.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"38827ad7-6a5b-475c-a1d1-1f692e999035\"}\n"} +{"Time":"2022-12-07T09:15:31.885524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.885527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.885531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.885 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"871.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae8b3f5a-b5cf-4ba8-a67b-d67eb75ce457\"}\n"} +{"Time":"2022-12-07T09:15:31.886509+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.886518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.886525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"650.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d1ba8cf-5a98-406c-9a41-31b22db59885\"}\n"} +{"Time":"2022-12-07T09:15:31.886533+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.886536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.88654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"632.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e326b13-f8ca-4553-a44e-7642927dee93\"}\n"} +{"Time":"2022-12-07T09:15:31.888372+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.888378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.888382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.888 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:31.88841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.888 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.88845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.888 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:31.888499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.888 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:31.898333+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.898353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.898381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.897 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.355459ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0505e6a5-7297-43bb-a07f-f67fa742156d\"}\n"} +{"Time":"2022-12-07T09:15:31.902614+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.902626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.902632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.902 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"713.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f801e4cb-aefc-43a0-a27e-876009eee1cf\"}\n"} +{"Time":"2022-12-07T09:15:31.902639+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.902643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.902646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.902 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.902652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.902 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.902712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.902 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.902726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.902 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.902806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.902 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.908689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.908 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"760.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a09c1fec-0b64-43ed-8873-6c5152d88e83\"}\n"} +{"Time":"2022-12-07T09:15:31.909529+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.909538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.909543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"694.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"363da7dd-3757-40b7-b88a-a0ad25931658\"}\n"} +{"Time":"2022-12-07T09:15:31.911409+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.911429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.911434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.910 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.032666ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"868c6126-9566-4059-b5ae-6a3581b08b00\"}\n"} +{"Time":"2022-12-07T09:15:31.911442+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.911445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.911453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.911 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.490041ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4041292f-3dd9-4326-8dce-5b4a19f353fb\"}\n"} +{"Time":"2022-12-07T09:15:31.913682+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.913722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.913747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.560958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"86ecf363-f63d-4836-876a-2b2f9e9f112f\"}\n"} +{"Time":"2022-12-07T09:15:31.91376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.913764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.913768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.054375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c75116dd-4aec-4c00-a8c6-63589f9852e7\"}\n"} +{"Time":"2022-12-07T09:15:31.92167+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.921689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.921696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.921 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:31.921702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.921 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.921708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.921 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:31.921714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.921 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:31.922011+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.922017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.922075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.921 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:31.922083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.921 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:31.92209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.922 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.923022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.92303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.923035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.922 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"795.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"081ad675-3b23-4436-bf74-7de9ef1734a6\"}\n"} +{"Time":"2022-12-07T09:15:31.924027+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.924034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.924043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.923 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:31.924069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.924107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.92415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.924195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.924229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:31.924275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:31.924448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} +{"Time":"2022-12-07T09:15:31.924498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:31.927995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.927 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.058166ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"69ecbc14-02fa-4e28-8eec-fdd44e11de8e\"}\n"} +{"Time":"2022-12-07T09:15:31.934013+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.934034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.93404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"818.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"05d3ad27-9fc2-43f4-a126-127216c9c7ce\"}\n"} +{"Time":"2022-12-07T09:15:31.934047+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.934051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.934126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"732.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3f33357-4ee0-4ec0-9c0e-e83990bd2f27\"}\n"} +{"Time":"2022-12-07T09:15:31.93551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.93552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.935525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.935 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"740.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f2f7c482-117d-4632-934e-075a2f7b461e\"}\n"} +{"Time":"2022-12-07T09:15:31.935532+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.935535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.935539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.935 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"750.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c26007db-2c79-4e24-b875-5c70dbcd6a9e\"}\n"} +{"Time":"2022-12-07T09:15:31.938667+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.938688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.938693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.432042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3a947d55-3e05-455b-84f3-e910ecd11717\"}\n"} +{"Time":"2022-12-07T09:15:31.9387+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.938704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.938709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.545792ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"5c0d8bbb-51b9-4a9d-9afe-14b9c8bd5e18\"}\n"} +{"Time":"2022-12-07T09:15:31.939039+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.939048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.939053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.938 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:31.93929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.939 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:31.939299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.939 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.948595+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.948658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.948667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.948 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"944.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fed6e19d-d745-4423-ab27-64ebbc07c263\"}\n"} +{"Time":"2022-12-07T09:15:31.952628+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.952668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.952682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.952 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"973.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8da18b32-732d-4d36-9725-b1351d8406f9\"}\n"} +{"Time":"2022-12-07T09:15:31.953053+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.953065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.953072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.952 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.95332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.953 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.953398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.953 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} +{"Time":"2022-12-07T09:15:31.958915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.958 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.105583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e9b348cf-c498-4317-a40c-0805b90f3ec2\"}\n"} +{"Time":"2022-12-07T09:15:31.97154+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.97156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.971566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.969 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.631333ms\", \"status_code\": 200, \"latency_ms\": 11, \"request_id\": \"c8609a28-e356-408c-95a6-10ab9014476a\"}\n"} +{"Time":"2022-12-07T09:15:31.972325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.972368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.972375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:31.972507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:31.972517+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.972521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.972526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.024417ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"35bb18df-3fc8-4b5c-8a9c-40566fbedb65\"}\n"} +{"Time":"2022-12-07T09:15:31.972534+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.972537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.972541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.972 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"resource_count\": 1, \"resources\": [{\"name\": \"example\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"4cecbeb6-417d-48af-bee4-721a681ef1c5\", \"name\": \"example\", \"Auth\": {\"Token\": \"6518c7b9-f2f7-4aa4-b8da-eb504ffb9753\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:31.972581+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.972585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.972589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.092ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"af6591c2-e2d5-41dc-a8c8-f4aa38568968\"}\n"} +{"Time":"2022-12-07T09:15:31.972603+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.972606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.972609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"927.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c186fd90-2eae-4636-bb33-b671345176ea\"}\n"} +{"Time":"2022-12-07T09:15:31.972647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:31.972736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.972744+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.972746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.972749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"998.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a2333544-acae-4318-88da-a8fbf6bdeae1\"}\n"} +{"Time":"2022-12-07T09:15:31.972757+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.972759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.972761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:31.972765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:31.972768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:31.973028+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.973034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.973036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.347333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"61a45284-73bf-4385-85cb-8c135f1b577f\"}\n"} +{"Time":"2022-12-07T09:15:31.974322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.974327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.97433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"25.333µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"a62d2a98-e2af-4438-adbf-2d6eba7c415b\"}\n"} +{"Time":"2022-12-07T09:15:31.974557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"909f7d1a-e829-4ebe-b3e0-2240dfc204fd\"}\n"} +{"Time":"2022-12-07T09:15:31.974627+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.974638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.974642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:31.97466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.974666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.974698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:31.974731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:31.974789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:31.975448+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} +{"Time":"2022-12-07T09:15:31.975454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} +{"Time":"2022-12-07T09:15:31.975457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.975 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/users/me/workspace/naughty-bardeen9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"653.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b5af342-8b02-4483-aac2-c66b9bbdd7d0\"}\n"} +{"Time":"2022-12-07T09:15:31.975891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.975 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:31.97697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:31.977011+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:31.977017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:31.977573+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:31.977583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:31.977587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.977 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"646.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"98b418f5-a5e1-4bea-8485-2f1b291818a5\"}\n"} +{"Time":"2022-12-07T09:15:31.981454+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:31.981464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:31.981468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:31.981 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"129.084µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1274faaf-b603-4097-9a04-efa4ad687fc8\"}\n"} +{"Time":"2022-12-07T09:15:31.98171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:31.981 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"44.291µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"fcfaef78-ba29-4e64-9313-7b67808907fa\"}\n"} +{"Time":"2022-12-07T09:15:31.982505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:31.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"565.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2f41ec35-98bf-44ef-823a-25dbb15ba850\"}\n"} +{"Time":"2022-12-07T09:15:31.983427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:31.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/organizations/8c874e05-3ba0-47f6-b7ca-c1da0740bdf1/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"703.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9b42043b-7207-4a1c-9cc1-c9ae1d4674e9\"}\n"} +{"Time":"2022-12-07T09:15:31.983534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" state_test.go:64: waiting for template version job e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\n"} +{"Time":"2022-12-07T09:15:31.984418+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.984427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.98443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.984 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"564.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a3ccdfa-2724-42bc-af9c-3cb2b3b090d4\"}\n"} +{"Time":"2022-12-07T09:15:31.98588+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:31.985889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:31.985892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.985 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"596.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5f2830e-b9e5-446c-ae3a-a40fec00aafc\"}\n"} +{"Time":"2022-12-07T09:15:31.985897+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:31.985898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:31.985901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.985 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"587µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"19e4ea14-48df-4062-8bca-97ff30c3b39c\"}\n"} +{"Time":"2022-12-07T09:15:31.986182+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:31.986192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:31.986196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.986 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"554.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8a51c1a7-d484-47fd-995f-c6c8c1f744c0\"}\n"} +{"Time":"2022-12-07T09:15:31.986229+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:31.986233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:31.986236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.986 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"552.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12f7c443-b6b5-49aa-b69f-fe74ef5d87d3\"}\n"} +{"Time":"2022-12-07T09:15:31.989809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:31.989816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:31.989819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.989 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:31.989824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.989 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:31.989855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.989 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:31.989882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.989 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:31.989964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.989 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:31.998318+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:31.998332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:31.998335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.998 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"634.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57d36dfa-1e7f-4965-9e7d-4140b679241b\"}\n"} +{"Time":"2022-12-07T09:15:32.004419+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.004435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.00444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.004 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"905.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c5e3e0f-c898-4ad0-a0ec-d1380e63991b\"}\n"} +{"Time":"2022-12-07T09:15:32.009245+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.009251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.009254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"530.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e21af17f-a56c-4b3d-bd32-123051e4b6e5\"}\n"} +{"Time":"2022-12-07T09:15:32.009258+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.00926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.009262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"498.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1dea9005-c9ff-4495-89c0-373ade2190c5\"}\n"} +{"Time":"2022-12-07T09:15:32.009953+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:32.009966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:32.009969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"422.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5d6b893f-1882-44af-a980-1e8b1fc0e310\"}\n"} +{"Time":"2022-12-07T09:15:32.009976+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.009978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.00998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"435.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7f07a953-1abc-41a1-8248-a162fa196730\"}\n"} +{"Time":"2022-12-07T09:15:32.010445+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.010451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.010454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"430.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dc09033b-dbcd-49bd-ba6e-4b205c9d4333\"}\n"} +{"Time":"2022-12-07T09:15:32.010622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.010629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.010634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0744064-750f-475e-bd62-932ffde6b99c\"}\n"} +{"Time":"2022-12-07T09:15:32.022968+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.022997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.023004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.022 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:32.02301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.022 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.023016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.022 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:32.023021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.022 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:32.023025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.022 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:32.023433+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:32.023439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:32.023443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.023 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:32.023448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.023 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.023452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.023 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:32.023457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.02346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.023463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.023 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.057333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c0fd4a4c-7dfb-4057-a414-7f032b243cbb\"}\n"} +{"Time":"2022-12-07T09:15:32.023469+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:32.023472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:32.023475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.023 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:32.02348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.023 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:32.025198+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.025212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.025218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.025 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:32.025225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.025 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:32.025356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.025 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:32.025364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.025 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} +{"Time":"2022-12-07T09:15:32.029709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.027 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.073125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c8378cce-744e-4e3d-b929-b585d04cdb05\"}\n"} +{"Time":"2022-12-07T09:15:32.029733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.028 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/organizations/1b8aafcf-a913-43d2-858c-2bd901595123/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"685.709µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7320ecc2-0a9a-45f9-96ee-bbf7df9cae98\"}\n"} +{"Time":"2022-12-07T09:15:32.031443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.031 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/organizations/1b8aafcf-a913-43d2-858c-2bd901595123/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.092958ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"76d942ed-c20d-41fd-83c8-98b6c119f07f\"}\n"} +{"Time":"2022-12-07T09:15:32.031731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" state_test.go:39: waiting for workspace build job 6994775d-2c2e-4015-b417-5c0729f84ee1\n"} +{"Time":"2022-12-07T09:15:32.03439+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.034402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.034408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.034 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"753µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"584d877d-848f-4547-8c79-29053a79061a\"}\n"} +{"Time":"2022-12-07T09:15:32.034415+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.034419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.034423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.034 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"46dcac07-6e65-4c54-b4ca-bde1496de59e\"}\n"} +{"Time":"2022-12-07T09:15:32.035862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:32.035875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:32.035881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"692.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b9c7a97-4a66-436e-9370-632966f5e5c4\"}\n"} +{"Time":"2022-12-07T09:15:32.035887+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.03589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.035894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"685.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f9750e32-4b82-4d82-9093-97085324d8f1\"}\n"} +{"Time":"2022-12-07T09:15:32.036238+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.036244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.036248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"617µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4ef20c89-7450-43a3-b8b8-346212c7cf80\"}\n"} +{"Time":"2022-12-07T09:15:32.036696+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.036702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.036724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"614.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2e8147f1-b05e-4ae1-a466-281ecaac995e\"}\n"} +{"Time":"2022-12-07T09:15:32.040619+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.040627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.040631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.040 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:32.040724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.040 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.040732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.040 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:32.040803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.040 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:32.040857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.040 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:32.047647+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.047676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.047681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.047 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"788.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"55484c0a-6fb6-4689-b110-f62c6ca2ee76\"}\n"} +{"Time":"2022-12-07T09:15:32.057918+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.057956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.057962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"782.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cf479e7f-0aff-4d21-9cdf-9d7f3c5d3550\"}\n"} +{"Time":"2022-12-07T09:15:32.05929+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.059303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.059308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.059 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"703.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b50d718a-429c-46a4-aef0-abe0334d677b\"}\n"} +{"Time":"2022-12-07T09:15:32.059363+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.059371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.059376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.059 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"609.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d4ae178b-529b-4455-8d16-df7b7996f470\"}\n"} +{"Time":"2022-12-07T09:15:32.060852+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:32.060869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:32.060875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.060 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"730.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dee2e9e7-84ce-459e-ac0d-cfbc432118a2\"}\n"} +{"Time":"2022-12-07T09:15:32.060882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.060885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.060889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.060 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"872.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e5446ba3-2bfb-4c6e-b781-08bfe759d8d8\"}\n"} +{"Time":"2022-12-07T09:15:32.06349+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.063535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.063543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"727.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"282013d7-b0f8-4e17-8e92-e850ae792aae\"}\n"} +{"Time":"2022-12-07T09:15:32.063552+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.063562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.063567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.063 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.075333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d27f8832-f818-4465-b4be-3e853f1d4368\"}\n"} +{"Time":"2022-12-07T09:15:32.072478+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.072502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.072509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.072 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"846.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7914efd6-bad2-4353-91b3-7434ee64ce19\"}\n"} +{"Time":"2022-12-07T09:15:32.073157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.073 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:32.073239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.073 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.07325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.073 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:32.073341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.073 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:32.073485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.073 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:32.073504+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:32.073509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:32.073514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.073 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:32.073646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.073 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:32.073724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.073 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} +{"Time":"2022-12-07T09:15:32.08014+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.080161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.080168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.080 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:32.084922+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.084943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.08495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"932µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"30facb65-a1a4-473e-8e63-097cf52a1d9d\"}\n"} +{"Time":"2022-12-07T09:15:32.084958+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.084962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.084967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.084 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"863.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58587fa0-04ba-419c-af63-3dfb4aec54aa\"}\n"} +{"Time":"2022-12-07T09:15:32.085861+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.085872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.085878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.085 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"935.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fdaaf19a-8107-41af-9453-c61e4e753a23\"}\n"} +{"Time":"2022-12-07T09:15:32.086299+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:32.086311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:32.086316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.086 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"865.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c070501b-5b06-4e53-8157-2a9c7d1d414b\"}\n"} +{"Time":"2022-12-07T09:15:32.08891+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.088931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.088939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.087 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"774.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"faa46a19-d5f9-473b-a99c-f772fbc355ed\"}\n"} +{"Time":"2022-12-07T09:15:32.088959+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.088964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.08897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.087 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"873.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e49137e8-c8c8-4cc7-8d86-1176e4536258\"}\n"} +{"Time":"2022-12-07T09:15:32.08898+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.088985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.088991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.088 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"819.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fa018e24-9f95-441d-becb-9df69ddb7a5f\"}\n"} +{"Time":"2022-12-07T09:15:32.091635+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.091644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.091649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.091 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:32.091656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.091 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:32.091661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.091 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} +{"Time":"2022-12-07T09:15:32.100135+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:32.100155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:32.100162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"74.292µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"dafaca1b-44d1-4f40-9778-b771ccb6923d\"}\n"} +{"Time":"2022-12-07T09:15:32.100658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"60.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad36705b-4f68-482f-863c-65c236f74e7a\"}\n"} +{"Time":"2022-12-07T09:15:32.101553+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.101564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.101569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.101 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.47325ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2f073fa0-b8f0-4a29-9357-be2728ade693\"}\n"} +{"Time":"2022-12-07T09:15:32.101912+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} +{"Time":"2022-12-07T09:15:32.101922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} +{"Time":"2022-12-07T09:15:32.101928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.101 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/users/me/workspace/lucid-ishizaka7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"888.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"04af3d86-8125-4ce7-8d9d-3bb4612ce479\"}\n"} +{"Time":"2022-12-07T09:15:32.10221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" ptytest.go:103: 2022-12-07 08:15:32.102: cmd: stdout: \"WARNING: A rename can result in data loss if a resource references the workspace\"\n"} +{"Time":"2022-12-07T09:15:32.10223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" ptytest.go:103: 2022-12-07 08:15:32.102: cmd: stdout: \"name in the template (e.g volumes). \"\n"} +{"Time":"2022-12-07T09:15:32.102235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" ptytest.go:103: 2022-12-07 08:15:32.102: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:32.102286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" rename_test.go:42: 2022-12-07 08:15:32.102: cmd: matched \"confirm rename:\" = \"WARNING: A rename can result in data loss if a resource references the workspace\\r\\nname in the template (e.g volumes). \\r\\n\\r\\n\u003e Type \\\"lucid-ishizaka7\\\" to confirm rename:\"\n"} +{"Time":"2022-12-07T09:15:32.1023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" rename_test.go:43: 2022-12-07 08:15:32.102: cmd: stdin: \"lucid-ishizaka7\\r\"\n"} +{"Time":"2022-12-07T09:15:32.102357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" ptytest.go:103: 2022-12-07 08:15:32.102: cmd: stdout: \"\u003e Type \\\"lucid-ishizaka7\\\" to confirm rename: lucid-ishizaka7\"\n"} +{"Time":"2022-12-07T09:15:32.103292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.103 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspaces/1f808e4f-23ba-412b-a2c2-1e3b9503bd95\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"722.958µs\", \"status_code\": 204, \"latency_ms\": 0, \"request_id\": \"88a10ab9-40f6-474d-ad6e-366530a5c4db\"}\n"} +{"Time":"2022-12-07T09:15:32.103887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.103 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspaces/1f808e4f-23ba-412b-a2c2-1e3b9503bd95\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8108902a-001a-4bbc-bbd8-25b1ca3122b0\"}\n"} +{"Time":"2022-12-07T09:15:32.104059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" ptytest.go:80: 2022-12-07 08:15:32.104: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:32.104126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.104 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:32.104913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:32.104956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"--- PASS: TestRename (0.85s)\n"} +{"Time":"2022-12-07T09:15:32.104971+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRename","Elapsed":0.85} +{"Time":"2022-12-07T09:15:32.104979+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} +{"Time":"2022-12-07T09:15:32.104983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== CONT TestUserShow/Table\n"} +{"Time":"2022-12-07T09:15:32.108022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.107 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"128.959µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b1ed517b-64a7-45dd-a8b3-10f91acdaad8\"}\n"} +{"Time":"2022-12-07T09:15:32.108323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.108 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"55.334µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"239ef572-7350-4f41-a719-a51234611921\"}\n"} +{"Time":"2022-12-07T09:15:32.108458+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.108472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.108476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.108 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"557.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a327d812-5cdf-42e3-a6b0-cae5239c588a\"}\n"} +{"Time":"2022-12-07T09:15:32.109145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.109152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.109155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.109 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"465.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"23e3e2bb-86be-4023-b4cf-4c394d1ba4ff\"}\n"} +{"Time":"2022-12-07T09:15:32.109335+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} +{"Time":"2022-12-07T09:15:32.109341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== CONT TestUserShow/Table\n"} +{"Time":"2022-12-07T09:15:32.109343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.109 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"812.959µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"aa857c1f-db5c-4c1c-9271-43f5d6654573\"}\n"} +{"Time":"2022-12-07T09:15:32.109579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.109 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"51.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8fb189a1-fb05-4d39-9f56-5fba676d770d\"}\n"} +{"Time":"2022-12-07T09:15:32.109662+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.109669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.109671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.109 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"490.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6ca626cf-191d-4cc4-a2c7-264802d94a38\"}\n"} +{"Time":"2022-12-07T09:15:32.110085+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} +{"Time":"2022-12-07T09:15:32.110097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== CONT TestUserShow/Table\n"} +{"Time":"2022-12-07T09:15:32.110099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.110 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ec4522f-5dcf-4b4c-bb8f-1ce8f2e81560\"}\n"} +{"Time":"2022-12-07T09:15:32.110478+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.110502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.110505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.110 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"461.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"18fca101-7ca0-4b72-bddf-aff2138e7667\"}\n"} +{"Time":"2022-12-07T09:15:32.111001+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.111007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.11101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.110 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"469.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ab9590d5-4aa7-4406-a205-2c3cd532a111\"}\n"} +{"Time":"2022-12-07T09:15:32.111081+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.111085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.111087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"482.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"292d1a6f-9b8a-41dd-8b86-13a822f3b419\"}\n"} +{"Time":"2022-12-07T09:15:32.111744+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.111752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.11176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"a57ab38f-922a-4117-bf7b-6caa1c285561\"}\n"} +{"Time":"2022-12-07T09:15:32.111873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"26187a10-30de-4318-9975-438f611d8947\"}\n"} +{"Time":"2022-12-07T09:15:32.112486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/users/me/workspace/eloquent-greider4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"01838ce4-59ed-4b4f-adb9-c6a73a2b45bf\"}\n"} +{"Time":"2022-12-07T09:15:32.112562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} +{"Time":"2022-12-07T09:15:32.112568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== CONT TestUserShow/Table\n"} +{"Time":"2022-12-07T09:15:32.11257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"4c1b5ea8-a079-4a94-9b1f-1f8b381abfee\"}\n"} +{"Time":"2022-12-07T09:15:32.113047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"34e23d37-6f1b-44e9-b33b-28adc26bdd13\"}\n"} +{"Time":"2022-12-07T09:15:32.1138+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.113824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.113831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.113 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspaces/39727dcb-591f-422f-a193-053deb6717bb/autostart\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"767.375µs\", \"status_code\": 204, \"latency_ms\": 0, \"request_id\": \"ee2b1d80-9915-4760-8cdf-8cad4504b74d\"}\n"} +{"Time":"2022-12-07T09:15:32.114223+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} +{"Time":"2022-12-07T09:15:32.114262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== CONT TestUserShow/Table\n"} +{"Time":"2022-12-07T09:15:32.114268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/users/blissful-taussig1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"646.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"adf58397-bfdc-4490-b825-9c06f99db087\"}\n"} +{"Time":"2022-12-07T09:15:32.1147+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.114705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.114707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/users/me/workspace/eloquent-greider4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"564.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7c42905e-2d46-4a52-802e-30b84b8a55ac\"}\n"} +{"Time":"2022-12-07T09:15:32.114924+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} +{"Time":"2022-12-07T09:15:32.114927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== CONT TestUserShow/Table\n"} +{"Time":"2022-12-07T09:15:32.11493+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/organizations/0e41ecd6-a9ae-4b89-b73d-4784b4ad41b6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"514.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2366bf8a-67e6-468d-82aa-c76f18e75a3f\"}\n"} +{"Time":"2022-12-07T09:15:32.115369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \"ID: 8c78f926-75ba-46da-93dc-2ee5b36d1b80 \"\n"} +{"Time":"2022-12-07T09:15:32.115375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \"Username: blissful-taussig1 \"\n"} +{"Time":"2022-12-07T09:15:32.115377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \"Email: quirky_borg9@coder.com \"\n"} +{"Time":"2022-12-07T09:15:32.115379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \"Status: active \"\n"} +{"Time":"2022-12-07T09:15:32.115383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \"Created At: Dec 7 08:15:32 \"\n"} +{"Time":"2022-12-07T09:15:32.115385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:32.115387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \"Roles: (none) \"\n"} +{"Time":"2022-12-07T09:15:32.115389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:32.115393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \"Organizations: testuser \"\n"} +{"Time":"2022-12-07T09:15:32.115395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" userlist_test.go:107: 2022-12-07 08:15:32.115: cmd: matched \"quirky_borg9@coder.com\" = \"ID: 8c78f926-75ba-46da-93dc-2ee5b36d1b80 \\r\\nUsername: blissful-taussig1 \\r\\nEmail: quirky_borg9@coder.com\"\n"} +{"Time":"2022-12-07T09:15:32.1154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:80: 2022-12-07 08:15:32.115: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:32.116107+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.116113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.116115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.116 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspaces/39727dcb-591f-422f-a193-053deb6717bb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.002208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b28975a0-6ab3-40b0-85a2-4b6e1b403059\"}\n"} +{"Time":"2022-12-07T09:15:32.1164+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} +{"Time":"2022-12-07T09:15:32.116406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== CONT TestUserShow/Table\n"} +{"Time":"2022-12-07T09:15:32.116408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:32.116428+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} +{"Time":"2022-12-07T09:15:32.116435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== CONT TestUserShow/JSON\n"} +{"Time":"2022-12-07T09:15:32.118957+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.118962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.118964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.118 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bef5d382-7ffa-4978-84fa-bac3b64b2728\"}\n"} +{"Time":"2022-12-07T09:15:32.118968+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} +{"Time":"2022-12-07T09:15:32.118969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== CONT TestUserShow/JSON\n"} +{"Time":"2022-12-07T09:15:32.118971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.118 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"106.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d63f4ff2-2024-48d7-a475-20b3953cba05\"}\n"} +{"Time":"2022-12-07T09:15:32.118975+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.118977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.118979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.118 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"35.209µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"b9f84f10-ed69-46f7-a7c6-8f5932e97074\"}\n"} +{"Time":"2022-12-07T09:15:32.119151+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} +{"Time":"2022-12-07T09:15:32.119159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== CONT TestUserShow/JSON\n"} +{"Time":"2022-12-07T09:15:32.119164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.119 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"36.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bfc9f065-efa3-4de4-add4-f7e3d750ed1d\"}\n"} +{"Time":"2022-12-07T09:15:32.119693+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.119706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.119709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.119 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/users/me/workspace/eloquent-greider4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"526.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7faa096-19bc-40f5-9c73-d5c50afd3ffc\"}\n"} +{"Time":"2022-12-07T09:15:32.120112+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} +{"Time":"2022-12-07T09:15:32.12012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== CONT TestUserShow/JSON\n"} +{"Time":"2022-12-07T09:15:32.120124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"799.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a49f1390-5474-402a-86d6-27b4ea9eae2b\"}\n"} +{"Time":"2022-12-07T09:15:32.120231+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.12024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.120243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspaces/39727dcb-591f-422f-a193-053deb6717bb/autostart\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"300.375µs\", \"status_code\": 204, \"latency_ms\": 0, \"request_id\": \"56b92db0-47e3-4151-99f6-84a1fa3a9807\"}\n"} +{"Time":"2022-12-07T09:15:32.120324+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} +{"Time":"2022-12-07T09:15:32.120331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== CONT TestUserShow/JSON\n"} +{"Time":"2022-12-07T09:15:32.120333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"44.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7f46075f-5c0d-44b3-8f97-6b537a955f32\"}\n"} +{"Time":"2022-12-07T09:15:32.12072+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.120726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.120728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/users/me/workspace/eloquent-greider4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d5aab4be-b57a-44b1-b7a5-fd54233e5c7c\"}\n"} +{"Time":"2022-12-07T09:15:32.120762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} +{"Time":"2022-12-07T09:15:32.120771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== CONT TestUserShow/JSON\n"} +{"Time":"2022-12-07T09:15:32.120774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"270.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"890d94d3-ea89-4b96-97e9-adde1b6113cd\"}\n"} +{"Time":"2022-12-07T09:15:32.120977+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} +{"Time":"2022-12-07T09:15:32.120981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} +{"Time":"2022-12-07T09:15:32.120983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.120 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:32.121718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:32.122116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"--- PASS: TestScheduleStart (0.87s)\n"} +{"Time":"2022-12-07T09:15:32.122124+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Elapsed":0.87} +{"Time":"2022-12-07T09:15:32.122129+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces"} +{"Time":"2022-12-07T09:15:32.122131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces","Output":"=== CONT Test_sshConfigExecEscape/no_spaces\n"} +{"Time":"2022-12-07T09:15:32.122133+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.122134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.122137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.121 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"411.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e705452e-fa83-4258-9933-95f8d00ed630\"}\n"} +{"Time":"2022-12-07T09:15:32.124632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.124 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:32.12471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.124 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"e074c4e5-cef3-4189-9066-7da13fd84aee\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:32.124764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.124 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:32.124805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.124 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} +{"Time":"2022-12-07T09:15:32.125378+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} +{"Time":"2022-12-07T09:15:32.125386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== CONT TestUserShow/JSON\n"} +{"Time":"2022-12-07T09:15:32.125388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.125 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"59.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"81e22cc6-af6b-41b0-87b7-8a33b2935514\"}\n"} +{"Time":"2022-12-07T09:15:32.125394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.125 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"70.125µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"8228baa3-3909-4973-92be-30e69757981f\"}\n"} +{"Time":"2022-12-07T09:15:32.126151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.126 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/users/ecstatic-ellis5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"528.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16439587-551f-425d-a000-02a1c33470d9\"}\n"} +{"Time":"2022-12-07T09:15:32.126821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:32.126872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow","Output":"--- PASS: TestUserShow (0.00s)\n"} +{"Time":"2022-12-07T09:15:32.126881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" --- PASS: TestUserShow/Table (0.01s)\n"} +{"Time":"2022-12-07T09:15:32.126883+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Elapsed":0.01} +{"Time":"2022-12-07T09:15:32.126887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" --- PASS: TestUserShow/JSON (0.01s)\n"} +{"Time":"2022-12-07T09:15:32.126889+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Elapsed":0.01} +{"Time":"2022-12-07T09:15:32.126891+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserShow","Elapsed":0} +{"Time":"2022-12-07T09:15:32.126893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.126895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.131051+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.131062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.131065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.130 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.131272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.131 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.131392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.131 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:32.131403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePullStdout1277238284/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.131484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullStdout1277238284/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.131491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullStdout1277238284/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.131496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.131607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.131 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:32.131889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.131894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.131896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.131 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"145.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3d9830a4-f375-41dc-8c0e-b0b5299df5c1\"}\n"} +{"Time":"2022-12-07T09:15:32.132199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.132 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"67.584µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5868257c-6032-429b-805b-c191f6cc201f\"}\n"} +{"Time":"2022-12-07T09:15:32.132975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.132 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"512.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9ef3f7c9-b7f5-4e32-95ac-aeae07f4140d\"}\n"} +{"Time":"2022-12-07T09:15:32.13377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.133 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/organizations/2d62e2c5-c8aa-4495-906d-e4a682bc9913/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"597.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a843d32a-a861-47e1-ba61-a34e8db6aa61\"}\n"} +{"Time":"2022-12-07T09:15:32.133872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" state_test.go:88: waiting for template version job 83a463b7-3d5b-473e-946b-43a803f1841b\n"} +{"Time":"2022-12-07T09:15:32.136483+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.136505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.136508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"523.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4b992abe-56b7-4eb9-bc67-232ace90f222\"}\n"} +{"Time":"2022-12-07T09:15:32.136516+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.136518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.136535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9cd38e00-d1da-4ff9-9c81-033eeaea261a\"}\n"} +{"Time":"2022-12-07T09:15:32.136542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.136546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.136549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"518.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24d42398-acdb-49db-b73e-fd0035d1bad5\"}\n"} +{"Time":"2022-12-07T09:15:32.136554+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.136559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.136573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"529.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"43b25443-cf3c-4b63-bded-df1646e99244\"}\n"} +{"Time":"2022-12-07T09:15:32.136579+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.136581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.136583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"551.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"29bfdcf1-36f6-4c2c-aef7-7015e88a6402\"}\n"} +{"Time":"2022-12-07T09:15:32.148502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.148508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.14851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.148 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"486.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"684596f1-ec9f-4a92-bbee-7b69d27945c5\"}\n"} +{"Time":"2022-12-07T09:15:32.148638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.148 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:446\u003e\t(*agent).init\tgenerating host key\n"} +{"Time":"2022-12-07T09:15:32.154406+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.154416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.15442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.154507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.154574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:32.154618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"size_bytes\": 2, \"path\": \"/tmp/TestSpeedtest1248491661/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.154664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"size_bytes\": 112, \"path\": \"/tmp/TestSpeedtest1248491661/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.154695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"size_bytes\": 2, \"path\": \"/tmp/TestSpeedtest1248491661/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.154713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"workspace_name\": \"cool-pike0\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:32.154839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.154872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.157715+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.157722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.157725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.157 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"396b2419-341a-4c7f-adb3-48277417ebfd\"}\n"} +{"Time":"2022-12-07T09:15:32.159266+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.159275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.159278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6274b58c-4bc2-4456-a462-290934bcf824\"}\n"} +{"Time":"2022-12-07T09:15:32.159448+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.159457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.15946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd5826fe-659e-4a27-93c7-6fc92bde254d\"}\n"} +{"Time":"2022-12-07T09:15:32.159988+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.159993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.159995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"409.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ffa3a88-166a-44c2-a1f1-5a39ad36c9a3\"}\n"} +{"Time":"2022-12-07T09:15:32.160361+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.160365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.160368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.160 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"372.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"73554164-2ef2-4a28-818f-837ecdcc8662\"}\n"} +{"Time":"2022-12-07T09:15:32.160523+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.160532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.160534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.160 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"357µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"36f5afc1-311b-499e-aa61-482586b80794\"}\n"} +{"Time":"2022-12-07T09:15:32.16967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.169752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.169803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:32.169847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowEnabled3677771965/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.169867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowEnabled3677771965/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.16989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowEnabled3677771965/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.16991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"workspace_name\": \"xenodochial-fermat6\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:32.170003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.170044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.178442+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.178447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.17845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.178 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"14.375µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:32.181992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.181 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.182101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.182 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} +{"Time":"2022-12-07T09:15:32.182451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.182455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.182457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.182 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"032d091b-80a5-4fd8-8c81-e380543e82b3\"}\n"} +{"Time":"2022-12-07T09:15:32.18414+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.184145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.184147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"304.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f946ef28-f3ea-4544-8d39-42613c93e44e\"}\n"} +{"Time":"2022-12-07T09:15:32.184382+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.184387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.18439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"288.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0e74f55-509a-4294-ba38-93f4426fb7f9\"}\n"} +{"Time":"2022-12-07T09:15:32.184949+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.184955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.184957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62ac9422-e626-440b-8bef-d56d8c8b61ea\"}\n"} +{"Time":"2022-12-07T09:15:32.185331+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.185338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.185341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"327.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96686875-14ac-48e7-96ee-94498a418636\"}\n"} +{"Time":"2022-12-07T09:15:32.185528+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.185532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.185535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"393.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33224291-deb1-423c-a01d-8c55a0a23012\"}\n"} +{"Time":"2022-12-07T09:15:32.185683+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError"} +{"Time":"2022-12-07T09:15:32.185688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError","Output":"=== CONT TestRoot/FormatCobraError\n"} +{"Time":"2022-12-07T09:15:32.18569+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK"} +{"Time":"2022-12-07T09:15:32.185692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK","Output":"=== RUN TestRoot/FormatCobraError/OK\n"} +{"Time":"2022-12-07T09:15:32.185695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK","Output":"=== PAUSE TestRoot/FormatCobraError/OK\n"} +{"Time":"2022-12-07T09:15:32.185697+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK"} +{"Time":"2022-12-07T09:15:32.185699+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose"} +{"Time":"2022-12-07T09:15:32.1857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose","Output":"=== RUN TestRoot/FormatCobraError/Verbose\n"} +{"Time":"2022-12-07T09:15:32.185702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose","Output":"=== PAUSE TestRoot/FormatCobraError/Verbose\n"} +{"Time":"2022-12-07T09:15:32.185704+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose"} +{"Time":"2022-12-07T09:15:32.185706+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails"} +{"Time":"2022-12-07T09:15:32.185707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails","Output":"=== CONT Test_sshConfigExecEscape/newline_fails\n"} +{"Time":"2022-12-07T09:15:32.186415+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs"} +{"Time":"2022-12-07T09:15:32.186419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs","Output":"=== CONT Test_sshConfigExecEscape/tabs\n"} +{"Time":"2022-12-07T09:15:32.206442+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.206463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.206466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.206 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.20647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.206 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.206475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.206 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.206518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.206 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.207587+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.20759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.207592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"411.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"985db409-9525-4419-8dea-53c5ddb784e5\"}\n"} +{"Time":"2022-12-07T09:15:32.209212+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.20922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.209223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad42adf3-604e-41da-a1d5-20bf3340a065\"}\n"} +{"Time":"2022-12-07T09:15:32.20947+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.209478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.209481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"323.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"edc84a5f-9a32-4065-8ac3-3ee0e8fc61da\"}\n"} +{"Time":"2022-12-07T09:15:32.21+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.210006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.210008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"294.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1f2734d-164c-4f62-bf84-cf45193dfcbc\"}\n"} +{"Time":"2022-12-07T09:15:32.210431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.210437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.210441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96c279ae-f15b-4a80-952d-5eaa2f17f341\"}\n"} +{"Time":"2022-12-07T09:15:32.210476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.210478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.21048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"355.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bffd2231-a7f7-4e91-a985-0de2ad8c9f77\"}\n"} +{"Time":"2022-12-07T09:15:32.221186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.221 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.221191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.221 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.221193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.221 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.221196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.221 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.231956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.231961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.231963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.231 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:32.232107+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.232116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.232119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.232122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.23214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.232151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.23217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.232194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.23223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.232874+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.232899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.232905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"727.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c0862b0-119e-46b9-ac2f-1488d91ef98a\"}\n"} +{"Time":"2022-12-07T09:15:32.232924+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.232928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.232933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} +{"Time":"2022-12-07T09:15:32.232942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.235518+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.235532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.235542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"766.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ab6f46c6-87db-4e10-9c6e-6b7d261e90b3\"}\n"} +{"Time":"2022-12-07T09:15:32.235545+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.235547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.235548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"726.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd31a468-b4d2-42c2-b7b9-e17901a67782\"}\n"} +{"Time":"2022-12-07T09:15:32.235552+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.235554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.235555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8e8b6eaa-1024-45aa-8f12-2aa7f11c0f9a\"}\n"} +{"Time":"2022-12-07T09:15:32.235715+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.235726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.235729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"435.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e781feb-feb9-4c0d-9384-f167fd65b665\"}\n"} +{"Time":"2022-12-07T09:15:32.235944+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.23595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.235952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9973f4f1-b3ed-4f1d-aa99-5b8d87211b76\"}\n"} +{"Time":"2022-12-07T09:15:32.240421+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes"} +{"Time":"2022-12-07T09:15:32.240431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes","Output":"=== CONT Test_sshConfigExecEscape/backslashes\n"} +{"Time":"2022-12-07T09:15:32.264524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.264541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.264545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" configssh_test.go:116: waiting for workspace agents (workspace 1e701e9d-7889-4738-bdd1-ce6caf03218b)\n"} +{"Time":"2022-12-07T09:15:32.264549+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.26455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.264552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.259 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.264555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.260 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.264557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.260 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"resource_count\": 1, \"resources\": [{\"name\": \"dev\", \"type\": \"google_compute_instance\", \"agents\": [{\"id\": \"bec8aa49-c381-49de-86cd-445a2234c30b\", \"Auth\": {\"Token\": \"f900032b-8d13-43a0-977d-7d3009a614fb\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.266076+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.266088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.266092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.264 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"436.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dd6796b0-bdeb-4f0c-83c5-0c0d4b91c5bb\"}\n"} +{"Time":"2022-12-07T09:15:32.266096+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.266098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.266099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.265 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"af6fdad5-a2d1-4cc9-905d-00bab6512509\"}\n"} +{"Time":"2022-12-07T09:15:32.266102+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.266103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.26611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.265 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.244084ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"6f9ea24e-f87e-4106-b033-469c0090aa28\"}\n"} +{"Time":"2022-12-07T09:15:32.266112+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.266114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.266115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.265 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9bb6e25e-135e-44d1-91ef-e85d5f9813a6\"}\n"} +{"Time":"2022-12-07T09:15:32.266117+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.266118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.266119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.266 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d306a436-f8ec-4d36-82e9-c51c51c5a7f1\"}\n"} +{"Time":"2022-12-07T09:15:32.267771+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.267779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.267781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0af4c10d-7f1e-45c0-8149-80a38a4b0e60\"}\n"} +{"Time":"2022-12-07T09:15:32.272454+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.272465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.272468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.271 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.272471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.272 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.272473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.272 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.282336+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.282383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.28239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.282399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.282458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:32.282642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.282651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.282657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.282662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.282718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:32.283411+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.283436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.283444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.283 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"486.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"017bdc77-7d26-4d66-9e65-1c9ff01e2231\"}\n"} +{"Time":"2022-12-07T09:15:32.283757+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.283768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.28377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.283 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.283773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.283 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.283779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.283 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.283781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.283 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.283783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.283 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.283785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.283 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.28422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.284 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"335.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fa05dbb7-d0df-419a-9220-156d47a58f80\"}\n"} +{"Time":"2022-12-07T09:15:32.284702+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.284719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.284728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.284 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"327.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8daf02ea-a45f-4ece-845b-0567e1e1b40b\"}\n"} +{"Time":"2022-12-07T09:15:32.285614+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.285635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.285641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"471.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a5d4fb0b-2a07-4904-a50c-9f602349e275\"}\n"} +{"Time":"2022-12-07T09:15:32.285648+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.285651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.285655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"506.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53ab4018-4e88-48c6-bcf5-2542dc0d3eea\"}\n"} +{"Time":"2022-12-07T09:15:32.285672+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.285684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.285701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a44847e-b819-46a3-b056-0bafd6d7ad22\"}\n"} +{"Time":"2022-12-07T09:15:32.285747+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.285758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.285762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"567.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5f74850-4fe3-4e87-8bbe-8d5e1e4f0c0d\"}\n"} +{"Time":"2022-12-07T09:15:32.285768+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.285769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.285771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} +{"Time":"2022-12-07T09:15:32.307472+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes"} +{"Time":"2022-12-07T09:15:32.307487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes","Output":"=== CONT Test_sshConfigExecEscape/quotes\n"} +{"Time":"2022-12-07T09:15:32.307512+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.307515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.307538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.307 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"68603cdf-bd32-461b-97de-9196aaf39681\"}\n"} +{"Time":"2022-12-07T09:15:32.310253+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.310263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.310266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"485.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e36372ac-53a3-4dc6-be5a-99eb13f0779b\"}\n"} +{"Time":"2022-12-07T09:15:32.310269+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.310271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.310273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"406.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9055cd4e-4fd4-4184-931c-6a4f6e816fe8\"}\n"} +{"Time":"2022-12-07T09:15:32.310275+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.310276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.310278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"478.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"66135300-19cb-4e94-af87-fd35e6c38ccf\"}\n"} +{"Time":"2022-12-07T09:15:32.310282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.310289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.310291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"499.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a9e399a9-0071-4986-bf60-898b89b4b85b\"}\n"} +{"Time":"2022-12-07T09:15:32.31041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} +{"Time":"2022-12-07T09:15:32.310472+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.310477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.310479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd9fa1fa-6a1a-470d-b448-6603d8986f53\"}\n"} +{"Time":"2022-12-07T09:15:32.310483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.310511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.310515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.310553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.31059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.310792+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.310797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.3108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db49dc0d-35d8-4c17-87c3-a0f8485e49c3\"}\n"} +{"Time":"2022-12-07T09:15:32.322825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.322 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.322844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.322 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.322852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.322 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.322874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.322 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.322932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.322 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.328671+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.32868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.328682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.328 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"10.708µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:32.332801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.332 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.332855+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.332858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.33286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.332 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"78549fdb-6798-44a7-bcc1-7aef71fe295a\"}\n"} +{"Time":"2022-12-07T09:15:32.332955+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.332962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.332964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.332 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.333806+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.333816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.33382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.333 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.333832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.333 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.333839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.333 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.333875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.333 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} +{"Time":"2022-12-07T09:15:32.334218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fc890f63-f767-4108-84ff-814836e38d2c\"}\n"} +{"Time":"2022-12-07T09:15:32.334372+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.334376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.334378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12946aee-0fb0-4ad4-8a69-9d791ddfd415\"}\n"} +{"Time":"2022-12-07T09:15:32.334785+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.33479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.334793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/organizations/8c874e05-3ba0-47f6-b7ca-c1da0740bdf1/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"28be9976-f60d-4dd2-a6c5-2c9d1b9daaee\"}\n"} +{"Time":"2022-12-07T09:15:32.334873+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.33488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.334882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd4f0d29-d13c-4809-8e63-1c5f5051d32d\"}\n"} +{"Time":"2022-12-07T09:15:32.33493+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.334935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.334938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"95f27d02-7593-4c02-b58c-fd22655796cf\"}\n"} +{"Time":"2022-12-07T09:15:32.335085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} +{"Time":"2022-12-07T09:15:32.335335+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.335342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.335344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"332.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"696dc43b-026e-4cb5-a6d2-3967121ba992\"}\n"} +{"Time":"2022-12-07T09:15:32.335466+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.335471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.335474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"338.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d4c5fdb4-57ce-4b97-8467-ecf179f92f1f\"}\n"} +{"Time":"2022-12-07T09:15:32.335759+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.335765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.335768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/organizations/8c874e05-3ba0-47f6-b7ca-c1da0740bdf1/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"719.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cf5e2a14-31a0-4221-9abb-240bb8feeb22\"}\n"} +{"Time":"2022-12-07T09:15:32.335859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" state_test.go:67: waiting for workspace build job 83d31ca2-38b6-4423-8af7-65c27fd3db93\n"} +{"Time":"2022-12-07T09:15:32.357479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.357494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.357497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.357 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"41686fd7-6ba6-4033-a937-c86f8a418f51\"}\n"} +{"Time":"2022-12-07T09:15:32.359625+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.359634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.359637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.359 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"000fc0b1-2899-4ce9-a1e2-a0badccde320\"}\n"} +{"Time":"2022-12-07T09:15:32.359916+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.35992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.359922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.359 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"25db42e5-5439-48e6-8f1b-a7808b355660\"}\n"} +{"Time":"2022-12-07T09:15:32.359926+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.359928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.359929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.359 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ad1a71b-ed36-4263-8ed0-bb8cdd26ebe6\"}\n"} +{"Time":"2022-12-07T09:15:32.360058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} +{"Time":"2022-12-07T09:15:32.361489+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.361504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.361507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.121ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"cd990cee-5ff0-42e5-a912-46228b1bf0f7\"}\n"} +{"Time":"2022-12-07T09:15:32.36151+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.361512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.361521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.229458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f01f0162-37f3-4e8b-8a9d-5eb429d0cba4\"}\n"} +{"Time":"2022-12-07T09:15:32.361523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.361525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.361528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.361529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.361533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.361925+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.361933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.361935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"615.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"93fda724-c11f-4493-99ab-f9374a793aff\"}\n"} +{"Time":"2022-12-07T09:15:32.374264+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.374284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.374288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.374 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.374293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.374 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.374295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.374 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.374301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.374 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.374418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.374 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.383009+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.38303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.383034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.382 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.383037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.382 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.383041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.383044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.383073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.383087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.383105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.38326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.383302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.383551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.383556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.383559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"530.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"55ee34fb-a36a-4b4d-931c-c813eb9c234b\"}\n"} +{"Time":"2022-12-07T09:15:32.384385+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.384388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.384389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.384 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"856f675e-1da7-4cfc-96ef-7d9f51a35a4a\"}\n"} +{"Time":"2022-12-07T09:15:32.384852+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.384858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.384863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.384 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7981886-0e62-4a39-ab45-0e2c4fc4aa8c\"}\n"} +{"Time":"2022-12-07T09:15:32.384919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.384922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.384925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.384 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6c2be084-3ca7-4fa4-aad5-c2ca6ab44e36\"}\n"} +{"Time":"2022-12-07T09:15:32.384972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} +{"Time":"2022-12-07T09:15:32.385273+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.385276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.385278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.385 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"338.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a45ef4a3-125f-4e9d-8beb-eaecdb4022fd\"}\n"} +{"Time":"2022-12-07T09:15:32.385394+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.385399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.385401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.385 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"308.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f6c26676-29b2-43ae-964c-ba1c00fca312\"}\n"} +{"Time":"2022-12-07T09:15:32.386405+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.386411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.386413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0dcab739-2655-4372-9fd1-27aeae77c6cb\"}\n"} +{"Time":"2022-12-07T09:15:32.407452+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.407468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.407471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.407 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"350.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c80a3fa-efd4-4030-b8ea-929339a64d8b\"}\n"} +{"Time":"2022-12-07T09:15:32.408201+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces"} +{"Time":"2022-12-07T09:15:32.408211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces","Output":"=== CONT Test_sshConfigExecEscape/spaces\n"} +{"Time":"2022-12-07T09:15:32.410748+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.410756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.41076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"896.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e0606a91-70e4-42a6-b0ac-27b79b70324b\"}\n"} +{"Time":"2022-12-07T09:15:32.410923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.410926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.410929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"934.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a21224d8-0886-4f7e-b9bc-8d00acfdfd66\"}\n"} +{"Time":"2022-12-07T09:15:32.411033+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.411055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.411063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"884.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c95462a8-b6e4-431c-bfc7-80982683936c\"}\n"} +{"Time":"2022-12-07T09:15:32.411586+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.411594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.411596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} +{"Time":"2022-12-07T09:15:32.412116+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.412124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.412127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.616958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"355b99b5-c73a-4d25-94b5-353938644782\"}\n"} +{"Time":"2022-12-07T09:15:32.412131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.412134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.412136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.412 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.41214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.430667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"410a1a46-6f58-48cd-91f4-19dc72eb6537\"}\n"} +{"Time":"2022-12-07T09:15:32.412169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.412 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:32.412236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.412 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.412245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.412 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} +{"Time":"2022-12-07T09:15:32.412561+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.41257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.412573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"446.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1a163ec2-8a0e-420b-a85e-2facef65598c\"}\n"} +{"Time":"2022-12-07T09:15:32.425049+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.425068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.425071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.424 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.425076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.425 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.425104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.425 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} +{"Time":"2022-12-07T09:15:32.433321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.433327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.433331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.433 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"481.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"271a2d9b-e904-4c15-8ff6-a8af57d10445\"}\n"} +{"Time":"2022-12-07T09:15:32.433471+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.433476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.433479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.433 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.433495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.433 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.43352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.433 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.433549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.433 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.433572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.433 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.433627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.433 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.434572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.434 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"478.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b8bba761-d8d4-490e-914e-7a9bb42cc5fa\"}\n"} +{"Time":"2022-12-07T09:15:32.435052+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.43506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.435063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.434 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"463.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9f4e5d8f-4bba-4e31-8325-260c4dfabbdc\"}\n"} +{"Time":"2022-12-07T09:15:32.435162+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.435168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.435172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"566.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"38a52e99-5094-4bc4-8210-74b8074e0a1e\"}\n"} +{"Time":"2022-12-07T09:15:32.435286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} +{"Time":"2022-12-07T09:15:32.435492+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.435506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.435512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"510.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2fb78a1a-190b-4b83-82d3-41a8b3d45a32\"}\n"} +{"Time":"2022-12-07T09:15:32.43563+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.435635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.435638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"459.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1114634d-0510-4435-8c39-e62a7994c1f4\"}\n"} +{"Time":"2022-12-07T09:15:32.435663+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.435667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.435671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.435 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:446\u003e\t(*agent).init\tgenerating host key\n"} +{"Time":"2022-12-07T09:15:32.436454+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.43646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.436462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.436 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"435.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2760b61d-2d61-46b6-a279-c9538260c6b8\"}\n"} +{"Time":"2022-12-07T09:15:32.438823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} +{"Time":"2022-12-07T09:15:32.438829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} +{"Time":"2022-12-07T09:15:32.438832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.417µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"82964ad6-e8d5-4495-9e82-e0a66efced86\"}\n"} +{"Time":"2022-12-07T09:15:32.439084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.439 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b8186eab-b096-4747-b52c-c92488537a84\"}\n"} +{"Time":"2022-12-07T09:15:32.439819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.439 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/users/me/workspace/xenodochial-fermat6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"448dd081-c47d-4e5c-a1ab-e07c416efcb8\"}\n"} +{"Time":"2022-12-07T09:15:32.440243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.440 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:32.441167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:32.441217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow","Output":"--- PASS: TestScheduleShow (0.00s)\n"} +{"Time":"2022-12-07T09:15:32.441228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" --- PASS: TestScheduleShow/NotFound (0.37s)\n"} +{"Time":"2022-12-07T09:15:32.441232+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Elapsed":0.37} +{"Time":"2022-12-07T09:15:32.441237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" --- PASS: TestScheduleShow/Manual (0.70s)\n"} +{"Time":"2022-12-07T09:15:32.44124+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Elapsed":0.7} +{"Time":"2022-12-07T09:15:32.441243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" --- PASS: TestScheduleShow/Enabled (1.18s)\n"} +{"Time":"2022-12-07T09:15:32.441245+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Elapsed":1.18} +{"Time":"2022-12-07T09:15:32.441248+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow","Elapsed":0} +{"Time":"2022-12-07T09:15:32.44125+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} +{"Time":"2022-12-07T09:15:32.441252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} +{"Time":"2022-12-07T09:15:32.447694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.447 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"145.166µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"84e6daad-6746-44a1-adbc-3737efca6047\"}\n"} +{"Time":"2022-12-07T09:15:32.447956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.447 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"46.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"fc3299a3-fb69-4006-9b01-48b31b525acd\"}\n"} +{"Time":"2022-12-07T09:15:32.451049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.450 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.917µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"77b57328-775c-443f-a7d1-11fcd301d642\"}\n"} +{"Time":"2022-12-07T09:15:32.451258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.451 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1d66b71a-1c19-4612-82ea-0a7080f4ceee\"}\n"} +{"Time":"2022-12-07T09:15:32.452049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.452 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"599.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c0be797-32ed-4889-8f61-45a57691af04\"}\n"} +{"Time":"2022-12-07T09:15:32.452303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.452 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/organizations/82053ff4-d217-4a07-8db0-0c667b77a815/templates/my-template\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"39.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"1da04ad9-933b-49d0-b0cb-791aef9ca9c0\"}\n"} +{"Time":"2022-12-07T09:15:32.452441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" templatecreate_test.go:78: 2022-12-07 08:15:32.452: cmd: matched \"Create and upload\" = \"\u003e Create and upload\"\n"} +{"Time":"2022-12-07T09:15:32.452455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" templatecreate_test.go:80: 2022-12-07 08:15:32.452: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:32.452505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.452: cmd: stdout: \"\u003e Create and upload \\\"/tmp/TestTemplateCreateCreate2343441089/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:32.453659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.453 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"214d35b0-a699-4ec4-bd4f-6ab06cbdbb92\"}\n"} +{"Time":"2022-12-07T09:15:32.454511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/organizations/82053ff4-d217-4a07-8db0-0c667b77a815/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"659.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c80692e7-bf3a-474d-a402-81e06cb31abe\"}\n"} +{"Time":"2022-12-07T09:15:32.454666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.454: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:32.455072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.455 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/templateversions/ebf6bb22-f9eb-46ba-b64d-27c55d509413\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c286f60-7d16-4314-9efb-42f17fdb5cab\"}\n"} +{"Time":"2022-12-07T09:15:32.457739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.457745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.457748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"447.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d717ba07-6e5a-4307-a64d-925e1f86ccb8\"}\n"} +{"Time":"2022-12-07T09:15:32.459519+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.459526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.459529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.459 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:138\u003e\t(*agent).runLoop\trunning loop\n"} +{"Time":"2022-12-07T09:15:32.460079+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.460083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.460086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"471.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d7f2e779-0f2a-4df6-b241-ba302ec94c3c\"}\n"} +{"Time":"2022-12-07T09:15:32.460229+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.460238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.460242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.460 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"8a2357be-9070-463a-8c18-eac6844ced27\", \"agent_id\": \"c1a86b86-6b5f-45b8-b63d-3df2687a2c40\", \"agent_version\": \"v0.0.0-devel\"}\n"} +{"Time":"2022-12-07T09:15:32.460245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"124.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8a2357be-9070-463a-8c18-eac6844ced27\"}\n"} +{"Time":"2022-12-07T09:15:32.460348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"80.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1f943e66-371c-4cd1-81e9-63d1ec235fe1\"}\n"} +{"Time":"2022-12-07T09:15:32.460528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"79.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d71f2682-a9db-4284-9492-f30e15504955\"}\n"} +{"Time":"2022-12-07T09:15:32.460595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.460 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:177\u003e\t(*agent).run\tfetched metadata\n"} +{"Time":"2022-12-07T09:15:32.460683+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.460688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.460691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"523.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1d07e0df-8d80-4835-b0f5-ce55b4bf4cc0\"}\n"} +{"Time":"2022-12-07T09:15:32.460837+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.460844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.460849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"491.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4fe59e4f-747a-45f5-b12c-25bcccb8f13f\"}\n"} +{"Time":"2022-12-07T09:15:32.460984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} +{"Time":"2022-12-07T09:15:32.462019+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.462024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.462026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.461 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"563.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"df63f1ad-20c6-4df5-880d-64f22bf49b91\"}\n"} +{"Time":"2022-12-07T09:15:32.46326+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.463266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.463269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.463 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:402\u003e\t(*agent).runCoordinator\tconnected to coordination server\n"} +{"Time":"2022-12-07T09:15:32.463327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.463 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"162cfbdb-993f-4a9d-bd47-8b371c49bd25\", \"agent\": {\"id\": \"c1a86b86-6b5f-45b8-b63d-3df2687a2c40\", \"created_at\": \"2022-12-07T08:15:32.124648Z\", \"updated_at\": \"2022-12-07T08:15:32.124648Z\", \"name\": \"example\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"9cc9b5ff-5e83-48f8-ab28-021e0b2ca898\", \"auth_token\": \"6518c7b9-f2f7-4aa4-b8da-eb504ffb9753\", \"auth_instance_id\": {\"String\": \"\", \"Valid\": false}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"director"} +{"Time":"2022-12-07T09:15:32.463343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"y\": \"\", \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} +{"Time":"2022-12-07T09:15:32.468851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape","Output":"--- PASS: Test_sshConfigExecEscape (0.00s)\n"} +{"Time":"2022-12-07T09:15:32.46886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces","Output":" --- PASS: Test_sshConfigExecEscape/no_spaces (0.06s)\n"} +{"Time":"2022-12-07T09:15:32.468864+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces","Elapsed":0.06} +{"Time":"2022-12-07T09:15:32.468867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails","Output":" --- PASS: Test_sshConfigExecEscape/newline_fails (0.00s)\n"} +{"Time":"2022-12-07T09:15:32.46887+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails","Elapsed":0} +{"Time":"2022-12-07T09:15:32.468872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs","Output":" --- PASS: Test_sshConfigExecEscape/tabs (0.05s)\n"} +{"Time":"2022-12-07T09:15:32.468874+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs","Elapsed":0.05} +{"Time":"2022-12-07T09:15:32.468876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes","Output":" --- PASS: Test_sshConfigExecEscape/backslashes (0.07s)\n"} +{"Time":"2022-12-07T09:15:32.468879+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes","Elapsed":0.07} +{"Time":"2022-12-07T09:15:32.468881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes","Output":" --- PASS: Test_sshConfigExecEscape/quotes (0.10s)\n"} +{"Time":"2022-12-07T09:15:32.468883+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes","Elapsed":0.1} +{"Time":"2022-12-07T09:15:32.468884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces","Output":" --- PASS: Test_sshConfigExecEscape/spaces (0.06s)\n"} +{"Time":"2022-12-07T09:15:32.468886+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces","Elapsed":0.06} +{"Time":"2022-12-07T09:15:32.468888+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape","Elapsed":0} +{"Time":"2022-12-07T09:15:32.468889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.468891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.472139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.472 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"116.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"18ba74ce-3f90-4886-8e87-ead65838ff94\"}\n"} +{"Time":"2022-12-07T09:15:32.472329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.472 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"35.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9bd22ac7-9b47-40ce-91fb-24e82711ed8b\"}\n"} +{"Time":"2022-12-07T09:15:32.472979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.472 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"466.541µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7a34c595-4986-4470-ad1b-db1d78a44702\"}\n"} +{"Time":"2022-12-07T09:15:32.473695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.473 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/organizations/364a154c-ac78-426b-82ce-f48f9b1f5f90/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"531.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bcfc4213-a257-417e-8c28-777228733d51\"}\n"} +{"Time":"2022-12-07T09:15:32.473796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" state_test.go:113: waiting for template version job 16be6208-04bc-4c7e-bea0-71ceda9ee306\n"} +{"Time":"2022-12-07T09:15:32.483254+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.483263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.483265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.483 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"326.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f7ef31f3-72df-4a11-a53b-7885cc735d28\"}\n"} +{"Time":"2022-12-07T09:15:32.483773+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.483776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.483778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.483 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.483786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.483 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.483803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.483 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.4839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.483 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} +{"Time":"2022-12-07T09:15:32.484339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.484 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"309.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aef8c379-f8d6-460c-a89d-055f8de01483\"}\n"} +{"Time":"2022-12-07T09:15:32.484839+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.484843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.484844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.484 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"283.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"71f8ac2f-af41-4bea-a401-1e196c485b56\"}\n"} +{"Time":"2022-12-07T09:15:32.484847+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.484848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.48485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.484 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/organizations/2d62e2c5-c8aa-4495-906d-e4a682bc9913/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"290.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"757ba638-1078-4aeb-971e-5ca081a9bbc9\"}\n"} +{"Time":"2022-12-07T09:15:32.485035+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.485039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.48504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.484 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"444.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d2dfd77-4934-412e-90a1-64c17dcc6698\"}\n"} +{"Time":"2022-12-07T09:15:32.485569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.485 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaceagents/c1a86b86-6b5f-45b8-b63d-3df2687a2c40/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8165b2cf-846c-4824-86d2-5dfa1a434763\"}\n"} +{"Time":"2022-12-07T09:15:32.485687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.485692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.485694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.485 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/organizations/2d62e2c5-c8aa-4495-906d-e4a682bc9913/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"593.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"44d0bb32-88f6-416a-ba58-78074bd86ef9\"}\n"} +{"Time":"2022-12-07T09:15:32.485801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" state_test.go:91: waiting for workspace build job b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\n"} +{"Time":"2022-12-07T09:15:32.486303+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.486311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.486314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.486 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16fd27cf-0ba9-4a34-9b65-b5ef34cdc3ee\"}\n"} +{"Time":"2022-12-07T09:15:32.499779+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.499794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.499798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.499 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"417.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3226611b-4385-4ae9-9d50-4e3a25e39ac5\"}\n"} +{"Time":"2022-12-07T09:15:32.502984+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.502989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.50299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.502 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.503032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.503082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:32.503112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStop3343082525/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.503126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStop3343082525/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.503146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStop3343082525/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.503161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"workspace_name\": \"clever-merkle4\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:32.50329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.503295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.507369+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.507378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.507381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.507 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"832d3296-5ab1-498e-9ffd-216539764b41\"}\n"} +{"Time":"2022-12-07T09:15:32.51009+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.510096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.510098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"306.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e71f4c45-339e-43ba-9106-e63558799088\"}\n"} +{"Time":"2022-12-07T09:15:32.511338+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.511344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.511346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.511 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"65a46f99-154b-488f-94ef-2b4f435ee1be\"}\n"} +{"Time":"2022-12-07T09:15:32.511355+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.511357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.511358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.511 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"327.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"55b4ad79-8846-4957-bed2-c42a92cc273d\"}\n"} +{"Time":"2022-12-07T09:15:32.525174+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.525181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.525184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.525 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"235.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"698a5fb1-a2a4-4ba7-a180-0d85e38f93d1\"}\n"} +{"Time":"2022-12-07T09:15:32.53298+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.532992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.532993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"250µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a71afddf-40e5-4d09-9d5c-7320bfb4bd26\"}\n"} +{"Time":"2022-12-07T09:15:32.534938+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.534946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.534948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.534 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"241.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"76dc9006-91a5-489d-a37d-1874f2b240b4\"}\n"} +{"Time":"2022-12-07T09:15:32.5363+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.536303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.536305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"253.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ea5dc8c1-4692-4539-8652-a8918f424b61\"}\n"} +{"Time":"2022-12-07T09:15:32.536326+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.536328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.536329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8587654f-a98c-4c89-b7eb-7ca76cf5b0b7\"}\n"} +{"Time":"2022-12-07T09:15:32.547119+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} +{"Time":"2022-12-07T09:15:32.547124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} +{"Time":"2022-12-07T09:15:32.547126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.547 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:32.549413+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.549417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.549418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.549 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"256.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b815095b-fc7a-4164-92dd-f51a2d0a4344\"}\n"} +{"Time":"2022-12-07T09:15:32.553856+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.553862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.553864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.553 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.553867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.553 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.553884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.553 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.553899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.553 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.557477+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.557482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.557483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"235.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4cd2a549-c8eb-48d5-aef3-fda256fdeb67\"}\n"} +{"Time":"2022-12-07T09:15:32.560101+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.560108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.56011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.560 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"128f7dcc-5e46-4d69-8916-58379848403e\"}\n"} +{"Time":"2022-12-07T09:15:32.561319+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.561326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.561328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.561 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"294.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"86bdd0c4-fda9-4baf-bcb7-6219f5b108c5\"}\n"} +{"Time":"2022-12-07T09:15:32.561377+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.561382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.561386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.561 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"323.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"af95b49d-fca2-459e-8472-ed106312594f\"}\n"} +{"Time":"2022-12-07T09:15:32.572072+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.572086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.57209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.572 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:32.574524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.574 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1387d06-5acd-49f4-8a84-133ba632d280\"}\n"} +{"Time":"2022-12-07T09:15:32.583147+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.583153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.583155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.583 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"308.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3baf6864-3385-4584-b818-c221f52a66d9\"}\n"} +{"Time":"2022-12-07T09:15:32.584957+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.58496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.584962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.584 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9ef493e4-c596-4903-96ba-4269d68accd2\"}\n"} +{"Time":"2022-12-07T09:15:32.586278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.586281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.586283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"255.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a153375-2d9d-4709-a663-cca7b30740d0\"}\n"} +{"Time":"2022-12-07T09:15:32.586347+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.586355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.586357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dc5998e3-590c-424c-a0b0-7ae6c573e019\"}\n"} +{"Time":"2022-12-07T09:15:32.590103+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.590109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.590112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"9fb541ce-eb25-4201-9a31-3251900b658a\"}\n"} +{"Time":"2022-12-07T09:15:32.590123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"abb658b4-86d5-4a29-b441-54bc3dfd4c99\"}\n"} +{"Time":"2022-12-07T09:15:32.590572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.590: cmd: stdout: \"\\x1b[1mThe current executable path does not match the executable path found in $PATH.\\x1b[0m\\r\"\n"} +{"Time":"2022-12-07T09:15:32.59058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.590: cmd: stdout: \" | This may cause issues connecting to your workspace via SSH.\\r\"\n"} +{"Time":"2022-12-07T09:15:32.590584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.590: cmd: stdout: \" | \\tCurrent executable path: \\\"/tmp/go-build2871666910/b001/cli.test\\\"\\r\"\n"} +{"Time":"2022-12-07T09:15:32.590586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.590: cmd: stdout: \" | \\tExecutable path in $PATH: \\\"\\\"\\r\"\n"} +{"Time":"2022-12-07T09:15:32.590589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.590: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:32.597591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.597 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"7.277125ms\", \"status_code\": 200, \"latency_ms\": 7, \"request_id\": \"43b40716-4b42-4a23-aad0-5e347196119b\"}\n"} +{"Time":"2022-12-07T09:15:32.597624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} +{"Time":"2022-12-07T09:15:32.597633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} +{"Time":"2022-12-07T09:15:32.597636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.597713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.597769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:32.597806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateCreate2343441089/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.597827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"size_bytes\": 41, \"path\": \"/tmp/TestTemplateCreateCreate2343441089/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.597844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"size_bytes\": 41, \"path\": \"/tmp/TestTemplateCreateCreate2343441089/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.597864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateCreate2343441089/002/1861687875.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.597872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.597975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:32.598145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.598149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.598154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.598 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24e122e5-642c-494d-b7f0-cec7b3d6db72\"}\n"} +{"Time":"2022-12-07T09:15:32.598289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} +{"Time":"2022-12-07T09:15:32.598306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:32.59831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH2701562645/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:32.598311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:32.598372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" configssh_test.go:178: 2022-12-07 08:15:32.598: cmd: matched \"Continue?\" = \"\\x1b[1mThe current executable path does not match the executable path found in $PATH.\\x1b[0m\\r\\r\\n | This may cause issues connecting to your workspace via SSH.\\r\\r\\n | \\tCurrent executable path: \\\"/tmp/go-build2871666910/b001/cli.test\\\"\\r\\r\\n | \\tExecutable path in $PATH: \\\"\\\"\\r\\r\\n\\r\\n\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH2701562645/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} +{"Time":"2022-12-07T09:15:32.598379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" configssh_test.go:179: 2022-12-07 08:15:32.598: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:32.598396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:32.598422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:32.59871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} +{"Time":"2022-12-07T09:15:32.598716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"For example, try running:\"\n"} +{"Time":"2022-12-07T09:15:32.598718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:32.598719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"\\t$ ssh coder.optimistic-panini6\"\n"} +{"Time":"2022-12-07T09:15:32.600501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.600505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.600507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.600 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.414417ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"dd64bf91-6f6d-4be8-b100-5e22e2416300\"}\n"} +{"Time":"2022-12-07T09:15:32.60421+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.604216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.604218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.604 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.604473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.604 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.60449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.604 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.607849+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.607853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.607855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.607 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"448.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"98380ef6-5ea1-4d1e-b9e4-7f7eb997b858\"}\n"} +{"Time":"2022-12-07T09:15:32.61038+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.610387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.610389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.610 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62efdcd5-247d-4224-b1ad-4825198417da\"}\n"} +{"Time":"2022-12-07T09:15:32.611786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.611791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.611793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.611 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fc00c387-b454-4b6f-9d5f-32d3e6327943\"}\n"} +{"Time":"2022-12-07T09:15:32.611796+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.611798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.611799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.611 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d8e572b-9d13-4e67-a3d4-b26610217367\"}\n"} +{"Time":"2022-12-07T09:15:32.623326+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.623342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.623346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.623351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.623411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:32.623446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.623492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.623498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.623506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.62361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:32.624549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.624 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"19ea74c4-9de4-44b9-8917-ab788ee69dc2\"}\n"} +{"Time":"2022-12-07T09:15:32.633297+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.633303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.633305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.633 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"404.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a3e7a421-ea76-4e2b-960c-6b58332b3080\"}\n"} +{"Time":"2022-12-07T09:15:32.635042+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.635057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.635059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"306µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"23665a40-eecb-4b24-b30a-f858d7a8b42a\"}\n"} +{"Time":"2022-12-07T09:15:32.636382+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.636386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.636388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f027c193-625e-42d1-bfd2-13c657cc7b57\"}\n"} +{"Time":"2022-12-07T09:15:32.636451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.636456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.636458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ec723626-bd1b-4e31-8c21-29016f95810c\"}\n"} +{"Time":"2022-12-07T09:15:32.643243+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} +{"Time":"2022-12-07T09:15:32.643249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} +{"Time":"2022-12-07T09:15:32.643251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.643 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.709µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:32.648624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.648 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.648791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.648 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.64938+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.649385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.649388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.649 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"365.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3d57369d-59f3-4bf4-b5b2-2983fb57a8e6\"}\n"} +{"Time":"2022-12-07T09:15:32.654623+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.654629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.654639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.654 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.654643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.654 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.654654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.654 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.654676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.654 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.654731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.654 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.658235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.658242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.658244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.658 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"508.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"66b32846-d479-474b-955a-ee4c5bd3713c\"}\n"} +{"Time":"2022-12-07T09:15:32.660204+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.660208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.66021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8ad6e2bf-a8ed-4a69-90c8-a1d587da93bb\"}\n"} +{"Time":"2022-12-07T09:15:32.661302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.661307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.661309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49e0c9a0-0a95-4bb2-9494-27212bc7ca4f\"}\n"} +{"Time":"2022-12-07T09:15:32.661364+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.661367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.661369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5e82498e-384d-4990-af6c-97a0e73e861e\"}\n"} +{"Time":"2022-12-07T09:15:32.670872+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.670878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.670881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.670 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.792µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:32.673726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.673 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.673889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.673 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.674342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae983680-1fd5-49ce-93c9-8834b8039af3\"}\n"} +{"Time":"2022-12-07T09:15:32.674522+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} +{"Time":"2022-12-07T09:15:32.674527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} +{"Time":"2022-12-07T09:15:32.674529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaceagents/c1a86b86-6b5f-45b8-b63d-3df2687a2c40/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"86.932042ms\", \"status_code\": 101, \"latency_ms\": 86, \"request_id\": \"c9a45835-c512-41ce-933a-81fa200a1178\"}\n"} +{"Time":"2022-12-07T09:15:32.674653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"137.120042ms\", \"status_code\": 0, \"latency_ms\": 137, \"request_id\": \"61e12c28-d5f6-4b1e-a9c5-657c59dbddab\"}\n"} +{"Time":"2022-12-07T09:15:32.674783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:80: 2022-12-07 08:15:32.674: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:32.674791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"211.617791ms\", \"status_code\": 101, \"latency_ms\": 211, \"request_id\": \"162cfbdb-993f-4a9d-bd47-8b371c49bd25\"}\n"} +{"Time":"2022-12-07T09:15:32.674794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"161.2595ms\", \"status_code\": 0, \"latency_ms\": 161, \"request_id\": \"0788f72b-85bb-4270-8d90-e7f25e005945\"}\n"} +{"Time":"2022-12-07T09:15:32.674848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:80: 2022-12-07 08:15:32.674: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:32.674885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.674 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:32.675685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:32.675704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"--- PASS: TestConfigSSH (1.42s)\n"} +{"Time":"2022-12-07T09:15:32.675709+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Elapsed":1.42} +{"Time":"2022-12-07T09:15:32.675712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.675715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.678927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.678 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"99.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"dabb6b43-7097-4e91-bacf-d257722f0cd5\"}\n"} +{"Time":"2022-12-07T09:15:32.679106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.679 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"32µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e41b2c03-bf56-4d02-a7e9-1f6082bf2d10\"}\n"} +{"Time":"2022-12-07T09:15:32.67968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.679 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"397.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cbcd7c1d-b2ac-4ace-a28c-4ae9e368475e\"}\n"} +{"Time":"2022-12-07T09:15:32.680313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.680 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/organizations/59bd6974-a38e-4820-8466-c916354f4ec8/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"492.584µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"08836b1d-2310-4221-a96e-13366cb61e09\"}\n"} +{"Time":"2022-12-07T09:15:32.680387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" schedule_test.go:233: waiting for template version job 78326d1b-fd62-463c-8f55-ccecb5cf210d\n"} +{"Time":"2022-12-07T09:15:32.683726+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.683737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.68374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.683 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"387.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a9e0600-0750-4e86-8853-70dad088ed5d\"}\n"} +{"Time":"2022-12-07T09:15:32.685536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.68554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.685542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.685 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"331.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d8509c8-049c-42d3-a56b-65f51b7ccbc0\"}\n"} +{"Time":"2022-12-07T09:15:32.686837+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.686847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.686849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.686 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24ca4eae-f27e-4cdb-93b3-fc722d426914\"}\n"} +{"Time":"2022-12-07T09:15:32.686879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.686882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.686883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.686 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1954ba6f-6440-4cbc-905a-9f9d9b43a7fc\"}\n"} +{"Time":"2022-12-07T09:15:32.69879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} +{"Time":"2022-12-07T09:15:32.698793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} +{"Time":"2022-12-07T09:15:32.698799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.698828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.698839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.698846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.698861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.698879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.698945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.69895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:32.698985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:32.698994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:32.699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:32.699011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:32.699096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.699 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.699124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:32.699131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.699 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.699154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:32.699195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:32.699324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.699: cmd: stdout: \"\\x1b[1A\\r✔ Queued [142ms]\"\n"} +{"Time":"2022-12-07T09:15:32.699333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.699: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:32.699337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.699: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} +{"Time":"2022-12-07T09:15:32.699351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.699: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:32.699356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.699: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [51ms]\"\n"} +{"Time":"2022-12-07T09:15:32.699358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.699: cmd: stdout: \"⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:32.700749+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.700755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.700767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.700 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"513µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cdcb2d05-0e2b-4059-8ff9-59ddc59b3a62\"}\n"} +{"Time":"2022-12-07T09:15:32.705372+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.705376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.705378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.705 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.705386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.705 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.705389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.705 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.705392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.705 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.705424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.705 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.706001+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.706009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.706011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a2998dff-2108-4498-9b8e-cc7e202710a8\"}\n"} +{"Time":"2022-12-07T09:15:32.707268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.707273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.707275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.707 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"269µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"afdc587f-5446-4f28-9967-7f1ee5eebe8e\"}\n"} +{"Time":"2022-12-07T09:15:32.708723+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.70873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.708733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" speedtest_test.go:31: waiting for workspace agents (workspace c0e73af8-5424-44e9-a1f4-62af613fb00a)\n"} +{"Time":"2022-12-07T09:15:32.709925+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.70993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.709931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.709 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"275.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"37e3cc2f-b449-4ee3-8c18-ec9882d670ea\"}\n"} +{"Time":"2022-12-07T09:15:32.711338+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.711346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.711349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.711 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"01415467-053d-4ec6-b013-d4f03afafccc\"}\n"} +{"Time":"2022-12-07T09:15:32.71145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.711455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.711457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.711 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2baea31e-9740-4e1d-ab79-cf60ce9e00ab\"}\n"} +{"Time":"2022-12-07T09:15:32.724278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.724289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.724294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.724298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.72431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.724334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.724346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.724376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.724406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.724543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.724589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.724735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"74882f53-d177-42ae-963f-73847fa85c4e\"}\n"} +{"Time":"2022-12-07T09:15:32.731604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.731614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.731619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.731 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d15647e0-c9ad-41c1-9aa9-32bdf115cf5b\"}\n"} +{"Time":"2022-12-07T09:15:32.732131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.732134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.732137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.732 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fe3d4f99-1939-4085-bd36-a7529cabaee3\"}\n"} +{"Time":"2022-12-07T09:15:32.734828+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.734832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.734834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.734 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e8f5cb5e-28e7-4849-bde7-b2fb5b18b122\"}\n"} +{"Time":"2022-12-07T09:15:32.735191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.735194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.7352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.735 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"408.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20ab6b70-d0b2-4c98-83d6-889610214c83\"}\n"} +{"Time":"2022-12-07T09:15:32.73528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:32.736345+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.736349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.73635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"257.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d735be5c-91d3-4653-8664-3130c0513111\"}\n"} +{"Time":"2022-12-07T09:15:32.736366+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.736368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.736369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"266.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9bac4531-4a62-4240-8a1b-6717820d250a\"}\n"} +{"Time":"2022-12-07T09:15:32.749783+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} +{"Time":"2022-12-07T09:15:32.749794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} +{"Time":"2022-12-07T09:15:32.749797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.7498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.749802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.749811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.749812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.750021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:32.750033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:32.750035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:32.750036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:32.750038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:32.75004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.750049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:32.750132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.750: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:32.750138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.750: cmd: stdout: \"✔ Detecting persistent resources [0ms]\"\n"} +{"Time":"2022-12-07T09:15:32.75014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.750: cmd: stdout: \"⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:32.750146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.750: cmd: stdout: \"\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\"\n"} +{"Time":"2022-12-07T09:15:32.750148+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.75015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.750152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.750 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5ef76bb7-7a47-4d2e-b18f-e91fea970279\"}\n"} +{"Time":"2022-12-07T09:15:32.750156+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} +{"Time":"2022-12-07T09:15:32.750158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} +{"Time":"2022-12-07T09:15:32.75016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.750: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:32.755612+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.755627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.755631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.755 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.755634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.755 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.755674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.755 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} +{"Time":"2022-12-07T09:15:32.75609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.756103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.756106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.756 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0d7dbe4-9292-41c3-9010-18208a5c4b4b\"}\n"} +{"Time":"2022-12-07T09:15:32.757241+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.757244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.757247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8415b2a8-b992-489b-bec1-c121054c5b44\"}\n"} +{"Time":"2022-12-07T09:15:32.759407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.75941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.759412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"367.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a9d78e88-55c9-45ef-96a5-d84cf2ca8441\"}\n"} +{"Time":"2022-12-07T09:15:32.75952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:32.759956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.75996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.759962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f4859680-f601-467a-81eb-aea872c1b3c6\"}\n"} +{"Time":"2022-12-07T09:15:32.761463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.761471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.761474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.761 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"caf1df92-9f10-47a7-a17e-47513fa3c12c\"}\n"} +{"Time":"2022-12-07T09:15:32.761477+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.761479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.76148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.761 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"91c2b548-ec76-41f1-a27a-b00c17668216\"}\n"} +{"Time":"2022-12-07T09:15:32.762176+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} +{"Time":"2022-12-07T09:15:32.762183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} +{"Time":"2022-12-07T09:15:32.762186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.762 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"28.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"14be0303-d02c-44c8-b311-d20e7f4f7f28\"}\n"} +{"Time":"2022-12-07T09:15:32.762342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.762 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c0c40f1-0616-44d7-9a35-386944d77489\"}\n"} +{"Time":"2022-12-07T09:15:32.762841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.762 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/users/me/workspace/clever-merkle4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae671a91-b36e-489e-a51c-935daa5a5264\"}\n"} +{"Time":"2022-12-07T09:15:32.763316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.763 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspaces/09ade267-8600-474c-9302-d522dd1c9d54/ttl\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.375µs\", \"status_code\": 204, \"latency_ms\": 0, \"request_id\": \"48ad464c-ea9c-4687-be8d-40b1664caaed\"}\n"} +{"Time":"2022-12-07T09:15:32.763773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.763 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/users/me/workspace/clever-merkle4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"270.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c8f174a-6dd1-41be-a34d-c867d93ffb7d\"}\n"} +{"Time":"2022-12-07T09:15:32.765785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.959µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"fee403b9-117f-4c4f-ac01-76bd740ceb90\"}\n"} +{"Time":"2022-12-07T09:15:32.765935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a63fb729-8c9a-408e-8158-f43666dcb350\"}\n"} +{"Time":"2022-12-07T09:15:32.766339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.766 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/users/me/workspace/clever-merkle4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"190be580-83b7-41b7-85c5-78ae52ceed03\"}\n"} +{"Time":"2022-12-07T09:15:32.766722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.766 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspaces/09ade267-8600-474c-9302-d522dd1c9d54/ttl\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"237.791µs\", \"status_code\": 204, \"latency_ms\": 0, \"request_id\": \"9df5cbfc-806c-4a05-ba48-d262b25c870c\"}\n"} +{"Time":"2022-12-07T09:15:32.767081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.767 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/users/me/workspace/clever-merkle4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"247.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f3e345d0-6c78-4817-999a-24d10b9ed28b\"}\n"} +{"Time":"2022-12-07T09:15:32.767306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.767 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:32.768164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:32.768195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"--- PASS: TestScheduleStop (1.52s)\n"} +{"Time":"2022-12-07T09:15:32.7682+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Elapsed":1.52} +{"Time":"2022-12-07T09:15:32.768204+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header"} +{"Time":"2022-12-07T09:15:32.768206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header","Output":"=== CONT TestRoot/Header\n"} +{"Time":"2022-12-07T09:15:32.770542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version"} +{"Time":"2022-12-07T09:15:32.770546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version","Output":"=== CONT TestRoot/Version\n"} +{"Time":"2022-12-07T09:15:32.772162+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:32.772167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:32.774972+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.775016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.775027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.774 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.775029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.774 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.775032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.774 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.775034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.774 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.775039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.774 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.775086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.775 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.775782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:32.775789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:32.775798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.775 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"495d965c-2f99-4a9e-9ab0-e01b3860273b\"}\n"} +{"Time":"2022-12-07T09:15:32.776041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.775 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"50.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c860e2dd-4f7a-477c-8821-a8b44100b94d\"}\n"} +{"Time":"2022-12-07T09:15:32.776364+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.776371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.776373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.776 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"502µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"076313ec-78d1-44a0-9b15-0cb4004686b2\"}\n"} +{"Time":"2022-12-07T09:15:32.776602+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:32.776606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:32.776608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.776 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a3b86c64-b757-458c-bc3f-7e4ff3fbe671\"}\n"} +{"Time":"2022-12-07T09:15:32.77732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.777 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/organizations/e6817e67-621a-4aab-b61a-930024486eaf/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"577.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4c7a2066-afdb-4139-8dd2-a207ccf9cd78\"}\n"} +{"Time":"2022-12-07T09:15:32.777405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" schedule_test.go:310: waiting for template version job 2bab1cf6-fb75-4a9f-87af-27c43b5242d1\n"} +{"Time":"2022-12-07T09:15:32.777826+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.777831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.777833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.777 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:32.781754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.781 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7dba56ad-c343-4b7d-b9a6-91ae1b6199eb\"}\n"} +{"Time":"2022-12-07T09:15:32.782599+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.782603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.782605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.782 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a01d8467-5985-4502-834b-ad1ae01a57f3\"}\n"} +{"Time":"2022-12-07T09:15:32.785069+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.785076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.785078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"938fe290-18ad-404d-8099-e3a2bd23ed5e\"}\n"} +{"Time":"2022-12-07T09:15:32.785168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:32.787091+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.787095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.787096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.787 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5fb2aee1-362d-44be-85db-3dc9b0b87ce7\"}\n"} +{"Time":"2022-12-07T09:15:32.787099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.7871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.787102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.787 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"338µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"146b0a6c-45a4-4fc8-97f6-00b38e5faecc\"}\n"} +{"Time":"2022-12-07T09:15:32.799391+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.799395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.799396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.799 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c740b17b-0f6e-47d3-935c-e9bfe9173229\"}\n"} +{"Time":"2022-12-07T09:15:32.800172+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} +{"Time":"2022-12-07T09:15:32.800174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} +{"Time":"2022-12-07T09:15:32.800177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.800202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [INFO]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:32.800227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [INFO]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:32.80025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.800275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.800315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.800319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.800345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} +{"Time":"2022-12-07T09:15:32.800571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/templateversions/ebf6bb22-f9eb-46ba-b64d-27c55d509413/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.769ms\", \"status_code\": 101, \"latency_ms\": 344, \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\"}\n"} +{"Time":"2022-12-07T09:15:32.801573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.801 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/templateversions/ebf6bb22-f9eb-46ba-b64d-27c55d509413\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a9318abd-6bd0-4b42-94a3-fed78e094a3f\"}\n"} +{"Time":"2022-12-07T09:15:32.801687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.801: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [101ms]\"\n"} +{"Time":"2022-12-07T09:15:32.802052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.802 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/templateversions/ebf6bb22-f9eb-46ba-b64d-27c55d509413\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3e27ce90-dd15-4a8c-b9b1-3fd00b3b834f\"}\n"} +{"Time":"2022-12-07T09:15:32.802521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.802 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/templateversions/ebf6bb22-f9eb-46ba-b64d-27c55d509413/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"264.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53ef847f-f002-40f2-80bc-c7d034262c8e\"}\n"} +{"Time":"2022-12-07T09:15:32.802794+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:32.802798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:32.802801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.802 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"249.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"78b1ea27-fdb3-4692-974a-806160f5e5a5\"}\n"} +{"Time":"2022-12-07T09:15:32.802981+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} +{"Time":"2022-12-07T09:15:32.802984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} +{"Time":"2022-12-07T09:15:32.802987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.802 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/templateversions/ebf6bb22-f9eb-46ba-b64d-27c55d509413/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf01baaf-2355-473c-90bb-5f17164dbaf2\"}\n"} +{"Time":"2022-12-07T09:15:32.803382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.803 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/templateversions/ebf6bb22-f9eb-46ba-b64d-27c55d509413/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"250.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e1d5150e-5d4e-468d-9e62-e692610962f3\"}\n"} +{"Time":"2022-12-07T09:15:32.803522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"┌────────────────────────────┐\"\n"} +{"Time":"2022-12-07T09:15:32.803528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"│ Template Preview │\"\n"} +{"Time":"2022-12-07T09:15:32.80353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"├────────────────────────────┤\"\n"} +{"Time":"2022-12-07T09:15:32.803533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"│ RESOURCE │\"\n"} +{"Time":"2022-12-07T09:15:32.803535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"├────────────────────────────┤\"\n"} +{"Time":"2022-12-07T09:15:32.803537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"│ \\x1b[1mcompute.main\\x1b[0m │\"\n"} +{"Time":"2022-12-07T09:15:32.803539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"│ └─ smith (linux, i386) │\"\n"} +{"Time":"2022-12-07T09:15:32.803541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"└────────────────────────────┘\"\n"} +{"Time":"2022-12-07T09:15:32.803611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" templatecreate_test.go:78: 2022-12-07 08:15:32.803: cmd: matched \"compute.main\" = \" \\\"/tmp/TestTemplateCreateCreate2343441089/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [142ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [0ms]\\r\\n⧗ \\x1b[;mParsing template parameters\\x1b[0m \\r\\n\\x1b[1A\\r✔ Parsing template parameters [51ms]\\r\\n⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \\r\\n \\r\\n✔ Detecting persistent resources [0ms]\\r\\n⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \\r\\n\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Cleaning Up [101ms]\\r\\n┌────────────────────────────┐\\r\\n│ Template Preview │\\r\\n├────────────────────────────┤\\r\\n│ RESOURCE │\\r\\n├──────────────────────────"} +{"Time":"2022-12-07T09:15:32.803628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"──┤\\r\\n│ \\x1b[1mcompute.main\"\n"} +{"Time":"2022-12-07T09:15:32.803631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" templatecreate_test.go:78: 2022-12-07 08:15:32.803: cmd: matched \"smith (linux, i386)\" = \"\\x1b[0m │\\r\\n│ └─ smith (linux, i386)\"\n"} +{"Time":"2022-12-07T09:15:32.803643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" templatecreate_test.go:78: 2022-12-07 08:15:32.803: cmd: matched \"Confirm create?\" = \" │\\r\\n└────────────────────────────┘\\r\\n\u003e Confirm create?\"\n"} +{"Time":"2022-12-07T09:15:32.803647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" templatecreate_test.go:80: 2022-12-07 08:15:32.803: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:32.803673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"\u003e Confirm create? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:32.80406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/organizations/82053ff4-d217-4a07-8db0-0c667b77a815/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"255.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"56c0c345-1b73-4e58-bb6a-f44c262348ba\"}\n"} +{"Time":"2022-12-07T09:15:32.804167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.804: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:32.804175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.804: cmd: stdout: \"The my-template template has been created at Dec 7 09:15:32! Developers can \"\n"} +{"Time":"2022-12-07T09:15:32.804185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.804: cmd: stdout: \"provision a workspace with this template using: \"\n"} +{"Time":"2022-12-07T09:15:32.804189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.804: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:32.80419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.804: cmd: stdout: \" \\x1b[;mcoder create --template=\\\"my-template\\\" [workspace name]\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:32.804193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.804: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:32.804197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:80: 2022-12-07 08:15:32.804: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:32.804239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.804 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:32.805005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:32.80503+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:32.805033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:32.80632+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.806324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.806326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.806 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"350.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"437dc3cf-107e-450c-b8c9-f02c8a986431\"}\n"} +{"Time":"2022-12-07T09:15:32.807762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:32.807768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:32.80777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.807 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"85.791µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"68cdc3ad-6f7d-4c8a-854e-02e0f6b74904\"}\n"} +{"Time":"2022-12-07T09:15:32.807977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.807 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"33.334µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"89d68d0b-1274-45d6-8f18-2b9134ff1d2c\"}\n"} +{"Time":"2022-12-07T09:15:32.808036+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.808039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.808049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.807 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16045f89-aec1-4b3f-b34b-85b52a800061\"}\n"} +{"Time":"2022-12-07T09:15:32.808604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:32.808613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:32.808616+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.808 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"430.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"eb80699d-aa14-49b9-8ba9-a8ce06130cac\"}\n"} +{"Time":"2022-12-07T09:15:32.809397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/organizations/1ce8b51f-a09e-4cb6-9f22-e3c24dffd97e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"584.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d0fd09ed-0524-4dff-b02e-18a1a9de544f\"}\n"} +{"Time":"2022-12-07T09:15:32.809462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" schedule_test.go:274: waiting for template version job 2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\n"} +{"Time":"2022-12-07T09:15:32.809943+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.809947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.809949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a837050a-b11a-417e-84c1-4af5ecacd2a1\"}\n"} +{"Time":"2022-12-07T09:15:32.810047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:32.811889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.811892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.811894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.811 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e49c33da-10d4-4b26-a8eb-1307b59097f4\"}\n"} +{"Time":"2022-12-07T09:15:32.811897+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.811898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.811905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.811 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"367.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"588860a1-5129-4c08-84de-5313a8b3e473\"}\n"} +{"Time":"2022-12-07T09:15:32.825274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.825283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.825286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.825 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.825288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.825 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.825291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.825 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.825356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.825 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} +{"Time":"2022-12-07T09:15:32.826149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.826 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"393.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"76342701-8a51-4801-9a5c-3aed288e531e\"}\n"} +{"Time":"2022-12-07T09:15:32.826653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.826 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/organizations/364a154c-ac78-426b-82ce-f48f9b1f5f90/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"42a0fbec-5278-46db-9caf-f8641989783d\"}\n"} +{"Time":"2022-12-07T09:15:32.827482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/organizations/364a154c-ac78-426b-82ce-f48f9b1f5f90/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"616.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4933d8c1-eaeb-4e79-bca7-6f157a9a7557\"}\n"} +{"Time":"2022-12-07T09:15:32.827604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" state_test.go:116: waiting for workspace build job b530656d-137b-4084-a379-973f872ae887\n"} +{"Time":"2022-12-07T09:15:32.827982+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.82799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.827992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.827 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:32.82806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.828 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:32.828106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.828 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:32.828137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideOK1102854830/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.828166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideOK1102854830/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.828184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideOK1102854830/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.828202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:32.828303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.828 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:32.830314+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:32.830322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:32.830325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"951.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a9a17890-b510-4001-a4df-d90c69e08f12\"}\n"} +{"Time":"2022-12-07T09:15:32.831075+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.831079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.831081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"00de2d22-5e38-4b99-956d-95a891f7060f\"}\n"} +{"Time":"2022-12-07T09:15:32.832327+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.832332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.832334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.832 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0ab6d3c-67c4-4699-9957-c6e2a20be17d\"}\n"} +{"Time":"2022-12-07T09:15:32.834389+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.834394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.834397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c2dcc67e-8903-43be-b3b5-ab247b3f8a87\"}\n"} +{"Time":"2022-12-07T09:15:32.834482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:32.834919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:32.834924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:32.834926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"327.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad2382b8-1d16-4b81-8aa7-9e16492a7638\"}\n"} +{"Time":"2022-12-07T09:15:32.836418+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.836428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.83643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8449f2ff-eb40-4a70-8715-e28dd5afe2eb\"}\n"} +{"Time":"2022-12-07T09:15:32.836433+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.836434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.836436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"380µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5150869d-9566-43fc-8186-437f1b5034bc\"}\n"} +{"Time":"2022-12-07T09:15:32.853877+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:32.853881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:32.853883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.853 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"82bae274-fe1a-4c08-8b89-bb5e57fb90a5\"}\n"} +{"Time":"2022-12-07T09:15:32.85395+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.853958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.853961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.853 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97ae5469-b73f-47dd-be8a-6b4c30cd8b9a\"}\n"} +{"Time":"2022-12-07T09:15:32.855996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.856001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.856003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.855 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"288µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2743692f-906e-4728-bdb4-77cdbc7bac8a\"}\n"} +{"Time":"2022-12-07T09:15:32.85618+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.856183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.856185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:32.85626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:32.856305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:32.856337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePullFile4042663601/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.85636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullFile4042663601/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.856381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullFile4042663601/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.856407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"workspace_name\": \"fervent-carver1\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:32.856495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:32.856512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} +{"Time":"2022-12-07T09:15:32.857201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.857 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"267.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"069445db-b38a-496c-a677-30725c623da9\"}\n"} +{"Time":"2022-12-07T09:15:32.859363+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.859367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.859369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.859 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"331.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b530c271-fdd3-4083-8b48-3d66b6edb535\"}\n"} +{"Time":"2022-12-07T09:15:32.859483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:32.859856+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:32.859861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:32.859863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.859 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eac0fd38-1629-4f99-9fcb-2c6a4965b4f6\"}\n"} +{"Time":"2022-12-07T09:15:32.861377+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.861383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.861386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.861 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9e52cae3-4db9-4ba3-b897-0e09182a6d6b\"}\n"} +{"Time":"2022-12-07T09:15:32.861432+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.861439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.861441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.861 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"338.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7eb6cc32-2e3e-41ef-a944-aaea241319fc\"}\n"} +{"Time":"2022-12-07T09:15:32.875818+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:32.875826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:32.875828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.875 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:32.876971+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.876974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.876977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.876 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"13.958µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:32.877939+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:32.877943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:32.877945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.877 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"534fe534-2d17-40be-b4c3-800e92aca5f6\"}\n"} +{"Time":"2022-12-07T09:15:32.878063+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.878071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.878073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.878 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"323.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8749cfbd-94b0-4ecd-8ec6-97b40e51cea6\"}\n"} +{"Time":"2022-12-07T09:15:32.878347+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.878351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.878352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.878 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:32.878446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.878 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.881169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.881 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a4ef3fc1-afef-45ef-ba98-f58aca64e141\"}\n"} +{"Time":"2022-12-07T09:15:32.882286+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.88229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.882293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.882 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"354.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1ad2fbe-cccf-4403-9213-fccf995397ba\"}\n"} +{"Time":"2022-12-07T09:15:32.884406+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.884411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.884413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.884 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1fb39dad-5724-4126-93f3-1d953bc7f751\"}\n"} +{"Time":"2022-12-07T09:15:32.884534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:32.884936+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:32.884944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:32.884946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.884 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"23e1df05-8d9d-448a-ad05-896bc1804208\"}\n"} +{"Time":"2022-12-07T09:15:32.886403+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.886408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.886411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2b92f956-e314-4a10-9435-07155eaf567e\"}\n"} +{"Time":"2022-12-07T09:15:32.886425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.886429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.886431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dcf0e90d-a567-4d44-a074-e4664cd1329f\"}\n"} +{"Time":"2022-12-07T09:15:32.903786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.903797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.903799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.903 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"50517c8a-9d69-44a3-9ab9-1926210d8586\"}\n"} +{"Time":"2022-12-07T09:15:32.903806+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:32.903808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:32.903815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.903 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"363.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c9221a28-92c3-4889-85db-b10cd4bf4d29\"}\n"} +{"Time":"2022-12-07T09:15:32.906073+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.90608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.906082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.906 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"35c52772-e155-40e3-8ee5-b8a689628df9\"}\n"} +{"Time":"2022-12-07T09:15:32.906674+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.906682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.906684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.906 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:32.906709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.906 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.906737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.906 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:32.906765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.906 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:32.906844+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:32.906853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:32.906859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.906 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:32.907362+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.907367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.907381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.907 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"388.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a763dac4-5219-4196-a30d-867472dc1a27\"}\n"} +{"Time":"2022-12-07T09:15:32.908952+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.908962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.908965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.908 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:138\u003e\t(*agent).runLoop\trunning loop\n"} +{"Time":"2022-12-07T09:15:32.909442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f57e4e8c-4447-4bac-af57-9e47f58767a0\"}\n"} +{"Time":"2022-12-07T09:15:32.909581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:32.909741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"59.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"95d5337a-456f-49b1-a44e-6181dbcff3e0\"}\n"} +{"Time":"2022-12-07T09:15:32.910018+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:32.910027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:32.91003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b6bf13d-144f-46f2-88ee-8cbdcfa248c8\"}\n"} +{"Time":"2022-12-07T09:15:32.910034+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.910044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.910047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.909 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"5511755f-1b23-41ff-9aec-a18ec7510e26\", \"agent_id\": \"e10ec02a-e8c3-464a-be15-0d9f6d491e0a\", \"agent_version\": \"v0.0.0-devel\"}\n"} +{"Time":"2022-12-07T09:15:32.910071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.910 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"81.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5511755f-1b23-41ff-9aec-a18ec7510e26\"}\n"} +{"Time":"2022-12-07T09:15:32.910301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.910 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40065778-0245-4181-9535-f22c629117de\"}\n"} +{"Time":"2022-12-07T09:15:32.910444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.910 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:177\u003e\t(*agent).run\tfetched metadata\n"} +{"Time":"2022-12-07T09:15:32.91154+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.911548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.911552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.911 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5f14a2cb-1cbf-40af-a48c-1981ac8631d3\"}\n"} +{"Time":"2022-12-07T09:15:32.911715+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.911723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.911726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.911 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"438.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e80a6c53-0a54-4c63-98ff-aafb50791954\"}\n"} +{"Time":"2022-12-07T09:15:32.913517+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.913527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.913531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.913 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"b6af8e97-ea4d-407d-be30-82266ade7c98\", \"agent\": {\"id\": \"e10ec02a-e8c3-464a-be15-0d9f6d491e0a\", \"created_at\": \"2022-12-07T08:15:32.412118Z\", \"updated_at\": \"2022-12-07T08:15:32.412118Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"7b73c9b4-0884-4051-bbb2-df53da5ccc64\", \"auth_token\": \"f900032b-8d13-43a0-977d-7d3009a614fb\", \"auth_instance_id\": {\"String\": \"\", \"Valid\": false}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"directory\": \"\","} +{"Time":"2022-12-07T09:15:32.91354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} +{"Time":"2022-12-07T09:15:32.913543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.913 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:402\u003e\t(*agent).runCoordinator\tconnected to coordination server\n"} +{"Time":"2022-12-07T09:15:32.926424+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:32.926444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:32.92645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:32.926594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:32.926671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:32.926733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.926786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.926809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.926835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:32.926961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:32.928349+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.928358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.928361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"494.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3f8f5359-eaf3-4ad6-ac71-69f5bd47190c\"}\n"} +{"Time":"2022-12-07T09:15:32.928372+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:32.928375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:32.928378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"509.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6c9daa6a-77df-4979-af58-aa7d6d9d52c3\"}\n"} +{"Time":"2022-12-07T09:15:32.928562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.928569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.928573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:32.928595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.92862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.928658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.928672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.928692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:32.928736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:32.928911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.92894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:32.931336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"447.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2b229cb7-5c2f-4cbc-808e-097dedd6d756\"}\n"} +{"Time":"2022-12-07T09:15:32.932223+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.93223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.932232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"312.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7425e6b0-fe68-4df1-aaad-14ca15f18b1e\"}\n"} +{"Time":"2022-12-07T09:15:32.934467+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.934474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.934476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.934 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b8d5ec92-6422-453c-9391-683eea8357e3\"}\n"} +{"Time":"2022-12-07T09:15:32.934933+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:32.934937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:32.93494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.934 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"294.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c5e9e6a4-d25b-438e-8fc7-e1128570d78c\"}\n"} +{"Time":"2022-12-07T09:15:32.936505+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.936512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.936516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.936 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"440.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40cffb42-7a21-4d81-a1ec-857d1394bd83\"}\n"} +{"Time":"2022-12-07T09:15:32.936585+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.936593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.936597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.936 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"485.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b7b32d8-1c8d-4b72-9f16-d908ee8d0de7\"}\n"} +{"Time":"2022-12-07T09:15:32.937482+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:32.937491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:32.937495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"24.709µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"104be62f-602d-4f4a-95ef-1f1a787b6778\"}\n"} +{"Time":"2022-12-07T09:15:32.937503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"28.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d44235b5-8906-4429-8f8c-fb012655527c\"}\n"} +{"Time":"2022-12-07T09:15:32.938241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.938 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/users/me/workspace/cool-pike0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"499.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bc4cab58-bc1e-4dbb-aacb-f58e68b4467f\"}\n"} +{"Time":"2022-12-07T09:15:32.939005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.938 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaceagents/e10ec02a-e8c3-464a-be15-0d9f6d491e0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"479.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ef37586f-16d5-44d1-83ad-8420dc55d79c\"}\n"} +{"Time":"2022-12-07T09:15:32.939664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.939 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaceagents/e10ec02a-e8c3-464a-be15-0d9f6d491e0a/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12b44ad9-45a5-49c1-8a34-5ad7a5a57dd8\"}\n"} +{"Time":"2022-12-07T09:15:32.948587+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.948608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.948613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.948 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:32.948727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.948 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:32.948789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.948 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:32.948839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.948 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.948868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.948 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.948897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.948 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.948918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.948 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"workspace_name\": \"sweet-bassi0\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:32.949049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.949 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:32.949076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.949 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.953452+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:32.953459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:32.953462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.953 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"563.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f5c0967-e33a-40bf-af45-9df73df3461a\"}\n"} +{"Time":"2022-12-07T09:15:32.953469+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.953471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.953475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.953 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"595.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8b535fdd-1684-4ad0-ace4-535e77dce382\"}\n"} +{"Time":"2022-12-07T09:15:32.956298+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.956307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.95631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.956 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"454.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"63ddec12-4602-413b-b53d-450e3165b8c4\"}\n"} +{"Time":"2022-12-07T09:15:32.956908+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.956916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.956942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.956 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:32.956946+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:32.956948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:32.956952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.956 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:32.956988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.956 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:32.957009+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.957023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.957025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.956 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:32.957031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.957 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} +{"Time":"2022-12-07T09:15:32.957038+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:32.957042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:32.957047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.957 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:32.957109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.957 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideInvalidDuration4118256705/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.957138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.957 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideInvalidDuration4118256705/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.957166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.957 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideInvalidDuration4118256705/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:32.957219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.957 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:32.957318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.957 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:32.957451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.957457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.95746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.957 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"529µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9a0c6aa0-b889-4ae7-8531-83e773f29692\"}\n"} +{"Time":"2022-12-07T09:15:32.960412+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:32.960418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:32.960421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.960 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ee77eee-de89-47aa-9c6d-db7e1e07e646\"}\n"} +{"Time":"2022-12-07T09:15:32.961448+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.961455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.961458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"449.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"75a5c97c-a017-4492-b24d-f4ab07364a2d\"}\n"} +{"Time":"2022-12-07T09:15:32.961478+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.961481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.961484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"478.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24dff592-66e0-4dee-aea3-8e7fd86e3c12\"}\n"} +{"Time":"2022-12-07T09:15:32.973517+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:32.973525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:32.973529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.973 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"16.708µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:32.977383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.977 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:32.97754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.977 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:32.978029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.977 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"427.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5bc0b86f-91b1-4699-b75e-1afb1ae37041\"}\n"} +{"Time":"2022-12-07T09:15:32.978199+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:32.978204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:32.978207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.978 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"436.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d0079e1-6fbb-431a-bdf6-48057b5dea7b\"}\n"} +{"Time":"2022-12-07T09:15:32.979142+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:32.979149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:32.979152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.979 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:32.979157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.979 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.979188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.979 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.979214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.979 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:32.979244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.979 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:32.979292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.979 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:32.981147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.981 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e310668a-57d5-4645-89b0-14f11dd41fe4\"}\n"} +{"Time":"2022-12-07T09:15:32.982435+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:32.982442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:32.982445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"442.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fb2ab3be-1e64-4d32-9310-49e54174f575\"}\n"} +{"Time":"2022-12-07T09:15:32.985243+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:32.985249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:32.985252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.985 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf565529-40b0-4496-bd22-4915cf341a98\"}\n"} +{"Time":"2022-12-07T09:15:32.986507+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.986514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.986517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.986 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"454.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d0ac0fc7-c068-4d55-ab87-2f9cfa772ec2\"}\n"} +{"Time":"2022-12-07T09:15:32.986522+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:32.986525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:32.986527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.986 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"429.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a6b2acf-21f3-4482-91ea-55f895de357a\"}\n"} +{"Time":"2022-12-07T09:15:32.999665+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:32.999672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:32.999675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.999 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:32.999718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.999 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:32.999744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.999 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:32.999754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.999 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:33.000737+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.000745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.000749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.000 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.000856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.000 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.000914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.000 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:33.000979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.000 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePullStdout1277238284/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.000989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.000 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullStdout1277238284/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.001024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.000 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullStdout1277238284/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.001053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.001 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"workspace_name\": \"upbeat-shtern4\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:33.001194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.001 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.001202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.001 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} +{"Time":"2022-12-07T09:15:33.003344+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.003352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.003356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.003 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"471.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c027d1dc-1e38-43e2-a611-659bfa7e59ff\"}\n"} +{"Time":"2022-12-07T09:15:33.003361+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.003364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.003366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.003 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"515µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"be7d35d7-c178-4bff-8701-6bfde2ef85a5\"}\n"} +{"Time":"2022-12-07T09:15:33.006004+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.006018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.006022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.005 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.125µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:33.006349+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.006358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.006361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.006 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"470.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"222fe75b-621d-4aca-b883-ade69bf56168\"}\n"} +{"Time":"2022-12-07T09:15:33.007219+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:33.007226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:33.007229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.007 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:33.007234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.007 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.007262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.007 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:33.007271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.007 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:33.007279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.007 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:33.007423+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.007431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.007435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.007 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:33.007442+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:33.007445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:33.007448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.007 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"479.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"007ba6d2-7d9c-4751-8e5e-c7fb917cb461\"}\n"} +{"Time":"2022-12-07T09:15:33.007567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.007574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.007578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.007 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.010473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"526.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d72f3384-6bb0-4b1e-82af-e2e139dce8a7\"}\n"} +{"Time":"2022-12-07T09:15:33.011627+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.011635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.011639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.011 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"561.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1cfcfb17-46bb-4861-a5d1-a71eeb5017a5\"}\n"} +{"Time":"2022-12-07T09:15:33.011645+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.011648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.011652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.011 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"567.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"34064f8b-a5ae-4128-adac-37a79050de65\"}\n"} +{"Time":"2022-12-07T09:15:33.028663+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.028675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.028678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.028 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:33.028704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.028 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.028806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.028 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.028816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.028 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.028823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.028 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.028851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.028 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:33.028898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.028 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:33.029078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.029 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.029118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.029 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:33.029224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"547.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b10c0eaf-9bbb-4c7e-affc-4e93110753d5\"}\n"} +{"Time":"2022-12-07T09:15:33.029278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.029291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.029297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"600.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4353f3da-de68-4026-9315-574df4bb2bdd\"}\n"} +{"Time":"2022-12-07T09:15:33.02945+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.029459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.029463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.029 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:33.029471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.029 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:33.029504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.029 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:33.029571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.029 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} +{"Time":"2022-12-07T09:15:33.031287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.031 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"539.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fe337af8-053c-4d93-a1fd-3c5a045c6277\"}\n"} +{"Time":"2022-12-07T09:15:33.03213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/organizations/59bd6974-a38e-4820-8466-c916354f4ec8/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"544µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d746f72e-5333-4026-8bad-984941ff25e6\"}\n"} +{"Time":"2022-12-07T09:15:33.032506+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:33.032517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:33.032521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"589.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8e5008d8-ac2f-4d03-85a6-185abd1e0ad1\"}\n"} +{"Time":"2022-12-07T09:15:33.033648+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.033659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.033663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.033 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/organizations/59bd6974-a38e-4820-8466-c916354f4ec8/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.166041ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"73a62856-e11e-4fa6-9d46-5efedfd3c795\"}\n"} +{"Time":"2022-12-07T09:15:33.033818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" schedule_test.go:241: waiting for workspace build job 55d1ca60-261b-497b-a0d9-25213c661cfe\n"} +{"Time":"2022-12-07T09:15:33.035283+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.035292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.035296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"520.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"291411e1-4957-4520-8207-bc4702b99056\"}\n"} +{"Time":"2022-12-07T09:15:33.03663+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.03664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.036644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6897bd9a-eb4b-45de-8f44-12c832285515\"}\n"} +{"Time":"2022-12-07T09:15:33.036649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.036652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.036656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"553.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"085d8c88-dffb-4899-aaa6-e709bd66befb\"}\n"} +{"Time":"2022-12-07T09:15:33.050432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.050 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:33.050656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.050 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:33.050687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.050 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.051477+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.051485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.051489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.051 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.051506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.051 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.051557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.051 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.051589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.051 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.054388+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.054419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.054425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.054 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.407916ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"73d5b983-1681-43c3-a711-c5e24cc89f26\"}\n"} +{"Time":"2022-12-07T09:15:33.057583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.057598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.057603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"4.5155ms\", \"status_code\": 200, \"latency_ms\": 4, \"request_id\": \"20a1cd4d-f9c2-440b-a49f-e156fe972d4b\"}\n"} +{"Time":"2022-12-07T09:15:33.057781+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:33.057797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:33.057803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.057 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:33.057809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.057 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.057819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.057 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:33.057912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.057 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:33.058069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.057 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:33.058594+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.058607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.058613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:33.058672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.058681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.058711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.058763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.058831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:33.058848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:33.059022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:33.059034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:33.059039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.794333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c9b51f84-4c35-43b6-8630-629895063835\"}\n"} +{"Time":"2022-12-07T09:15:33.059083+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.059088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.059093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.05914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.059 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:33.060234+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.060257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.060262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.060 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"951.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2216880d-13bb-43f9-bf1d-0bc9ac4c6e68\"}\n"} +{"Time":"2022-12-07T09:15:33.060739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.060748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.060753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.060 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"954.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7d088f8f-fb95-49c3-a25d-f34e786d0149\"}\n"} +{"Time":"2022-12-07T09:15:33.061847+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.061862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.061866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"767.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ff78f1d5-373e-49e8-b1c5-d44b08cf3bfd\"}\n"} +{"Time":"2022-12-07T09:15:33.061876+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.06188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.061883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"743.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"67000984-5309-4596-8f2b-258f7d01f0cb\"}\n"} +{"Time":"2022-12-07T09:15:33.07941+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.079427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.079433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:33.079496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.079503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"704.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31257300-645f-4c7d-9490-eb13071dfdc2\"}\n"} +{"Time":"2022-12-07T09:15:33.079593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.079609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.079625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.07963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"841.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8cde2bf5-4a18-45b2-83c0-9d91450ecfc2\"}\n"} +{"Time":"2022-12-07T09:15:33.079641+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.079645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.079649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:33.0797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:33.079818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:33.083169+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:33.08318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:33.083185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"827.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad8fa4fd-9745-421b-b0a8-0a939a6ff668\"}\n"} +{"Time":"2022-12-07T09:15:33.084882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.084898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.084904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.084 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"729.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"147a748b-672d-409e-a6e7-9b8a99f8cd25\"}\n"} +{"Time":"2022-12-07T09:15:33.08546+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.085476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.085483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.085 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"696.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a7b8a0a-08c5-4623-9013-393a34cb0ea3\"}\n"} +{"Time":"2022-12-07T09:15:33.086791+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.086804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.086809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.086 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"682.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"643d8a98-b707-49c7-9ed6-b1d0e7d04451\"}\n"} +{"Time":"2022-12-07T09:15:33.086819+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.086838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.086842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.086 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"729.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"02949612-a09e-41f7-8cdf-947d0ac6b6c9\"}\n"} +{"Time":"2022-12-07T09:15:33.101383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.100 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:33.101422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.100 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.10143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.100 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:33.101436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.100 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:33.101441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.101 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:33.101449+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:33.101453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:33.101458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:33.101: cmd: stdout: \"Starting a 5s download test...\"\n"} +{"Time":"2022-12-07T09:15:33.102216+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.102225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.102232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.101 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.102238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.102 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.102243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.102 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} +{"Time":"2022-12-07T09:15:33.104708+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.104721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.10473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.104 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"708.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1d11dd9d-7112-4d57-96a6-bfd8f2842c0d\"}\n"} +{"Time":"2022-12-07T09:15:33.104977+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.104989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.104994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.104 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"864.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"28bf9c8f-5475-40ba-b2d4-383f6d602210\"}\n"} +{"Time":"2022-12-07T09:15:33.107739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:33.107756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:33.107761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.107 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"711.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1892f405-a383-4922-af84-4c62efd41f9b\"}\n"} +{"Time":"2022-12-07T09:15:33.10827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.108 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:33.108327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.108 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:33.108444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.108 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} +{"Time":"2022-12-07T09:15:33.109346+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.109358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.109364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.109 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:33.109374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.109 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.109415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.109 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.109458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.109 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:33.109494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.109 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:33.109644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.109 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:33.109893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.109911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.109917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.109 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"724µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cae877ff-017d-4704-9a12-9ba786a24732\"}\n"} +{"Time":"2022-12-07T09:15:33.11059+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.110607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.110612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.110 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"731.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3482d813-4296-4fa3-9db7-15168807879b\"}\n"} +{"Time":"2022-12-07T09:15:33.11176+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.111768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.111773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"699.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4801d935-673b-4608-a625-bfeec8415327\"}\n"} +{"Time":"2022-12-07T09:15:33.111864+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.111878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.111883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"723.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dd4913f8-bddd-433a-a7a7-6899004b87b1\"}\n"} +{"Time":"2022-12-07T09:15:33.130196+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.130275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.130292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.130 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:33.130312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.130 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:33.130319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.130 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:33.130324+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.130327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.130331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.130 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.179542ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"d2d33012-8e18-4423-ac49-1eabc641d29f\"}\n"} +{"Time":"2022-12-07T09:15:33.130339+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.130342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.130345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.130 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} +{"Time":"2022-12-07T09:15:33.131009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.130 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"618.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6fcb5840-656d-4001-a573-540da715d081\"}\n"} +{"Time":"2022-12-07T09:15:33.131875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.131 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/organizations/e6817e67-621a-4aab-b61a-930024486eaf/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"507µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"38390047-ce08-4ba9-98b4-ad7e847ebe81\"}\n"} +{"Time":"2022-12-07T09:15:33.132642+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:33.13265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:33.132653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.132 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"589.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97658740-5567-43cc-843c-491c3e882144\"}\n"} +{"Time":"2022-12-07T09:15:33.133393+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.133406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.133412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.133 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/organizations/e6817e67-621a-4aab-b61a-930024486eaf/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"972.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4ebbfb11-5803-4f93-91b6-bf7031ee8283\"}\n"} +{"Time":"2022-12-07T09:15:33.134252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.134 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72/ttl\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"551.75µs\", \"status_code\": 204, \"latency_ms\": 0, \"request_id\": \"265b8736-40e1-4769-8222-7c42a30e8550\"}\n"} +{"Time":"2022-12-07T09:15:33.135155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.135 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"625.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b6cbcfa-7673-4540-9c16-8907ef680c76\"}\n"} +{"Time":"2022-12-07T09:15:33.13539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" schedule_test.go:326: waiting for workspace build job f5175f12-f4da-43f7-a285-1f22a363c655\n"} +{"Time":"2022-12-07T09:15:33.135397+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.135399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.135401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.135 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"475µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1826f2da-b817-4929-acf8-996a380f749a\"}\n"} +{"Time":"2022-12-07T09:15:33.136872+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.136879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.136881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"801ce15a-b66a-45e3-8425-51349b0cbb11\"}\n"} +{"Time":"2022-12-07T09:15:33.136885+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:33.136887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:33.136889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96fc88b5-1086-4564-ac3d-bb14d63593b7\"}\n"} +{"Time":"2022-12-07T09:15:33.137246+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.137257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.137261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.137 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"505.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2b294085-080b-43fe-ba76-d5160b17f3d7\"}\n"} +{"Time":"2022-12-07T09:15:33.13777+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:33.137781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:33.137783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.137 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.166µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"508a8b2b-aeb0-4906-acba-eb520ad9f24a\"}\n"} +{"Time":"2022-12-07T09:15:33.138017+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.138024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.138026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.137 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"451.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"46933032-3fc1-4f94-b7d8-db6929fb2653\"}\n"} +{"Time":"2022-12-07T09:15:33.138571+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} +{"Time":"2022-12-07T09:15:33.138593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} +{"Time":"2022-12-07T09:15:33.138595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.138 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/users/me/workspace/fervent-carver1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"381.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"586d91ae-8d5f-464f-adc1-d22340f02b9e\"}\n"} +{"Time":"2022-12-07T09:15:33.139245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.139 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1/state\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7b3c753e-46e6-4a66-94fb-5088a3eac07c\"}\n"} +{"Time":"2022-12-07T09:15:33.139931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.139 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:33.140919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:33.141078+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:33.141083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.151329+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.151343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.151346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.151 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:33.151352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.151 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.151357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.151 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:33.151364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.151 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:33.151474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.151 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:33.152289+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.152297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.1523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.152 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.152302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.152 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.152305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.152 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.152329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.152 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.152364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.152 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.155757+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:33.155763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.155766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.155 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"117.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"415fc0c6-ff3a-4c53-a499-31fcb3f51d06\"}\n"} +{"Time":"2022-12-07T09:15:33.160027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"54.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a4931059-c156-4de5-b9d0-850059c8365d\"}\n"} +{"Time":"2022-12-07T09:15:33.160973+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.160978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.160982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.160 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"732.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8439e3b-8cad-4bfe-88ed-65ed31c38379\"}\n"} +{"Time":"2022-12-07T09:15:33.161841+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.161846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.161849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.161 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"387.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"edbbb4f5-91f5-482f-9df2-e32896246aac\"}\n"} +{"Time":"2022-12-07T09:15:33.161853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.161854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.161856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.161 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"409.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"986c6c01-c081-4c89-9f44-1a1929c0493d\"}\n"} +{"Time":"2022-12-07T09:15:33.162127+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.162134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.162137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"accb1569-6d45-494e-9373-5708320f3917\"}\n"} +{"Time":"2022-12-07T09:15:33.162292+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.1623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.162302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.162 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:33.162304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.162 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:33.162306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.162 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:33.162308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.162 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} +{"Time":"2022-12-07T09:15:33.162461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.162489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.162495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"521.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f44edb20-ebfb-41fc-a240-72dbc4e9f825\"}\n"} +{"Time":"2022-12-07T09:15:33.162506+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.162526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.16253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"430.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"751132c9-1183-4222-ba74-9dfe791c3b59\"}\n"} +{"Time":"2022-12-07T09:15:33.162991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:33.162997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.162999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"54.042µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"edde15c9-8a04-4cf1-8cc4-d6a35a8c319c\"}\n"} +{"Time":"2022-12-07T09:15:33.163395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.163 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c8baae53-a274-4bfc-b1be-1712760c757e\"}\n"} +{"Time":"2022-12-07T09:15:33.164032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.163 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d0ecb8f5-fb8f-4888-b5b0-a06644fe55b6\"}\n"} +{"Time":"2022-12-07T09:15:33.164251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.164 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/organizations/956d9bea-f2b8-419f-b999-c80085c53e8c/templates/my-template\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"27.708µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"56975f29-7d6f-45d8-b254-8943cbadfc84\"}\n"} +{"Time":"2022-12-07T09:15:33.165764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" templatecreate_test.go:193: 2022-12-07 08:15:33.165: cmd: matched \"Create and upload\" = \"\u003e Create and upload\"\n"} +{"Time":"2022-12-07T09:15:33.165782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" templatecreate_test.go:194: 2022-12-07 08:15:33.165: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:33.165843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.165: cmd: stdout: \"\u003e Create and upload \\\"/tmp/TestTemplateCreateWithParameterFileNotContainingTheValue2256270717/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:33.166858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.166 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0a4b321c-f24a-4239-88f6-ee4d2166656d\"}\n"} +{"Time":"2022-12-07T09:15:33.167701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.167 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/organizations/956d9bea-f2b8-419f-b999-c80085c53e8c/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"710.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5a971b70-6a18-4b64-a530-bdcb6df2c885\"}\n"} +{"Time":"2022-12-07T09:15:33.168517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.168: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:33.168582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.168 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/templateversions/c8062831-8e1e-47e2-b33a-c621aaaaafc1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"523.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"577566a5-d1ad-49ea-ad61-30c73845a047\"}\n"} +{"Time":"2022-12-07T09:15:33.171943+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.171953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.171956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.171 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.172023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.171 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.172037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.172 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:33.172457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.172 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.172594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.172 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.172599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.172 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.172602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.172 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"workspace_name\": \"lucid-roentgen1\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:33.172611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.172 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.172647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.172 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.178752+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.178763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.178766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.178 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"922.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57bf587d-f7e5-4afe-a527-694a2d096f5b\"}\n"} +{"Time":"2022-12-07T09:15:33.184673+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.184689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.184692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cb2e545a-c2f6-43bf-a0c0-8c62881d0f4c\"}\n"} +{"Time":"2022-12-07T09:15:33.18498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.184994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.184996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6fcfbf9d-bbe2-452e-a37f-54df67171587\"}\n"} +{"Time":"2022-12-07T09:15:33.185452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/organizations/1ce8b51f-a09e-4cb6-9f22-e3c24dffd97e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"46f63de8-f341-4bf8-91aa-c2cba551ca04\"}\n"} +{"Time":"2022-12-07T09:15:33.186173+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.186177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.186195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"459.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e2925ec1-d4ae-4dda-ac20-4bb6cc430b67\"}\n"} +{"Time":"2022-12-07T09:15:33.186274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.186276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.186278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.186 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/organizations/1ce8b51f-a09e-4cb6-9f22-e3c24dffd97e/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"648.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d33bae73-154a-4f5e-81eb-e8d1e7556a9f\"}\n"} +{"Time":"2022-12-07T09:15:33.186391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" schedule_test.go:282: waiting for workspace build job 85a7846d-ab07-4abe-ad02-8cb0b108ddd7\n"} +{"Time":"2022-12-07T09:15:33.186421+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.186424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.186428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.186 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"420.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e16efced-dddc-422f-8140-02f904473ead\"}\n"} +{"Time":"2022-12-07T09:15:33.18663+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.186639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.186641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.186 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f549ce38-d8e4-4ca4-b4a9-0b6b33e511bf\"}\n"} +{"Time":"2022-12-07T09:15:33.201878+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.201901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.201904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.201 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.201976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.201 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.201982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.201 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:33.202014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.201 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.202058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.202 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.202069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.202 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.202124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.202 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"workspace_name\": \"tender-chatelet5\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:33.202151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.202 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.202171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.202 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.203176+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.20318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.203183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.202 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.203185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.203 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.203187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.203 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.20319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.203 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.203191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.203 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.203267+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.203271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.203272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.203 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3cfaeef2-68d4-4b1c-9760-8b33cb0b1c8d\"}\n"} +{"Time":"2022-12-07T09:15:33.204485+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.204488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.204491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.204 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:33.204493+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.204 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:33.204495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.204 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} +{"Time":"2022-12-07T09:15:33.211106+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.21113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.211145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"572.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f0b41881-6684-4686-ab16-ef3f02b96b5e\"}\n"} +{"Time":"2022-12-07T09:15:33.211387+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.21139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.211394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.211 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"354µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"78f32739-8fef-49b4-8fc2-975b0011c833\"}\n"} +{"Time":"2022-12-07T09:15:33.211992+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.211996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.211998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.211 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae49af71-f862-4672-b957-edb7d42938d7\"}\n"} +{"Time":"2022-12-07T09:15:33.212+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.212002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.212003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.211 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"410.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6e28260b-74ba-4d1a-a216-4c4dfb1bfb40\"}\n"} +{"Time":"2022-12-07T09:15:33.212515+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.212525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.212528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.212 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0ba0b9df-3d8f-410f-9174-1d3bdacb8c28\"}\n"} +{"Time":"2022-12-07T09:15:33.213843+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.213849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.213851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.213 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.958µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"dcfbbee8-6258-4d97-97d0-4a629d2aaf04\"}\n"} +{"Time":"2022-12-07T09:15:33.214057+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.214063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.214065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.213 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.214463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.214466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:33.214469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideInvalidDuration4118256705/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.214472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideInvalidDuration4118256705/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.214474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideInvalidDuration4118256705/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.214477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"workspace_name\": \"laughing-cerf3\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:33.214482+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.214483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.214485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.214 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c34ac09-d68c-4181-9a13-dad3d5121627\"}\n"} +{"Time":"2022-12-07T09:15:33.214487+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.214488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.214489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.214491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.214928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.214946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.214951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.214 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/users/me/workspace/sweet-bassi0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1c3cace1-544f-4552-a5e8-b50d1040de9b\"}\n"} +{"Time":"2022-12-07T09:15:33.216404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.215 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspaces/eb821dd2-2edc-4344-9454-598f71e5a199/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"632.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b83b0dad-ec99-47c9-a071-ce6b85119117\"}\n"} +{"Time":"2022-12-07T09:15:33.216409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.216 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/3eb4616b-c2d1-4335-98ec-a5ebfdaa2255\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bef3bfb2-5f2d-404e-bf1a-25f9bcda0ff7\"}\n"} +{"Time":"2022-12-07T09:15:33.222735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.222741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.222744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.222 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.222746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.222 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.222749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.222 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.222751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.222 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.228874+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.228883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.228886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.228 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9ca33e89-7646-44cc-8f05-933dd8792303\"}\n"} +{"Time":"2022-12-07T09:15:33.234374+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.234422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.234431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.234 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bc5e99ba-7c47-4c71-9400-4cc8a7734332\"}\n"} +{"Time":"2022-12-07T09:15:33.235782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.235794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.235799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b0a72c33-c175-4f55-a7f0-9de23abb470c\"}\n"} +{"Time":"2022-12-07T09:15:33.236282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.236293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.236298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.236 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0b200b15-9980-43de-99ab-ed995c3cb51b\"}\n"} +{"Time":"2022-12-07T09:15:33.237157+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.237235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.237239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.237 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"201a8b43-a625-4d59-bf8f-6ea5c9129cff\"}\n"} +{"Time":"2022-12-07T09:15:33.24525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:33.245261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.245267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.245 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:33.252725+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.252745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.252759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.252 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.252762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.252 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.252764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.252 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.252766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.252 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.253625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.253 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1c737f9e-de8b-451e-a641-ba30c0bf0255\"}\n"} +{"Time":"2022-12-07T09:15:33.253637+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.253643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.253645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.253 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.253647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.253 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.253649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.253 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} +{"Time":"2022-12-07T09:15:33.259772+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.259779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.259781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"470.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c41d09eb-5fae-49b9-86a9-b2113a363fb8\"}\n"} +{"Time":"2022-12-07T09:15:33.262703+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.262711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.262714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3806bf7a-6320-454a-a03a-17f8655b686c\"}\n"} +{"Time":"2022-12-07T09:15:33.262717+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.262719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.26272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"247.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"289004fc-805a-49ad-a663-dcc79c250940\"}\n"} +{"Time":"2022-12-07T09:15:33.262727+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.262729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.262731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"447µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"059c0c3d-0434-486f-8356-495509a2dd59\"}\n"} +{"Time":"2022-12-07T09:15:33.264058+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.264063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.264065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.264 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.334µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"78a64711-2598-4d39-872f-90983a4244cd\"}\n"} +{"Time":"2022-12-07T09:15:33.264272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.264 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3db01453-93dc-4783-a2e2-21c28f9f3634\"}\n"} +{"Time":"2022-12-07T09:15:33.264465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.264469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.264471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.264 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.264473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.264 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.264475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.264 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.264477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.264 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.264841+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} +{"Time":"2022-12-07T09:15:33.264848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:33.26485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.264 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/users/me/workspace/upbeat-shtern4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"387.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"38c7e78f-146b-4699-84f4-a8404752cbe1\"}\n"} +{"Time":"2022-12-07T09:15:33.265375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.265 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93/state\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"300.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"42e33e3b-e15f-4aa6-b334-4c2371d2b4a7\"}\n"} +{"Time":"2022-12-07T09:15:33.265471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.265 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:33.266214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:33.266235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull","Output":"--- PASS: TestStatePull (0.00s)\n"} +{"Time":"2022-12-07T09:15:33.266242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" --- PASS: TestStatePull/File (1.47s)\n"} +{"Time":"2022-12-07T09:15:33.266246+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Elapsed":1.47} +{"Time":"2022-12-07T09:15:33.266254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" --- PASS: TestStatePull/Stdout (1.29s)\n"} +{"Time":"2022-12-07T09:15:33.266258+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Elapsed":1.29} +{"Time":"2022-12-07T09:15:33.266263+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestStatePull","Elapsed":0} +{"Time":"2022-12-07T09:15:33.266268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit"} +{"Time":"2022-12-07T09:15:33.266281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":"=== CONT TestTemplateCreate/WithParameterExceedingCharLimit\n"} +{"Time":"2022-12-07T09:15:33.269846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" t.go:81: 2022-12-07 08:15:33.269 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56838\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"117.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1fe5e085-5fd2-4fcf-af6a-4114c32d795c\"}\n"} +{"Time":"2022-12-07T09:15:33.270272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" t.go:81: 2022-12-07 08:15:33.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56838\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"65.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3889b5f5-3ac9-4c1a-85fd-e53d28485857\"}\n"} +{"Time":"2022-12-07T09:15:33.272177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" t.go:81: 2022-12-07 08:15:33.272 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56838\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.667µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"662d7f3b-48ec-4b3d-b231-50006b074a06\"}\n"} +{"Time":"2022-12-07T09:15:33.272321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" t.go:81: 2022-12-07 08:15:33.272 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56838\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f41e4392-29d9-4a35-a71a-06fef9048a34\"}\n"} +{"Time":"2022-12-07T09:15:33.272849+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.272852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.272854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.272 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.273408+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit"} +{"Time":"2022-12-07T09:15:33.273432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":"=== CONT TestTemplateCreate/WithParameterExceedingCharLimit\n"} +{"Time":"2022-12-07T09:15:33.273438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" t.go:81: 2022-12-07 08:15:33.273 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56838\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"759.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a38a96bb-8e51-4ca7-bd2c-4f796cbe6f4e\"}\n"} +{"Time":"2022-12-07T09:15:33.273629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" t.go:81: 2022-12-07 08:15:33.273 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:33.273638+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.27364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.273641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.273 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.273643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.273 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.274309+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit"} +{"Time":"2022-12-07T09:15:33.274322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":"=== CONT TestTemplateCreate/WithParameterExceedingCharLimit\n"} +{"Time":"2022-12-07T09:15:33.274327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:33.274346+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:33.27435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:33.277904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.277 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"182.084µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"84bba99b-5e1c-4f5f-8f7e-d7699692dcf2\"}\n"} +{"Time":"2022-12-07T09:15:33.27845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.278 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"119.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b52abcc2-783f-4d63-80b3-e470d461f12b\"}\n"} +{"Time":"2022-12-07T09:15:33.279335+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.279341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.279343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.279 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"590.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6541377c-ed86-4d0e-9ed1-72d21ccf5a5d\"}\n"} +{"Time":"2022-12-07T09:15:33.280858+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:33.280862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:33.280864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.280 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.667µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"44f71115-e19a-4c31-af0d-24fc2698d5c6\"}\n"} +{"Time":"2022-12-07T09:15:33.281119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.281 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"149bca3b-71de-45ad-bfb4-0bfd5ae70634\"}\n"} +{"Time":"2022-12-07T09:15:33.281646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.281 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"407.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ddb0f97d-be0b-4eff-9ebd-e053a3d0d92d\"}\n"} +{"Time":"2022-12-07T09:15:33.281828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.281 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/organizations/6319f3f6-0918-4597-9470-6ab6ae5b9f5b/templates/my-template\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.416µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"5d5b7ed6-9286-419a-b296-114e38c20cd9\"}\n"} +{"Time":"2022-12-07T09:15:33.282815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.282 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"518.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f0be8559-8cc3-4e1b-8b6b-14cbe17c8169\"}\n"} +{"Time":"2022-12-07T09:15:33.283657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.283 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/organizations/6319f3f6-0918-4597-9470-6ab6ae5b9f5b/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"522µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0da05d3d-1ab0-4611-b10e-c64ffaf069b7\"}\n"} +{"Time":"2022-12-07T09:15:33.284154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.284 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/e7c319b9-9c9c-42db-85fc-1b14a7d4cbda\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5846f289-7782-41aa-b80b-6bd487edbd7e\"}\n"} +{"Time":"2022-12-07T09:15:33.285077+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.285081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.285083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.284 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"25753daa-1e30-4403-8d9b-b06f35ae6f76\"}\n"} +{"Time":"2022-12-07T09:15:33.286358+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.286361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.286363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.286 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"336.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c779f19f-3fa6-4e03-bd0d-e02afc2ffe63\"}\n"} +{"Time":"2022-12-07T09:15:33.288022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.288032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.288034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.287 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"567.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"13298fcb-b941-4ad5-81b4-fa8446f9af73\"}\n"} +{"Time":"2022-12-07T09:15:33.295809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:33.295816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.295819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} +{"Time":"2022-12-07T09:15:33.295821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} +{"Time":"2022-12-07T09:15:33.295823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:33.295825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplateCreateWithParameterFileNotContainingTheValue2256270717/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.295827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameterFileNotContainingTheValue2256270717/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.295829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameterFileNotContainingTheValue2256270717/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.295831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateWithParameterFileNotContainingTheValue2256270717/002/1432674328.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.295833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} +{"Time":"2022-12-07T09:15:33.295842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} +{"Time":"2022-12-07T09:15:33.303111+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.303119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.303121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.302 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.303124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.302 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.303126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.302 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.303911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.303 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"471.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e9e52d87-bd76-4d20-94e5-cc20045bd4cc\"}\n"} +{"Time":"2022-12-07T09:15:33.309591+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.309597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.309599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.309 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"455.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20d56948-6342-41ae-a6eb-f8b4a095b154\"}\n"} +{"Time":"2022-12-07T09:15:33.31217+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.312175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.312177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e483338-b3c7-43c5-a64e-52b826389035\"}\n"} +{"Time":"2022-12-07T09:15:33.31218+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.312181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.312183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.311 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0f8178f9-0201-4598-81bc-c4846edd8737\"}\n"} +{"Time":"2022-12-07T09:15:33.315029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.314 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.315039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.314 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.315042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.314 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.323781+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.323792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.323794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.323 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.323797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.323 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.3238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.323 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.323801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.323 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.323803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.323 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.32842+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.32843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.328432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.328 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7926140c-65d8-4151-9767-f6796e1e4b2f\"}\n"} +{"Time":"2022-12-07T09:15:33.334392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.334402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.334404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1a2bef0e-767a-4312-8fd7-177212124cd1\"}\n"} +{"Time":"2022-12-07T09:15:33.335795+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.335804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.335807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"22b58559-1409-4416-aa88-0371b20a8adf\"}\n"} +{"Time":"2022-12-07T09:15:33.336868+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.336872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.336873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.336 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"682b3104-bad9-4651-a5b5-0df9fa619612\"}\n"} +{"Time":"2022-12-07T09:15:33.342838+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:33.342846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.342848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.342 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.084µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:33.345898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.345 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} +{"Time":"2022-12-07T09:15:33.345909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.345 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} +{"Time":"2022-12-07T09:15:33.353032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.353038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.35304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.352 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1951f9d2-b62b-4e7b-9685-3052b009c3ed\"}\n"} +{"Time":"2022-12-07T09:15:33.353043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.352 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.353045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.352 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.353047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.353 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.35305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.353 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.353102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.353 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.359993+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.360001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.360002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.359 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"258.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fb2b17fe-8797-4228-93f1-fa133941c6c0\"}\n"} +{"Time":"2022-12-07T09:15:33.362667+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.362671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.362673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"492.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16acc4c3-0be5-480c-826a-9ce2ca8346d5\"}\n"} +{"Time":"2022-12-07T09:15:33.365601+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.365606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.365608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.363 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"406.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fa69ce3c-df50-4f5e-84bb-f285078c58d9\"}\n"} +{"Time":"2022-12-07T09:15:33.365611+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.365612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.365614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.364 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.365616+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.364 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.365618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.364 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.36562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.364 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.365621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.365 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.376257+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.376264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.376266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.373 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.376268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.373 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.37627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.373 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.376272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.373 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.376274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.373 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.37759+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:33.377595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:33.377597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.377 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:33.378281+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.378285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.378286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ed09f7cc-8841-4a78-8128-7ea2cee2c0a9\"}\n"} +{"Time":"2022-12-07T09:15:33.384311+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.384338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.384344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.384 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"323.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"edba6eef-10a9-4519-8845-beab6367a598\"}\n"} +{"Time":"2022-12-07T09:15:33.385807+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.385814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.385816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.385 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"315.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"94ab2824-b1b4-4744-af78-ad62061b33c8\"}\n"} +{"Time":"2022-12-07T09:15:33.386886+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.386891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.386893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"332.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"71431117-8478-405e-b7bd-efcf2fca5a70\"}\n"} +{"Time":"2022-12-07T09:15:33.396702+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:33.396708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.39671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.395 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} +{"Time":"2022-12-07T09:15:33.396715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.396717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.396719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.396721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.396723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} +{"Time":"2022-12-07T09:15:33.396725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} +{"Time":"2022-12-07T09:15:33.396727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:33.396729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:33.39673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:33.396732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:33.396734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"request_id\": \"1a88d2ea-7613-4571-bcc5-63f74173f47b\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:33.396735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"request_id\": \"1a88d2ea-7613-4571-bcc5-63f74173f47b\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:33.396737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"request_id\": \"1a88d2ea-7613-4571-bcc5-63f74173f47b\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:33.396739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"request_id\": \"1a88d2ea-7613-4571-bcc5-63f74173f47b\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:33.396741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:186\u003e\t(*Runner).Run\tsending FailedJob\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} +{"Time":"2022-12-07T09:15:33.397102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.396: cmd: stdout: \"\\x1b[1A\\r✔ Queued [127ms]\"\n"} +{"Time":"2022-12-07T09:15:33.397106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.396: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:33.397108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.396: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} +{"Time":"2022-12-07T09:15:33.397109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.396: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:33.397116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.396: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [50ms]\"\n"} +{"Time":"2022-12-07T09:15:33.397118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.396: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:33.404993+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.405066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.405073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.404 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.40508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.404 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.405085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.404 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.40509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.404 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.405108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.404 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.409923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.409936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.409942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.409 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"657.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf8dfb3b-0356-43f0-ae91-2f8f3774c5cb\"}\n"} +{"Time":"2022-12-07T09:15:33.410094+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.410104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.410107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.557125ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"6f4a6221-c344-46e2-8182-81fe21e53e96\"}\n"} +{"Time":"2022-12-07T09:15:33.411056+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.411094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.411106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"495.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8fa6b038-3b97-455f-8807-15d39c98a2c0\"}\n"} +{"Time":"2022-12-07T09:15:33.413118+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.413124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.413126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.413 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.155667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"67649fcb-dc92-4ff1-83c9-d2ae5f688a34\"}\n"} +{"Time":"2022-12-07T09:15:33.415189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.415 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.415194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.415 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.415198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.415 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.415279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.415 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.415294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.424174+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.424186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.424188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.424 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.424191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.424 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.424198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.424 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} +{"Time":"2022-12-07T09:15:33.428015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:33.428026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:33.428029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.428031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.428034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:33.428036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.428038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"size_bytes\": 41, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.42804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"size_bytes\": 41, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.428042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/1812325471.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.428044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.428047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.428 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:33.428341+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.428345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.428348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.428 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"18ea18aa-1344-49e3-989a-8fa02f155be1\"}\n"} +{"Time":"2022-12-07T09:15:33.434902+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.43491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.434913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.434 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"312.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"406b0ab1-a2f1-49ab-af09-2d398e11e82a\"}\n"} +{"Time":"2022-12-07T09:15:33.436898+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.436907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.436909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.436 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"430.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"719ece89-bbb6-479f-bc39-f74d0251b7bd\"}\n"} +{"Time":"2022-12-07T09:15:33.436993+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.436996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.436997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.436 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0bd5a90a-c48d-4f27-90ea-d414087d3b6b\"}\n"} +{"Time":"2022-12-07T09:15:33.437862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.437865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.437867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.437 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ef01b924-839c-4389-8c30-8aa22cb3d405\"}\n"} +{"Time":"2022-12-07T09:15:33.437871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.437 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5115622-8bc5-4b6c-bded-285bb1e24f7b\"}\n"} +{"Time":"2022-12-07T09:15:33.438411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templates/a8cc2c71-95d9-4593-8c1e-9a96f840ad30\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31428615-dc2d-4c55-8501-cf52e5c42d29\"}\n"} +{"Time":"2022-12-07T09:15:33.439123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ceb22a53-18dc-413b-96d0-f10e8012f252\"}\n"} +{"Time":"2022-12-07T09:15:33.439129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" schedule_test.go:332: waiting for workspace build job e70dcb55-6c56-471a-8b42-154245ddc071\n"} +{"Time":"2022-12-07T09:15:33.446812+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:33.446837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.446843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.446 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:470\u003e\t(*Server).FailJob\tFailJob starting\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} +{"Time":"2022-12-07T09:15:33.446849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.446 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} +{"Time":"2022-12-07T09:15:33.446854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.446 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} +{"Time":"2022-12-07T09:15:33.446861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.446 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:191\u003e\t(*Runner).Run\tsent FailedJob\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} +{"Time":"2022-12-07T09:15:33.447163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.447 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/templateversions/c8062831-8e1e-47e2-b33a-c621aaaaafc1/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.420917ms\", \"status_code\": 101, \"latency_ms\": 277, \"request_id\": \"1a88d2ea-7613-4571-bcc5-63f74173f47b\"}\n"} +{"Time":"2022-12-07T09:15:33.448296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.448 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/templateversions/c8062831-8e1e-47e2-b33a-c621aaaaafc1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"428.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c2db4e8d-a3b5-4627-87df-2a293b946b55\"}\n"} +{"Time":"2022-12-07T09:15:33.448527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.448: cmd: stdout: \"\\x1b[1A\\r✘ Cleaning Up [101ms]\"\n"} +{"Time":"2022-12-07T09:15:33.448798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.448 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/templateversions/c8062831-8e1e-47e2-b33a-c621aaaaafc1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e3ac096a-d888-4342-b850-99119fd97e9b\"}\n"} +{"Time":"2022-12-07T09:15:33.449332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/templateversions/c8062831-8e1e-47e2-b33a-c621aaaaafc1/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"286.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5ad14c43-c638-4df9-bb88-a66d2c87452b\"}\n"} +{"Time":"2022-12-07T09:15:33.449755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/templateversions/c8062831-8e1e-47e2-b33a-c621aaaaafc1/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"269.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5e281803-01d4-4c35-96fb-f39a35b9c317\"}\n"} +{"Time":"2022-12-07T09:15:33.449848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.449: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:33.449856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.449: cmd: stdout: \" Attempting to read the variables from the parameter file. \\r\"\n"} +{"Time":"2022-12-07T09:15:33.449858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.449: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:33.450156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.450: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:33.450162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.450: cmd: stdout: \" This template has required variables! They are scoped to \"\n"} +{"Time":"2022-12-07T09:15:33.450163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.450: cmd: stdout: \" the template, and not viewable after being set. \"\n"} +{"Time":"2022-12-07T09:15:33.450165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.450: cmd: stdout: \"\\r\"\n"} +{"Time":"2022-12-07T09:15:33.450167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:80: 2022-12-07 08:15:33.450: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:33.450442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.450 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:33.451298+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.451316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.451318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.451322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:33.451324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.451326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:33.451328+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:33.45133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:33.451522+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.451526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.451527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.45153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:33.451532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideOK1102854830/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.451534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideOK1102854830/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.451536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideOK1102854830/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.45154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"workspace_name\": \"busy-nightingale9\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:33.45168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.451684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.454376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:33.454382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:33.454384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"285.541µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7f4d53ce-1964-400e-9f9c-01a94c27c460\"}\n"} +{"Time":"2022-12-07T09:15:33.454548+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.454557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.454559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"466.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d35bc67-b483-4b8e-b6ad-511ea37e0496\"}\n"} +{"Time":"2022-12-07T09:15:33.454563+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:33.454565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:33.454567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"45.709µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7bef34a6-742a-47df-b8d2-828dcee854f7\"}\n"} +{"Time":"2022-12-07T09:15:33.455154+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.455161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.455163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.455 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.455166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.455 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.455168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.455 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} +{"Time":"2022-12-07T09:15:33.457192+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:33.457213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:33.457216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.375µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"a9acaeb7-6cfd-40cb-9edc-fe2d3b36dae0\"}\n"} +{"Time":"2022-12-07T09:15:33.457355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c37eea11-1376-4909-9862-605267975660\"}\n"} +{"Time":"2022-12-07T09:15:33.458038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"443.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ac610798-0fda-4ff0-a8d9-b3d58028af9a\"}\n"} +{"Time":"2022-12-07T09:15:33.458359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.458 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/organizations/e91b6d6a-25e4-4153-863f-a156e345bea7/templates/my-template\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"cd1b3db6-c028-46c2-a38d-fc2c11803235\"}\n"} +{"Time":"2022-12-07T09:15:33.459363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" templatecreate_test.go:116: 2022-12-07 08:15:33.459: cmd: matched \"Create and upload\" = \"\u003e Create and upload\"\n"} +{"Time":"2022-12-07T09:15:33.45937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" templatecreate_test.go:117: 2022-12-07 08:15:33.459: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:33.459401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.459: cmd: stdout: \"\u003e Create and upload \\\"/tmp/TestTemplateCreateWithParameter508008006/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:33.460428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.459 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0d510af5-bb88-467b-ae73-8f820f11d7f7\"}\n"} +{"Time":"2022-12-07T09:15:33.460433+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.460435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.460437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"371.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7b08c802-ba57-426b-b910-86c35e77dee1\"}\n"} +{"Time":"2022-12-07T09:15:33.460937+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:33.46094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:33.460942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/organizations/e91b6d6a-25e4-4153-863f-a156e345bea7/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"461.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"39132db9-bca3-43b7-890b-63401de20324\"}\n"} +{"Time":"2022-12-07T09:15:33.461003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.460: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:33.46119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.461 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/57a5645a-f5a1-44b4-8314-ec42bef02972\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5479846c-56fa-47b5-9d01-c5a1ad74750c\"}\n"} +{"Time":"2022-12-07T09:15:33.462728+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.462732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.462734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.462 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"498.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9ca096bd-18b6-40d6-bfc1-a84ef725b131\"}\n"} +{"Time":"2022-12-07T09:15:33.465777+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.465784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.465786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.465 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"481.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b24ecb59-fc2f-4c3d-b5e0-14611f20142d\"}\n"} +{"Time":"2022-12-07T09:15:33.466063+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.466066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.466068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.465 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.46607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.465 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.466072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.465 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} +{"Time":"2022-12-07T09:15:33.477377+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:33.477384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:33.477386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.477 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.333µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:33.478197+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.478202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.478204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.478 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"440.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7bfb5a7b-b234-4a83-91b2-64469648fede\"}\n"} +{"Time":"2022-12-07T09:15:33.478761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:33.478764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:33.478766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.478 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.478768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.478 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.480499+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:33.480522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:33.480525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.480 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"46.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"a6ce7a5d-c9fd-4b1c-a881-e2160d9d9231\"}\n"} +{"Time":"2022-12-07T09:15:33.480527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.480 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d69981d-e0f7-41bc-92ca-62661cd852ac\"}\n"} +{"Time":"2022-12-07T09:15:33.481056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.481 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/users/me/workspace/tender-chatelet5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"309.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31d6e7b2-c4bd-4b7e-aa4b-f149723c7771\"}\n"} +{"Time":"2022-12-07T09:15:33.481695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.481 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/users/me/workspace/tender-chatelet5/builds/1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1fefca8b-142a-418b-a79d-15dd3478497a\"}\n"} +{"Time":"2022-12-07T09:15:33.482316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.482 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspaces/fafae29d-5989-49eb-83cb-671a770c5a3c/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"518µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"13a86621-e896-4761-b580-d73b87756711\"}\n"} +{"Time":"2022-12-07T09:15:33.482743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.482 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/58f53ab6-ef50-4fd4-9836-8f04bcf7dceb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d387e7c2-bf44-4450-ae7d-18d3a0ca2d36\"}\n"} +{"Time":"2022-12-07T09:15:33.484898+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.484904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.484906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.484 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"225.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ab788b40-4d56-454d-acb2-387e47e5352b\"}\n"} +{"Time":"2022-12-07T09:15:33.487317+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.487331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.487334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.487 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24d5da2b-cee8-4301-8edb-28184b5f3a13\"}\n"} +{"Time":"2022-12-07T09:15:33.488797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.487 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspaces/5f008cad-cb4e-4014-8716-b4e287b77c9d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2fd08319-79d2-4f01-b0df-fe6163c2a35d\"}\n"} +{"Time":"2022-12-07T09:15:33.490062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.489 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:33.490076+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.490077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.490079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.489 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4ac492ac-8b62-4b70-bb4c-c4ddeb82b099\"}\n"} +{"Time":"2022-12-07T09:15:33.490295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} +{"Time":"2022-12-07T09:15:33.490303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} +{"Time":"2022-12-07T09:15:33.490305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:33.490307+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:33.490308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.4928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.492 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"108.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cf4c71b8-c018-4f77-88bc-f45d3ba163c1\"}\n"} +{"Time":"2022-12-07T09:15:33.493134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.492 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"36.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"acb5fa0d-2fe2-46c4-91e0-8b97344eaef1\"}\n"} +{"Time":"2022-12-07T09:15:33.495757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.041µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"d97da3a8-8eed-4b5a-9720-3d356b047b2b\"}\n"} +{"Time":"2022-12-07T09:15:33.495762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ef73821-0cf6-4b22-8e58-f74ec0b28b4c\"}\n"} +{"Time":"2022-12-07T09:15:33.496553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.496 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"521.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9933630c-7300-4f9c-b8c8-b6580ee89d63\"}\n"} +{"Time":"2022-12-07T09:15:33.496677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.496 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/organizations/1bf238fd-05e5-47ae-b110-1456fc0308de/templates/my-template\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.333µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"27e78cf0-03b4-40d9-ba43-30b781b1c333\"}\n"} +{"Time":"2022-12-07T09:15:33.496794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" templatecreate_test.go:155: 2022-12-07 08:15:33.496: cmd: matched \"Create and upload\" = \"\u003e Create and upload\"\n"} +{"Time":"2022-12-07T09:15:33.496799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" templatecreate_test.go:156: 2022-12-07 08:15:33.496: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:33.49699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.496: cmd: stdout: \"\u003e Create and upload \\\"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:33.497491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.497 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7263ed70-fd60-4d8a-a3c3-29a7bbd747ba\"}\n"} +{"Time":"2022-12-07T09:15:33.49843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.498 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/organizations/1bf238fd-05e5-47ae-b110-1456fc0308de/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"644.916µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9b478511-b110-4565-9ade-9af198a20466\"}\n"} +{"Time":"2022-12-07T09:15:33.498535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.498: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:33.498801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.498 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/3fa5a5db-280c-4126-8537-cacd9fce88e0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b622995b-34ec-456a-b221-ae9d3c9b4fdf\"}\n"} +{"Time":"2022-12-07T09:15:33.501861+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.501865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.501867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.501 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.501869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.501 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.501871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.501 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.502093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.501 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.510806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"781.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"972247be-cfdb-4d27-be2e-d4df1b2742cc\"}\n"} +{"Time":"2022-12-07T09:15:33.515394+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.515402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.515404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.515 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"600.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a8994430-7fa4-47ec-bea4-8909d339da9a\"}\n"} +{"Time":"2022-12-07T09:15:33.529875+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:33.529886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:33.529888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.528 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.529891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.528 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.529893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.528 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.529908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.528 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.52991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.528 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.529912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.528 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.529914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.528 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.529915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:33.529917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:33.529919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:33.529922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:33.529923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:33.529925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:33.529927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:33.529928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:33.529931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.529933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.535394+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.535401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.535402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"685bf985-aaa5-4c89-8c82-c27fceb33602\"}\n"} +{"Time":"2022-12-07T09:15:33.539667+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.539673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.539675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.539 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"455.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0d3ced8-783b-47fc-b397-a365757b4bc1\"}\n"} +{"Time":"2022-12-07T09:15:33.552099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.552109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.552111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.552 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.552226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.552 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.552235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.552 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.553645+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:33.553672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:33.553679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.553 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:33.559584+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.559595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.559598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.559 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"338.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ebb79ae9-d70b-433b-b264-dcb86fdea724\"}\n"} +{"Time":"2022-12-07T09:15:33.564425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.564432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.564434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.564 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3597bab7-01bc-4858-afab-d73e2cdabf09\"}\n"} +{"Time":"2022-12-07T09:15:33.5825+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:33.582511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:33.582514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.582516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.582518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.58252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.582522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.582524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:33.582525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:33.582527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:33.582529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:33.582531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:33.582532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:33.582534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.584369+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.584379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.584382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.584 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"333.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90e25260-a1f2-4391-bc8d-5429d81bd39e\"}\n"} +{"Time":"2022-12-07T09:15:33.589457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.589464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.589466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"45969558-369e-40a1-bd07-f9df933be78d\"}\n"} +{"Time":"2022-12-07T09:15:33.592391+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:33.592397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.592399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.592 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:33.60366+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.603671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.603673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.603676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.603678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.60368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.603681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.604525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:33.60453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:33.604532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} +{"Time":"2022-12-07T09:15:33.604537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.603 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} +{"Time":"2022-12-07T09:15:33.60454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.603 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:33.604548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.60455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.604552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.604 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.604554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.604 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/621695553.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.604556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.604 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} +{"Time":"2022-12-07T09:15:33.604557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.604 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} +{"Time":"2022-12-07T09:15:33.610094+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.610142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.610146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.609 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"583.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fdd73114-5416-412a-8885-21470079e5b0\"}\n"} +{"Time":"2022-12-07T09:15:33.614875+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.614891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.614894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.614 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"983be1f2-15a3-42cc-83d0-674cb026cfcc\"}\n"} +{"Time":"2022-12-07T09:15:33.633214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:33.633231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:33.633234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.633237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [INFO]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:33.633239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [INFO]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:33.633242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.633244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.633245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.633247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.633313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} +{"Time":"2022-12-07T09:15:33.633319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/e7c319b9-9c9c-42db-85fc-1b14a7d4cbda/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.235084ms\", \"status_code\": 101, \"latency_ms\": 348, \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\"}\n"} +{"Time":"2022-12-07T09:15:33.634497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/e7c319b9-9c9c-42db-85fc-1b14a7d4cbda\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"189e7e10-93a7-4cf9-abe3-1a6e6d08af48\"}\n"} +{"Time":"2022-12-07T09:15:33.634687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.634714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.63472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"646.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e4490bec-2f5c-41f9-9427-beb4cef619f5\"}\n"} +{"Time":"2022-12-07T09:15:33.635174+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:33.635184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:33.635189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/e7c319b9-9c9c-42db-85fc-1b14a7d4cbda\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eeec573c-4604-40c6-9a8b-04a3bb80a84d\"}\n"} +{"Time":"2022-12-07T09:15:33.635451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/e7c319b9-9c9c-42db-85fc-1b14a7d4cbda/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"196588ce-4745-47fa-9324-82e2ef414f16\"}\n"} +{"Time":"2022-12-07T09:15:33.635863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/e7c319b9-9c9c-42db-85fc-1b14a7d4cbda/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6cc25f98-2906-48b4-9f0c-00ceebf5861b\"}\n"} +{"Time":"2022-12-07T09:15:33.636268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/e7c319b9-9c9c-42db-85fc-1b14a7d4cbda/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2bbd9791-d314-4b7d-a9d7-3cf51905979c\"}\n"} +{"Time":"2022-12-07T09:15:33.636955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/organizations/6319f3f6-0918-4597-9470-6ab6ae5b9f5b/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"25e01f21-e2f2-4b84-af58-4367e4ba7ec2\"}\n"} +{"Time":"2022-12-07T09:15:33.639489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.638 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.25µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"b13c904b-99d7-4861-a34c-f043d33a0320\"}\n"} +{"Time":"2022-12-07T09:15:33.639501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.639 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b4fb9b0-bbb6-401c-b257-6c406ef4b4ca\"}\n"} +{"Time":"2022-12-07T09:15:33.639504+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.639505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.639507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.639 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9ea0bcb5-b990-48cc-acdd-fd450bbe8ed8\"}\n"} +{"Time":"2022-12-07T09:15:33.640193+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:33.640205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:33.640208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.639 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"af020eb7-8206-4472-93a1-997860d539af\"}\n"} +{"Time":"2022-12-07T09:15:33.640838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.640 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/organizations/6319f3f6-0918-4597-9470-6ab6ae5b9f5b/templates/my-template\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dabc5232-1b6f-4304-b4fb-a21e3d49dd76\"}\n"} +{"Time":"2022-12-07T09:15:33.641187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.640 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templates/91b4defa-b4c9-49ea-bd5b-8cb98568fdf8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"329.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a57a88d4-5483-470e-a869-84ef83e71f19\"}\n"} +{"Time":"2022-12-07T09:15:33.642923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:33.642936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.642938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} +{"Time":"2022-12-07T09:15:33.642941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} +{"Time":"2022-12-07T09:15:33.642944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:33.642946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.642948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.642952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.643252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/1192496900.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.643261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} +{"Time":"2022-12-07T09:15:33.643263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.643 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} +{"Time":"2022-12-07T09:15:33.644259+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:33.644267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:33.64427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.644 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.541µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"5850f7dd-fcba-4b4d-9f85-904def0ac90e\"}\n"} +{"Time":"2022-12-07T09:15:33.644274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.644 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"99.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c8c4844f-1141-48c3-9e5d-85ec3f038c15\"}\n"} +{"Time":"2022-12-07T09:15:33.644915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.644 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"433.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"42136b84-b453-41f8-9e6d-a6dd69315894\"}\n"} +{"Time":"2022-12-07T09:15:33.645267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.644 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/organizations/6319f3f6-0918-4597-9470-6ab6ae5b9f5b/templates/my-template\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"32.125µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"6fc472ec-a010-4c33-ac70-fd76df65974f\"}\n"} +{"Time":"2022-12-07T09:15:33.647613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.646 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"948.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e3b9888b-334a-49c2-963c-016aa35298ff\"}\n"} +{"Time":"2022-12-07T09:15:33.64794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.647 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/organizations/6319f3f6-0918-4597-9470-6ab6ae5b9f5b/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"813.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0e42bc43-94ec-45bf-b1c8-48a7027106f4\"}\n"} +{"Time":"2022-12-07T09:15:33.648749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.648 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/a778338b-bb13-40d0-8e5a-0f8be48cf282\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"542.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3610346-9096-40c3-96f0-90f3d4c4c63a\"}\n"} +{"Time":"2022-12-07T09:15:33.652423+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:33.65243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:33.652432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.652 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.958µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:33.654762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} +{"Time":"2022-12-07T09:15:33.654855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.654 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} +{"Time":"2022-12-07T09:15:33.655322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.65537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.655375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.655 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.655378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.655 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.655383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.655 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.655384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.655 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.655393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.655 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.661042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"464.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e2c6ba17-1e7e-46de-8de8-929b836b9987\"}\n"} +{"Time":"2022-12-07T09:15:33.665214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.665225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.665227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.664 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"537.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3f540a4b-d22f-487b-9040-65f6fd4c8e74\"}\n"} +{"Time":"2022-12-07T09:15:33.684695+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.684711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.684714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.684 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6e775ef-ef4d-4a2f-afe3-0a699558a203\"}\n"} +{"Time":"2022-12-07T09:15:33.690922+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.690931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.690933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"533.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d107ea1b-f4da-4224-b9fa-edbdd7689c45\"}\n"} +{"Time":"2022-12-07T09:15:33.690946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.690952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.690956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:33.690958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.691129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.691142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.691144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"workspace_name\": \"lucid-roentgen1\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:33.691146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.691 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.691149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.691 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.691598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:33.691604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.691606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.691 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"9.417µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:33.69338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.693 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} +{"Time":"2022-12-07T09:15:33.693492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.693 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} +{"Time":"2022-12-07T09:15:33.706915+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.706926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.706929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.706931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.706933+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:33.706935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:33.706936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} +{"Time":"2022-12-07T09:15:33.706943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.706945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.706947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.706949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.70695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} +{"Time":"2022-12-07T09:15:33.706952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} +{"Time":"2022-12-07T09:15:33.706954+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.706974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.706976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.706 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} +{"Time":"2022-12-07T09:15:33.706978+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:33.706979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:33.706981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:33.706982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:33.706984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:33.706986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:33.706987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"request_id\": \"f574ec3c-9b5a-4092-98c5-7e9ee1f6a40b\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:33.706994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"request_id\": \"f574ec3c-9b5a-4092-98c5-7e9ee1f6a40b\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:33.706996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"request_id\": \"f574ec3c-9b5a-4092-98c5-7e9ee1f6a40b\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:33.706997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"request_id\": \"f574ec3c-9b5a-4092-98c5-7e9ee1f6a40b\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:33.706999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:186\u003e\t(*Runner).Run\tsending FailedJob\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} +{"Time":"2022-12-07T09:15:33.707407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.707: cmd: stdout: \"\\x1b[1A\\r✔ Queued [142ms]\"\n"} +{"Time":"2022-12-07T09:15:33.707416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.707: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:33.708151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.707: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [1ms]\"\n"} +{"Time":"2022-12-07T09:15:33.708155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.707: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:33.708156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.707: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [50ms]\"\n"} +{"Time":"2022-12-07T09:15:33.708158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.707: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:33.714466+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.714476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.714478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.714 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6154c79f-61a7-4204-92cc-a7bf63ccc38c\"}\n"} +{"Time":"2022-12-07T09:15:33.715071+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} +{"Time":"2022-12-07T09:15:33.715097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} +{"Time":"2022-12-07T09:15:33.715104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.715 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a536171-716e-4ab0-a721-295a2cd7b7e5\"}\n"} +{"Time":"2022-12-07T09:15:33.715624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.715 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspaces/eaffda38-5e56-4714-bd85-8e8db6530ad1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8a1b511-dc91-4aaa-abe6-1cc7904c2bbc\"}\n"} +{"Time":"2022-12-07T09:15:33.718731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.718 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"34.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2728783f-79f9-4a1e-bdf9-5b690673a6ea\"}\n"} +{"Time":"2022-12-07T09:15:33.718824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.718 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"32.084µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"01077183-78c0-464d-a802-6119c689d969\"}\n"} +{"Time":"2022-12-07T09:15:33.719976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.719 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/users/me/workspace/busy-nightingale9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"606µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a44e448-9686-4698-a67e-b206d8537238\"}\n"} +{"Time":"2022-12-07T09:15:33.720966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.720 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspaces/eaffda38-5e56-4714-bd85-8e8db6530ad1/extend\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"912.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"976d7e63-45c7-499e-9f04-eb096b7596f8\"}\n"} +{"Time":"2022-12-07T09:15:33.723377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.722 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/users/me/workspace/busy-nightingale9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"629.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"725340c1-cb51-4e62-b544-d78cff584c7f\"}\n"} +{"Time":"2022-12-07T09:15:33.725298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.725 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspaces/eaffda38-5e56-4714-bd85-8e8db6530ad1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"611.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e417d7c4-35f5-4019-a252-ef5fc41b2b32\"}\n"} +{"Time":"2022-12-07T09:15:33.725799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.725 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:33.727127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:33.727136+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:33.727141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:33.730822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"214µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"001c25c9-e70e-452a-9427-1da704f24b8a\"}\n"} +{"Time":"2022-12-07T09:15:33.731057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"95.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9958f6ce-8fe7-4bf7-b0fb-42e403cb11d7\"}\n"} +{"Time":"2022-12-07T09:15:33.732155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.731 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"588.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"65130516-cb35-4647-b84d-711aba87ce04\"}\n"} +{"Time":"2022-12-07T09:15:33.732671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.732 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/organizations/c5fc3c05-416b-43be-9ac3-1fe76fc4b712/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"709.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3fca6063-a51c-43c4-8045-e9ad799e4b75\"}\n"} +{"Time":"2022-12-07T09:15:33.732741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" show_test.go:25: waiting for template version job fdd62948-cc68-45d4-a103-4cf539d26b72\n"} +{"Time":"2022-12-07T09:15:33.742581+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.742598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.742602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.741 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.742605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.741 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.742608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.741 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.74261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.741 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.742611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.742 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.262291ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0f061c7f-3fad-4114-9c1d-40ba1f92dca6\"}\n"} +{"Time":"2022-12-07T09:15:33.74385+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:33.743858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.743861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} +{"Time":"2022-12-07T09:15:33.743863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.743866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.743868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.74387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.743872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} +{"Time":"2022-12-07T09:15:33.743874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} +{"Time":"2022-12-07T09:15:33.743875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:33.743877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:33.743878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:33.74388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:33.743882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"request_id\": \"2e42cb68-71d4-4504-9bdc-94eb66bd2605\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:33.743889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"request_id\": \"2e42cb68-71d4-4504-9bdc-94eb66bd2605\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:33.745337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"request_id\": \"2e42cb68-71d4-4504-9bdc-94eb66bd2605\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:33.745348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"request_id\": \"2e42cb68-71d4-4504-9bdc-94eb66bd2605\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:33.745351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:186\u003e\t(*Runner).Run\tsending FailedJob\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} +{"Time":"2022-12-07T09:15:33.747154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.745: cmd: stdout: \"\\x1b[1A\\r✔ Queued [143ms]\"\n"} +{"Time":"2022-12-07T09:15:33.747165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.745: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:33.747168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.745: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [1ms]\"\n"} +{"Time":"2022-12-07T09:15:33.747169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.745: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:33.747171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.745: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [50ms]\"\n"} +{"Time":"2022-12-07T09:15:33.747173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.745: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:33.758485+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:33.758498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:33.758501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.757 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:470\u003e\t(*Server).FailJob\tFailJob starting\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} +{"Time":"2022-12-07T09:15:33.758503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} +{"Time":"2022-12-07T09:15:33.758505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} +{"Time":"2022-12-07T09:15:33.758507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.757 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:191\u003e\t(*Runner).Run\tsent FailedJob\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} +{"Time":"2022-12-07T09:15:33.758509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/57a5645a-f5a1-44b4-8314-ec42bef02972/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.665625ms\", \"status_code\": 101, \"latency_ms\": 295, \"request_id\": \"f574ec3c-9b5a-4092-98c5-7e9ee1f6a40b\"}\n"} +{"Time":"2022-12-07T09:15:33.759307+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:33.759317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:33.75932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"336.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d65b1001-28be-43e6-8e8f-5e0ed80a3423\"}\n"} +{"Time":"2022-12-07T09:15:33.761151+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:33.761157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:33.761159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/57a5645a-f5a1-44b4-8314-ec42bef02972\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"59b051c4-169c-4471-8511-83279f10ddaf\"}\n"} +{"Time":"2022-12-07T09:15:33.763716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.761: cmd: stdout: \"\\x1b[1A\\r✘ Cleaning Up [103ms]\"\n"} +{"Time":"2022-12-07T09:15:33.763723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.761 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/57a5645a-f5a1-44b4-8314-ec42bef02972\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"342.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"505391fd-ea14-4506-b14c-2e41d0cece35\"}\n"} +{"Time":"2022-12-07T09:15:33.763726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.763 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/57a5645a-f5a1-44b4-8314-ec42bef02972/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.790708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c72f4255-106a-4152-904c-34985165eaa9\"}\n"} +{"Time":"2022-12-07T09:15:33.763728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.763 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/57a5645a-f5a1-44b4-8314-ec42bef02972/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"48d1ebda-1c60-4b43-b535-d9efa391a434\"}\n"} +{"Time":"2022-12-07T09:15:33.763925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.763: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:33.763954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.763: cmd: stdout: \" This template has required variables! They are scoped to \"\n"} +{"Time":"2022-12-07T09:15:33.763984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.763: cmd: stdout: \" the template, and not viewable after being set. \"\n"} +{"Time":"2022-12-07T09:15:33.763988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.763: cmd: stdout: \"\\r\"\n"} +{"Time":"2022-12-07T09:15:33.763992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.763: cmd: stdout: \"\\x1b[1mvar.region\\x1b[0m\"\n"} +{"Time":"2022-12-07T09:15:33.764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.763: cmd: stdout: \" description\"\n"} +{"Time":"2022-12-07T09:15:33.764004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.763: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:33.764446+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.764453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.764457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.764 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d8d9a4cb-e342-40f7-9a93-d749d43bbe45\"}\n"} +{"Time":"2022-12-07T09:15:33.765655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:33.76566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:33.765671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" templatecreate_test.go:116: 2022-12-07 08:15:33.764: cmd: matched \"Enter a value:\" = \" \\\"/tmp/TestTemplateCreateWithParameter508008006/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [142ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [1ms]\\r\\n⧗ \\x1b[;mParsing template parameters\\x1b[0m \\r\\n\\x1b[1A\\r✔ Parsing template parameters [50ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✘ Cleaning Up [103ms]\\r\\n \\r\\n This template has required variables! They are scoped to \\r\\n the template, and not viewable after being set. \\r\\n\\r\\r\\n\\x1b[1mvar.region\\x1b[0m\\r\\n description\\r\\n\\r\\n\u003e \\x1b[1mEnter a value:\"\n"} +{"Time":"2022-12-07T09:15:33.765675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" templatecreate_test.go:117: 2022-12-07 08:15:33.764: cmd: stdin: \"bananas\\r\"\n"} +{"Time":"2022-12-07T09:15:33.765677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/organizations/e91b6d6a-25e4-4153-863f-a156e345bea7/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"809.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e59fbeac-5c67-4ea9-89dc-56bbd6e5323c\"}\n"} +{"Time":"2022-12-07T09:15:33.766385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.766 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/a4d483d1-cdc5-4198-959a-64d91fb00351\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57914a10-be6e-4eee-bb6b-f3c6f743a7f3\"}\n"} +{"Time":"2022-12-07T09:15:33.767023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.766: cmd: stdout: \"\u003e \\x1b[1mEnter a value:\\x1b[0m bananas\"\n"} +{"Time":"2022-12-07T09:15:33.767028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.766: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:33.76703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.766: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:33.783623+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:33.78364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:33.783644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"365.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"542ea9d7-a44f-407f-b3fc-75b84c500c55\"}\n"} +{"Time":"2022-12-07T09:15:33.790056+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.790067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.79007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.789 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a139b1d-ec62-46bf-84da-754292c91b31\"}\n"} +{"Time":"2022-12-07T09:15:33.795397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.795 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.795407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:33.795409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.79541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.795 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:470\u003e\t(*Server).FailJob\tFailJob starting\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} +{"Time":"2022-12-07T09:15:33.795712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.795721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.795948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.795 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.795953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.795 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.795956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:33.795958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:33.795959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.795 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} +{"Time":"2022-12-07T09:15:33.795961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.795 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} +{"Time":"2022-12-07T09:15:33.795963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.795 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:191\u003e\t(*Runner).Run\tsent FailedJob\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} +{"Time":"2022-12-07T09:15:33.796047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.795 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/3fa5a5db-280c-4126-8537-cacd9fce88e0/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296.514375ms\", \"status_code\": 101, \"latency_ms\": 296, \"request_id\": \"2e42cb68-71d4-4504-9bdc-94eb66bd2605\"}\n"} +{"Time":"2022-12-07T09:15:33.798166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.798 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/3fa5a5db-280c-4126-8537-cacd9fce88e0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"674.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a7a30f5a-1d93-4389-b5d4-fee64ecdd84e\"}\n"} +{"Time":"2022-12-07T09:15:33.798372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.798: cmd: stdout: \"\\x1b[1A\\r✘ Cleaning Up [102ms]\"\n"} +{"Time":"2022-12-07T09:15:33.799215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.798 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/3fa5a5db-280c-4126-8537-cacd9fce88e0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4ca0f072-694e-453e-9a24-8adc50d84d1e\"}\n"} +{"Time":"2022-12-07T09:15:33.799225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.799 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/3fa5a5db-280c-4126-8537-cacd9fce88e0/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"260.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96c3cc7e-83f7-4e09-9e72-3b4cf16b641c\"}\n"} +{"Time":"2022-12-07T09:15:33.799739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.799 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/3fa5a5db-280c-4126-8537-cacd9fce88e0/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b576418b-4e2b-4729-845e-9bf0f6683cde\"}\n"} +{"Time":"2022-12-07T09:15:33.800094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:33.800102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \" Attempting to read the variables from the parameter file. \\r\"\n"} +{"Time":"2022-12-07T09:15:33.800104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:33.800107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:33.800109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \" This template has required variables! They are scoped to \"\n"} +{"Time":"2022-12-07T09:15:33.80011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \" the template, and not viewable after being set. \"\n"} +{"Time":"2022-12-07T09:15:33.800112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \"\\r\"\n"} +{"Time":"2022-12-07T09:15:33.800113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:33.801511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.800 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/organizations/1bf238fd-05e5-47ae-b110-1456fc0308de/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"588.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8ec97055-8dd1-4b6d-bcc2-a70c3bde3196\"}\n"} +{"Time":"2022-12-07T09:15:33.801521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.801 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/4171db07-e4f7-477a-ac66-0c320d545b52\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"250.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"142c5f5d-d1eb-4ec4-addc-56d20dacc273\"}\n"} +{"Time":"2022-12-07T09:15:33.801644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.801: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:33.8105+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:33.810516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:33.810519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.015333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"82328f45-421b-4281-8253-c9bf14fde6f0\"}\n"} +{"Time":"2022-12-07T09:15:33.81778+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.817796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.817799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.816 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"900.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9c7721c1-373d-45e9-a5be-e903075e390b\"}\n"} +{"Time":"2022-12-07T09:15:33.829083+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:33.829104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:33.829107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.829 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:33.833755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.833 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"595.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8e7f2b7-0d78-48ef-b971-2563dda540bb\"}\n"} +{"Time":"2022-12-07T09:15:33.839478+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.839488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.83949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.839 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"416.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"941ac260-27a3-4777-85eb-bc2cf0fbc776\"}\n"} +{"Time":"2022-12-07T09:15:33.846128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.846 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.846141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.846 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"stage\": \"Stopping workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.846146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.846 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.846185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.846 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.846235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.846 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.858392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:33.858401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:33.858404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.858 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"335.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b8d81d27-21af-4ce2-a87c-2e749efbc828\"}\n"} +{"Time":"2022-12-07T09:15:33.865193+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.865205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.865207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.864 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"494085cf-ad68-4551-a195-d510d4536d16\"}\n"} +{"Time":"2022-12-07T09:15:33.879994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:33.880008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:33.880011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.879 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:33.880013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.879 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:33.880019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.879 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:33.880021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.879 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"size_bytes\": 2, \"path\": \"/tmp/TestShowExists2135269818/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.880023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.879 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"size_bytes\": 41, \"path\": \"/tmp/TestShowExists2135269818/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.880026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.879 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"size_bytes\": 41, \"path\": \"/tmp/TestShowExists2135269818/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.880028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.880 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:33.88041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.880 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:33.883598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.883 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"538.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dc44d218-17da-4a52-a29e-9732079da26f\"}\n"} +{"Time":"2022-12-07T09:15:33.889501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.889526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.889533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.889 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"326.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d63b835a-948b-4f2d-a124-0f95e9d84e6e\"}\n"} +{"Time":"2022-12-07T09:15:33.892786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.892795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.892798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.892 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:33.892888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.892 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:33.892907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.892 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:33.892957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.892 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.892967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.892 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.892971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.892 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:33.893007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.892 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"workspace_name\": \"sweet-bassi0\", \"state_length\": 16, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:33.893098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.893 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:33.893133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.893 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.896538+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.896544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.896547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.896 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.89655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.896 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.896577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.896 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.89662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.896 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.896625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.896 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.908642+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:33.90866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:33.908663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.908 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"507.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"87dc6917-6916-4c8e-ad2d-ec82d7b47fec\"}\n"} +{"Time":"2022-12-07T09:15:33.914981+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.914988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.914991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.914 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"408.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2a7783ee-eaec-4be3-8415-4bb41259eff3\"}\n"} +{"Time":"2022-12-07T09:15:33.928317+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:33.928338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:33.928344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.928 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.625µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:33.930502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.930 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:33.930788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.930 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.933379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"279.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d768f9a6-efa0-4851-996c-218f46b3aa22\"}\n"} +{"Time":"2022-12-07T09:15:33.939475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.939482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.939484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.939 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"059e6b30-c4cc-4a8c-a023-a6f6c12ff265\"}\n"} +{"Time":"2022-12-07T09:15:33.943801+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.943806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.943808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.943 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:33.94381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.943 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.943812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.943 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:33.943814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.943 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:33.943816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.943 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:33.944428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.943 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"request_id\": \"a20a35bc-5308-4adf-ad96-9f663ad92a3b\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:33.946821+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.946826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.946828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.946 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.946841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.946 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.946843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.946 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} +{"Time":"2022-12-07T09:15:33.959455+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:33.959465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:33.959468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a34b4eb-a283-4fab-aca3-1261cc8d73af\"}\n"} +{"Time":"2022-12-07T09:15:33.964431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.964439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.964442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.964 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58f950da-e192-4f3d-912d-74135d33e24f\"}\n"} +{"Time":"2022-12-07T09:15:33.964978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.964 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b73129b3-1bde-47c8-b0e5-0101c9e36add\"}\n"} +{"Time":"2022-12-07T09:15:33.965468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.965 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"268.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f87efaa-aa15-47dd-ae44-c0d05edaee36\"}\n"} +{"Time":"2022-12-07T09:15:33.966537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.966 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templates/a8cc2c71-95d9-4593-8c1e-9a96f840ad30\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"734.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57ea74d1-911e-4d61-bf61-e2493e3eb0b7\"}\n"} +{"Time":"2022-12-07T09:15:33.966999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.966 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"151b6b24-a6d5-45fc-93b8-efebc26b17c6\"}\n"} +{"Time":"2022-12-07T09:15:33.967086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" schedule_test.go:333: waiting for workspace build job 70169787-57a4-4004-9b0e-241b776935d6\n"} +{"Time":"2022-12-07T09:15:33.982269+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:33.982283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:33.982286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:33.982289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.982292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.982294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.982296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:33.982297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:33.982299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:33.982301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:33.982303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.981 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:33.983251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b1b09df-4d24-4c0a-b59e-7c9d48282874\"}\n"} +{"Time":"2022-12-07T09:15:33.99373+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:33.99376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:33.993768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.993 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"505.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"60c67446-1434-4911-b1e4-c10980fd4cad\"}\n"} +{"Time":"2022-12-07T09:15:33.994094+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:33.994106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:33.994108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.994 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:33.994219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.994 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:33.994225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.994 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.00836+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.008371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.008374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.008 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2dc447a2-e51a-4aa3-ab8f-7d829b74530b\"}\n"} +{"Time":"2022-12-07T09:15:34.017971+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.017992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.017995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.017 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"322.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58fbc4e0-5099-496e-8ecd-ea2a2db0be87\"}\n"} +{"Time":"2022-12-07T09:15:34.031803+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.031814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.031816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.031 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:34.031822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.031 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.031824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.031 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.031826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.031 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:34.031834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.031 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:34.031836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.031 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:34.034495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.034 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b86a15ca-4ce7-4bb6-85e8-3c2130cbd734\"}\n"} +{"Time":"2022-12-07T09:15:34.042766+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.042796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.04281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.042 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7ed80776-c029-4e94-aab7-0c4c9bed9962\"}\n"} +{"Time":"2022-12-07T09:15:34.04438+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:34.044385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:34.044388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:34.04439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.044416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:34.044419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:34.044422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:34.044424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:34.044649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"request_id\": \"a20a35bc-5308-4adf-ad96-9f663ad92a3b\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:34.044654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:34.044657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"request_id\": \"a20a35bc-5308-4adf-ad96-9f663ad92a3b\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:34.058789+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.058814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.058817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"429.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"18dbfc38-55aa-48fb-8a3e-917aad04c7e2\"}\n"} +{"Time":"2022-12-07T09:15:34.068416+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.068437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.068442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.068 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"731.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c6cec221-bc9f-4170-ba13-b338f4d818e0\"}\n"} +{"Time":"2022-12-07T09:15:34.08198+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.081996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.081999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.081 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:34.082001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.081 [INFO]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:34.082007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.081 [INFO]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:34.08202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.081 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:34.082022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.081 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:34.082025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.081 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} +{"Time":"2022-12-07T09:15:34.083876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8cf68bd6-ef6c-4335-a866-1d5aa19b45d6\"}\n"} +{"Time":"2022-12-07T09:15:34.084533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.084 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/organizations/c5fc3c05-416b-43be-9ac3-1fe76fc4b712/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4b82c5cd-5062-4c71-962a-b998a4b332bb\"}\n"} +{"Time":"2022-12-07T09:15:34.085085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.085 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/organizations/c5fc3c05-416b-43be-9ac3-1fe76fc4b712/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"587µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e9f6f6f5-9b0d-4b6e-9c2e-cf321807ff1d\"}\n"} +{"Time":"2022-12-07T09:15:34.08523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" show_test.go:28: waiting for workspace build job 65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\n"} +{"Time":"2022-12-07T09:15:34.092918+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.092924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.092927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.092 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"483.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"18d9bbe2-6391-4a41-bb15-165e8c16d9ae\"}\n"} +{"Time":"2022-12-07T09:15:34.09493+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:34.094941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:34.094958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:34.094961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.094963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:34.094965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:34.094966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:34.094968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:34.09497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"request_id\": \"a20a35bc-5308-4adf-ad96-9f663ad92a3b\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:34.094972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"request_id\": \"a20a35bc-5308-4adf-ad96-9f663ad92a3b\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:34.094973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:34.111482+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.111501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.111504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"734.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9218d46d-8275-4fcc-baac-84a8bd107487\"}\n"} +{"Time":"2022-12-07T09:15:34.117754+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.117766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.117769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.117 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1928ae98-38e2-450d-b294-120495c09453\"}\n"} +{"Time":"2022-12-07T09:15:34.119407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:34.119418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:34.119421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.119423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.119425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:34.119427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.11943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"size_bytes\": 41, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.119432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"size_bytes\": 41, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.119434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/3537461467.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.119435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.119443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:34.135853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.135869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.135872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.135 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"424.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"34488a62-0b20-4c12-bc5e-23b27a6124e3\"}\n"} +{"Time":"2022-12-07T09:15:34.1427+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.142711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.142714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.142 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"354.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3bd8d96e-039a-45c3-aff0-f8acf044d296\"}\n"} +{"Time":"2022-12-07T09:15:34.145035+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} +{"Time":"2022-12-07T09:15:34.145044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} +{"Time":"2022-12-07T09:15:34.145046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.144 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:34.14505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.145 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:34.145167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.145 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:34.145172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.145 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:34.145174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.145 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} +{"Time":"2022-12-07T09:15:34.145323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.145 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/3eb4616b-c2d1-4335-98ec-a5ebfdaa2255/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"927.862917ms\", \"status_code\": 101, \"latency_ms\": 927, \"request_id\": \"a20a35bc-5308-4adf-ad96-9f663ad92a3b\"}\n"} +{"Time":"2022-12-07T09:15:34.148174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.147 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/3eb4616b-c2d1-4335-98ec-a5ebfdaa2255\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"886.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44ac0260-c6d8-4e51-98f9-0d2988bbe5f2\"}\n"} +{"Time":"2022-12-07T09:15:34.148184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.147 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:34.149138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.149144+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK"} +{"Time":"2022-12-07T09:15:34.149146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":"=== CONT TestPublicKey/OK\n"} +{"Time":"2022-12-07T09:15:34.151531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":" t.go:81: 2022-12-07 08:15:34.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56914\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"104.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"adfaeae4-5e72-42e5-8ff8-0ceb3a42243d\"}\n"} +{"Time":"2022-12-07T09:15:34.151791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":" t.go:81: 2022-12-07 08:15:34.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56914\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"57.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e6eca063-061c-4561-b9cc-3732a1d5cad5\"}\n"} +{"Time":"2022-12-07T09:15:34.157207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":" t.go:81: 2022-12-07 08:15:34.156 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56914\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"49.709µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"9a274abe-ddc4-4378-aa9f-ac3aea317dae\"}\n"} +{"Time":"2022-12-07T09:15:34.15744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":" t.go:81: 2022-12-07 08:15:34.157 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56914\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"421d8a5e-93de-48c6-8d67-b7ab0a22cc9b\"}\n"} +{"Time":"2022-12-07T09:15:34.158854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":" t.go:81: 2022-12-07 08:15:34.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56914\", \"path\": \"/api/v2/users/me/gitsshkey\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.374958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2224e780-6072-4730-80b4-8e64158f2dc1\"}\n"} +{"Time":"2022-12-07T09:15:34.159548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.159585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey","Output":"--- PASS: TestPublicKey (0.00s)\n"} +{"Time":"2022-12-07T09:15:34.159591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":" --- PASS: TestPublicKey/OK (0.01s)\n"} +{"Time":"2022-12-07T09:15:34.159593+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Elapsed":0.01} +{"Time":"2022-12-07T09:15:34.159596+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestPublicKey","Elapsed":0} +{"Time":"2022-12-07T09:15:34.159598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.159599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.162311+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.162327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.16233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"602.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7676df6-f166-468b-aeb1-794883a38ccc\"}\n"} +{"Time":"2022-12-07T09:15:34.162712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.162716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.162725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"127.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2759a948-67a0-40ea-9550-38f0cecedd09\"}\n"} +{"Time":"2022-12-07T09:15:34.163044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"77.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"999abb64-4014-4989-ab59-71eaa585db2f\"}\n"} +{"Time":"2022-12-07T09:15:34.164251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.163 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"486.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b6c25472-296c-431c-9410-ce6f47c4ed20\"}\n"} +{"Time":"2022-12-07T09:15:34.16517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.165 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/organizations/2e411a51-ecff-4d82-b3f3-b30f8acf2451/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.0035ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"9c39e781-8b4b-4d38-b90b-1ff0d807bb61\"}\n"} +{"Time":"2022-12-07T09:15:34.165247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" templatedelete_test.go:27: waiting for template version job de1f153a-e67c-48e6-93a4-525a063da3b8\n"} +{"Time":"2022-12-07T09:15:34.169514+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.169539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.169545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.169 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"626.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cf3216db-f626-4602-85e6-507bfb35af7a\"}\n"} +{"Time":"2022-12-07T09:15:34.169556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:34.169562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:34.169567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.169 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.16966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.169 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.185935+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.185942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.185944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"454.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44844e41-c534-4e83-9328-f2cebd1b33c0\"}\n"} +{"Time":"2022-12-07T09:15:34.191348+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.191365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.191368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.190 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"414.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c5fc024-4502-4b4b-90c1-57dd2a3f72b9\"}\n"} +{"Time":"2022-12-07T09:15:34.194226+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.194232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.19424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.194 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"335.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"43e57c40-32d7-4711-bea8-6d7a3cc25546\"}\n"} +{"Time":"2022-12-07T09:15:34.20592+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:34.205927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:34.205932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.205 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.205934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.205 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.205936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.205 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:34.205947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.205 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.20622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.205 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.206229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.205 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.206231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.206 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"workspace_name\": \"tender-chatelet5\", \"state_length\": 16, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:34.206234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.206 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.206236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.206 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.211036+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.211043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.211054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"297736f5-b25d-4def-8c20-92b84235940c\"}\n"} +{"Time":"2022-12-07T09:15:34.215762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.215785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.215792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.215 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"357.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"85a65f53-f04f-46e9-a999-77aaab7a8431\"}\n"} +{"Time":"2022-12-07T09:15:34.217657+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.217666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.217669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.217 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"317.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97c8f559-8c69-4362-9c23-1a577a8d9b53\"}\n"} +{"Time":"2022-12-07T09:15:34.219835+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:34.219846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:34.21985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.219863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.219866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.220016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.220022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.220024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.220026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.220028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:34.22003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:34.220032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:34.220036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:34.220038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.220 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:34.220313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.220 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:34.220318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.220 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:34.22032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.220 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.220323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.220 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:34.220325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.220 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.236151+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.236175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.236178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"414.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"357acf16-3910-4c8f-8b85-4a7eb24b6fa5\"}\n"} +{"Time":"2022-12-07T09:15:34.2406+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.240611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.240614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.240 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8dbddf7f-49ba-4189-abff-8c3418855995\"}\n"} +{"Time":"2022-12-07T09:15:34.242609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.242617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.242619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.242 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"42cca319-b516-486c-b2d4-f9c00cde9de3\"}\n"} +{"Time":"2022-12-07T09:15:34.256669+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:34.256678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:34.25668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.256 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.256685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.256 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.256689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.256 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.256692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.256 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.256762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.256 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:34.256799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.256 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"request_id\": \"b6fd77ec-3187-4c81-834c-28f14a5ed32e\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:34.26063+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.260637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.260639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"323.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5ee95f34-639f-4385-a14c-ca3b28d536c6\"}\n"} +{"Time":"2022-12-07T09:15:34.261777+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.261805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.261816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.261 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:34.267898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.266 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"604µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"63a9c5ac-aea2-4367-beed-a35fc09fecc2\"}\n"} +{"Time":"2022-12-07T09:15:34.26791+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.267912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.267913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"396.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24639956-cccb-473a-b0f8-1a8a20f7f7a7\"}\n"} +{"Time":"2022-12-07T09:15:34.270547+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:34.270551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:34.270553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.270556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.270558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.270579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.270583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.270585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:34.270589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:34.270591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:34.270593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:34.270609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:34.270612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:34.270614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.285983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.285993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.285996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f51256fd-5002-414a-898c-857c14bbcd9d\"}\n"} +{"Time":"2022-12-07T09:15:34.290712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.290743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.290746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.290 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8860a228-e2eb-4077-90ed-59e2b48bddc9\"}\n"} +{"Time":"2022-12-07T09:15:34.292669+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.292674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.292676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.292 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"289.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ffa03eb3-7e75-4ec4-81e5-8df24ba0c8d7\"}\n"} +{"Time":"2022-12-07T09:15:34.297209+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:34.297215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:34.297279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.296 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.297283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.296 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.297316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.297 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:34.297318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.297 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.29732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.297 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.297322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.297 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.297324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.297 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/1192496900.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.297327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.297 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.297648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.297 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} +{"Time":"2022-12-07T09:15:34.307519+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:34.30765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:34.307661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.307 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.307664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.307 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.307666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.307 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.312112+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.312117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.31212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.311 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.312122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.311 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.312124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.311 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:34.312126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.311 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteOk733647125/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.312128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.312 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteOk733647125/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.312131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.312 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteOk733647125/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.312133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.312 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.312171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.312 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:34.312653+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.31266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.312662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.312 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae93428c-b469-4126-953c-10a6f4989606\"}\n"} +{"Time":"2022-12-07T09:15:34.316066+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.316071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.316073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.315 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d9d9808a-9419-48f4-9caf-7d3390c1ac90\"}\n"} +{"Time":"2022-12-07T09:15:34.317773+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.317777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.317779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.317 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"312.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6fc0901b-602e-4b36-8c5c-3cf964d3c198\"}\n"} +{"Time":"2022-12-07T09:15:34.32236+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} +{"Time":"2022-12-07T09:15:34.322366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} +{"Time":"2022-12-07T09:15:34.322368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.322371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [INFO]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:34.322373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [INFO]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:34.322382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.322384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.322387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.322389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.322391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} +{"Time":"2022-12-07T09:15:34.322393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/a778338b-bb13-40d0-8e5a-0f8be48cf282/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"671.168ms\", \"status_code\": 101, \"latency_ms\": 671, \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\"}\n"} +{"Time":"2022-12-07T09:15:34.324305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.324 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/a778338b-bb13-40d0-8e5a-0f8be48cf282\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"553.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f10bcf6b-70a6-4729-bddc-44f63195323c\"}\n"} +{"Time":"2022-12-07T09:15:34.325446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.325 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/a778338b-bb13-40d0-8e5a-0f8be48cf282\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c5afc1d3-0cf2-4db1-8081-a3d2f870adb2\"}\n"} +{"Time":"2022-12-07T09:15:34.326095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.325 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/a778338b-bb13-40d0-8e5a-0f8be48cf282/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"545.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"965a3eb1-33aa-48d3-aa58-cf7c86cb5f0f\"}\n"} +{"Time":"2022-12-07T09:15:34.326698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.326 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/a778338b-bb13-40d0-8e5a-0f8be48cf282/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"447.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e3b13657-41b2-443e-b157-a61b18d8f73c\"}\n"} +{"Time":"2022-12-07T09:15:34.327537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.327 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/a778338b-bb13-40d0-8e5a-0f8be48cf282/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"479.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8171a5e0-fd57-4d75-b5a2-bcc55350d86d\"}\n"} +{"Time":"2022-12-07T09:15:34.328268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.328 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/organizations/6319f3f6-0918-4597-9470-6ab6ae5b9f5b/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"465.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"72d85a5a-928f-4b92-b5b3-226d1e9eea9c\"}\n"} +{"Time":"2022-12-07T09:15:34.328276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.328 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:34.33094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.330951+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.330953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.334147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.333 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"162.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4327cfc9-0278-4d9d-acee-f1db580c93d6\"}\n"} +{"Time":"2022-12-07T09:15:34.334247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"47.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"93cecb57-2baf-4319-a10d-a7a10a39418c\"}\n"} +{"Time":"2022-12-07T09:15:34.334857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"405.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d3ac1549-eee8-4538-990f-10d9727b4fa1\"}\n"} +{"Time":"2022-12-07T09:15:34.335451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/organizations/857b3f85-c201-4d20-a9ba-1292089fc2d6/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"496.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"55c84a34-5d80-4930-a635-b532cd2f70ea\"}\n"} +{"Time":"2022-12-07T09:15:34.33554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" templatedelete_test.go:123: waiting for template version job dca34262-73a4-4f2f-92ea-3b6b930b15d5\n"} +{"Time":"2022-12-07T09:15:34.336322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.336328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.33633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.336 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aaee202b-8783-4397-b763-7b18d6e9c9e2\"}\n"} +{"Time":"2022-12-07T09:15:34.341683+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.341706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.34171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.341 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"441.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6e4065ad-2d6e-4d51-80d1-d573996c2abd\"}\n"} +{"Time":"2022-12-07T09:15:34.343625+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.343629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.343631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.343 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39849c6f-89f2-41c1-94b9-eb31d88bb74f\"}\n"} +{"Time":"2022-12-07T09:15:34.349043+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:34.349048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:34.350101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.348 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.350105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.348 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.357928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:34.357936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:34.357938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.35794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.357943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.357949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.357951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:34.357953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:34.357954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"request_id\": \"b6fd77ec-3187-4c81-834c-28f14a5ed32e\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:34.357956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"request_id\": \"b6fd77ec-3187-4c81-834c-28f14a5ed32e\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:34.357958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.361502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.361509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.36151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"459.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"575f9b57-c2f8-4e0b-894d-f047bc818c0a\"}\n"} +{"Time":"2022-12-07T09:15:34.361513+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.361515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.361516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.361 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.291µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:34.362959+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.362964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.362966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3703f8e6-de90-4de7-b932-57c23143ca75\"}\n"} +{"Time":"2022-12-07T09:15:34.364162+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.364167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.364169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.363 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.364172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.364 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.366206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.365 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"412.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f82d30c5-ba58-4a4e-8163-491983fe4141\"}\n"} +{"Time":"2022-12-07T09:15:34.369166+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.369171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.369173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.367 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"397.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7a4188fc-bb32-4497-aabd-0af0bec863e2\"}\n"} +{"Time":"2022-12-07T09:15:34.386015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.386026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.386029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.385 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c5b1a39f-ca8e-4096-9518-c1197f441421\"}\n"} +{"Time":"2022-12-07T09:15:34.38712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.387124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.387126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"300.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e5cbffef-b955-49e9-85a5-2399d1c22370\"}\n"} +{"Time":"2022-12-07T09:15:34.390099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.390109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.390111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.389 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.390114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.390117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:34.390794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.390799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.390801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.390803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"workspace_name\": \"lucid-roentgen1\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:34.390805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.390807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.390809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.39081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.390841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.390 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"410.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a3467702-9211-423f-a253-455e172c3574\"}\n"} +{"Time":"2022-12-07T09:15:34.392631+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.392636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.392638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.392 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e716bfec-54a6-44a8-954c-c78455032324\"}\n"} +{"Time":"2022-12-07T09:15:34.400625+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:34.40063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:34.400642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.400644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.400646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.400648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.40065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.400652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.400654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.400655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:34.400657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:34.400659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:34.40066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:34.400662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:34.400664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:34.400666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:34.400668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:34.400669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.400671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.399 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.400675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.400: cmd: stdout: \"\\x1b[1A\\r✔ Queued [496ms]\"\n"} +{"Time":"2022-12-07T09:15:34.400676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.400: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.400678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.400: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} +{"Time":"2022-12-07T09:15:34.400679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.400: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.400681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.400: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [51ms]\"\n"} +{"Time":"2022-12-07T09:15:34.401391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.400: cmd: stdout: \"⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.408968+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:34.408976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:34.408978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.408994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.408997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.408999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.409001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:34.409002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:34.409004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"request_id\": \"b6fd77ec-3187-4c81-834c-28f14a5ed32e\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:34.409006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"request_id\": \"b6fd77ec-3187-4c81-834c-28f14a5ed32e\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:34.409007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.410733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.410743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.410746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d81b1156-4459-412b-9f1b-0c4501e4b2f5\"}\n"} +{"Time":"2022-12-07T09:15:34.412481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.412486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.412488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.411 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"451.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16cf57a6-9778-445a-b4ff-c619248defdb\"}\n"} +{"Time":"2022-12-07T09:15:34.415076+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.41511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.415113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.414 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.415115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.414 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.415118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.414 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.41512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.414 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.415122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.414 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.415134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.414 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.415136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.414 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.415138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.415 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.415141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.415633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9036fe82-a59a-4486-869e-371a768e625d\"}\n"} +{"Time":"2022-12-07T09:15:34.417483+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.417487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.417489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.417 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd275db3-0e48-4b5f-949c-c972e85d61cf\"}\n"} +{"Time":"2022-12-07T09:15:34.433443+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.433452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.433454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.433 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:34.435879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.435901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.435912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"357420be-aab1-4f5f-b5a5-5becf129eae6\"}\n"} +{"Time":"2022-12-07T09:15:34.436094+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.436098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.4361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"257.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4dcbd737-65a1-4bcf-8419-a9677c50e975\"}\n"} +{"Time":"2022-12-07T09:15:34.440621+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.440626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.440628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.440 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49cb5476-2c7e-4af9-8dbe-93dfe6768e0a\"}\n"} +{"Time":"2022-12-07T09:15:34.440909+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.440935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.440942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.440 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.440948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.440 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.440955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.440 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.440961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.440 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.442545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.442 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e466083-851c-46d1-a71d-ef6432aff344\"}\n"} +{"Time":"2022-12-07T09:15:34.449664+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:34.449673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:34.449676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.449678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.44968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.449682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.449684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.449686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:34.449688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:34.449689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:34.449691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:34.449694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:34.449695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:34.449697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.450011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.449: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:34.450016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.449: cmd: stdout: \"✔ Detecting persistent resources [0ms]\"\n"} +{"Time":"2022-12-07T09:15:34.450018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.449: cmd: stdout: \"⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.45002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.449: cmd: stdout: \"\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\"\n"} +{"Time":"2022-12-07T09:15:34.450022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.449: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.459024+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:34.459032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:34.459034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.458 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.459036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.458 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.459038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.458 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.45904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.458 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.459042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.459 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} +{"Time":"2022-12-07T09:15:34.459303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.459 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/58f53ab6-ef50-4fd4-9836-8f04bcf7dceb/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"975.408791ms\", \"status_code\": 101, \"latency_ms\": 975, \"request_id\": \"b6fd77ec-3187-4c81-834c-28f14a5ed32e\"}\n"} +{"Time":"2022-12-07T09:15:34.460655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.460659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.460661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"291.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"544f3559-f785-4472-9d30-a60fb437ce5c\"}\n"} +{"Time":"2022-12-07T09:15:34.460733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} +{"Time":"2022-12-07T09:15:34.460741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} +{"Time":"2022-12-07T09:15:34.460743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/58f53ab6-ef50-4fd4-9836-8f04bcf7dceb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"517.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"82b5a779-c8cf-4741-b49f-0c351123331f\"}\n"} +{"Time":"2022-12-07T09:15:34.460791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.460 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:34.461563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.461632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush","Output":"--- PASS: TestStatePush (0.00s)\n"} +{"Time":"2022-12-07T09:15:34.461637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" --- PASS: TestStatePush/File (2.02s)\n"} +{"Time":"2022-12-07T09:15:34.461639+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Elapsed":2.02} +{"Time":"2022-12-07T09:15:34.461644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" --- PASS: TestStatePush/Stdin (1.99s)\n"} +{"Time":"2022-12-07T09:15:34.461646+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Elapsed":1.99} +{"Time":"2022-12-07T09:15:34.461651+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestStatePush","Elapsed":0} +{"Time":"2022-12-07T09:15:34.461653+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.461654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.463456+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.463462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.463464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.463 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"425.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fc0f95b2-5670-496c-a3b3-6ffdd1229fe6\"}\n"} +{"Time":"2022-12-07T09:15:34.464488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.464514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.46452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.464 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"96.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"dbfffc07-fa79-4b21-ac95-3bd880fb70c1\"}\n"} +{"Time":"2022-12-07T09:15:34.464898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.464 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"148.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1594c151-6776-40d6-88e7-d37552eed608\"}\n"} +{"Time":"2022-12-07T09:15:34.46538+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.465386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.465388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.465 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.465391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.465 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.465497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.465 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.465513+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.465532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.465535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.465 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ed9966bb-af96-455f-92da-99d6d34d2b98\"}\n"} +{"Time":"2022-12-07T09:15:34.465539+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.46554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.465542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.465 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.465544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.465 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.465552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.465 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.466112+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.466128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.466133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/organizations/67cd7c26-ca17-4861-9a4a-c9e6ac63feda/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0be3883d-f084-4d99-b153-1c2341e6a365\"}\n"} +{"Time":"2022-12-07T09:15:34.466261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" templatedelete_test.go:84: waiting for template version job 2c6581e1-f8dc-4e30-a093-59a06f3af961\n"} +{"Time":"2022-12-07T09:15:34.466482+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.466494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.466496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"587.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ced0a52-05a7-40e7-8b2b-610e7fd6dd09\"}\n"} +{"Time":"2022-12-07T09:15:34.46869+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.468696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.468712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.468 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0e153f53-9a43-4661-ac3d-7dd7dcff2571\"}\n"} +{"Time":"2022-12-07T09:15:34.484486+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.484499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.484503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.484505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.484517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:34.484519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteSelector1497538659/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.484521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteSelector1497538659/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.484523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteSelector1497538659/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.484525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.484527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:34.486476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.486 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"471.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f3cd566b-9cc4-4e3b-b793-8f3ae4cab754\"}\n"} +{"Time":"2022-12-07T09:15:34.487552+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.487562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.487567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.487 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"404.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a4bdfb19-e107-42ba-852b-052c2ee102c8\"}\n"} +{"Time":"2022-12-07T09:15:34.490736+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.490742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.490744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.490 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9a1915d3-c51d-4b13-b9ba-ddabf8a8df91\"}\n"} +{"Time":"2022-12-07T09:15:34.491092+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.491117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.491123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.491 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.491132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.491 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.491182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.491 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.491746+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.491757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.491762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.491 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4944d4b3-199e-43fe-8574-77d81cc9f202\"}\n"} +{"Time":"2022-12-07T09:15:34.493378+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.493384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.493387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.492 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"544.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9a885471-4654-4df0-917f-f24e343368e4\"}\n"} +{"Time":"2022-12-07T09:15:34.501024+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:34.501042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:34.501045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.500 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.501047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.500 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.501049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.500 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.501056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.500 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.501058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.500 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.501061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.500 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} +{"Time":"2022-12-07T09:15:34.501062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.500 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/4171db07-e4f7-477a-ac66-0c320d545b52/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"697.523625ms\", \"status_code\": 101, \"latency_ms\": 697, \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\"}\n"} +{"Time":"2022-12-07T09:15:34.502397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.502 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/4171db07-e4f7-477a-ac66-0c320d545b52\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"18da3c37-a17d-49e3-9f88-297ecbe47507\"}\n"} +{"Time":"2022-12-07T09:15:34.502405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.502: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [101ms]\"\n"} +{"Time":"2022-12-07T09:15:34.502724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.502 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/4171db07-e4f7-477a-ac66-0c320d545b52\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"98965f2a-e0c7-4ec4-a606-e2aa5a61b7d9\"}\n"} +{"Time":"2022-12-07T09:15:34.503282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.503 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/4171db07-e4f7-477a-ac66-0c320d545b52/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"242.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dd0dcad7-064b-4cd2-8592-11f003803d05\"}\n"} +{"Time":"2022-12-07T09:15:34.503671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.503 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/4171db07-e4f7-477a-ac66-0c320d545b52/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"245.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c2c1907d-dbbe-4733-9549-4924ccaac9c0\"}\n"} +{"Time":"2022-12-07T09:15:34.504067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.504 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/4171db07-e4f7-477a-ac66-0c320d545b52/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"230.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5ff0584-0302-4bca-8604-74b3e8a1fe2a\"}\n"} +{"Time":"2022-12-07T09:15:34.504202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"┌──────────┐\"\n"} +{"Time":"2022-12-07T09:15:34.504209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"│ Template │\"\n"} +{"Time":"2022-12-07T09:15:34.504211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"│ Preview │\"\n"} +{"Time":"2022-12-07T09:15:34.504212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"├──────────┤\"\n"} +{"Time":"2022-12-07T09:15:34.504291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"│ RESOURCE │\"\n"} +{"Time":"2022-12-07T09:15:34.504294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"├──────────┤\"\n"} +{"Time":"2022-12-07T09:15:34.504296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"└──────────┘\"\n"} +{"Time":"2022-12-07T09:15:34.504497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" templatecreate_test.go:155: 2022-12-07 08:15:34.504: cmd: matched \"Confirm create?\" = \" \\\"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [143ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [1ms]\\r\\n⧗ \\x1b[;mParsing template parameters\\x1b[0m \\r\\n\\x1b[1A\\r✔ Parsing template parameters [50ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✘ Cleaning Up [102ms]\\r\\n \\r\\n Attempting to read the variables from the parameter file. \\r\\r\\n\\r\\n \\r\\n This template has required variables! They are scoped to \\r\\n the template, and not viewable after being set. \\r\\n\\r\\r\\n\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [496ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [0ms]\\r\\n⧗ \\x1b[;mParsing template parameters\\x1b[0m \\r\\n\\x1b[1A\\"} +{"Time":"2022-12-07T09:15:34.504513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"r✔ Parsing template parameters [51ms]\\r\\n⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \\r\\n \\r\\n✔ Detecting persistent resources [0ms]\\r\\n⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \\r\\n\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Cleaning Up [101ms]\\r\\n┌──────────┐\\r\\n│ Template │\\r\\n│ Preview │\\r\\n├──────────┤\\r\\n│ RESOURCE │\\r\\n├──────────┤\\r\\n└──────────┘\\r\\n\u003e Confirm create?\"\n"} +{"Time":"2022-12-07T09:15:34.504516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" templatecreate_test.go:156: 2022-12-07 08:15:34.504: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:34.504519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"\u003e Confirm create? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:34.504982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.504 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/organizations/1bf238fd-05e5-47ae-b110-1456fc0308de/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"61e6bd87-66ff-40e7-b873-07ad687c33e6\"}\n"} +{"Time":"2022-12-07T09:15:34.505208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:80: 2022-12-07 08:15:34.505: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.505214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.505: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.505216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.505: cmd: stdout: \"The my-template template has been created at Dec 7 09:15:34! Developers can \"\n"} +{"Time":"2022-12-07T09:15:34.50522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.505: cmd: stdout: \"provision a workspace with this template using: \"\n"} +{"Time":"2022-12-07T09:15:34.505222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.505: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.505225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.505: cmd: stdout: \" \\x1b[;mcoder create --template=\\\"my-template\\\" [workspace name]\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.505226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.505: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.505715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.505 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:34.506566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.506583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.506585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.50901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.508 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"90.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ca3e6b66-e809-45ac-ab99-dd1cf47fb5b7\"}\n"} +{"Time":"2022-12-07T09:15:34.509306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.509 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"49.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"62ae0a85-52ce-47a8-a80a-82f3b5c36c84\"}\n"} +{"Time":"2022-12-07T09:15:34.509987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.509 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"487.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0df6f55c-be7f-4d57-be09-cce9f3d5399a\"}\n"} +{"Time":"2022-12-07T09:15:34.511069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/organizations/0852c7d3-23d9-4f36-8570-e8db4e37311f/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"815.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7e34c462-6a36-4e4e-a5b2-82d70c617f92\"}\n"} +{"Time":"2022-12-07T09:15:34.511241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" templatedelete_test.go:57: waiting for template version job d87f7cc8-f554-44b6-b398-d3f6a0fae749\n"} +{"Time":"2022-12-07T09:15:34.511695+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.511706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.511708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.511 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"340.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d7e50777-7621-4eb6-8b33-d8aee0663f5e\"}\n"} +{"Time":"2022-12-07T09:15:34.512292+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.512331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.512334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.512 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eeefae1c-967f-4199-9ce8-3cfaa63cea9e\"}\n"} +{"Time":"2022-12-07T09:15:34.517441+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.517449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.517452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.516 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.517455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.516 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.517457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.516 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.517459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.516 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} +{"Time":"2022-12-07T09:15:34.517537+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.517543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.517545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.517 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5dd117ff-a83c-46c9-886f-85d9304ddf76\"}\n"} +{"Time":"2022-12-07T09:15:34.518177+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.518183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.518185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.517 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"505.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0fa0f186-0673-4efe-a9dd-56a4e7f7337a\"}\n"} +{"Time":"2022-12-07T09:15:34.518662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.518 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/organizations/2e411a51-ecff-4d82-b3f3-b30f8acf2451/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"173dda3e-90c0-4221-b306-125ec23454da\"}\n"} +{"Time":"2022-12-07T09:15:34.518706+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.518708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.51871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.518 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"717.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bc3bb910-0034-4901-a93f-e0966c264774\"}\n"} +{"Time":"2022-12-07T09:15:34.520936+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} +{"Time":"2022-12-07T09:15:34.520941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} +{"Time":"2022-12-07T09:15:34.520943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.520 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.708µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"6513bd04-4852-4cc2-86dd-a93ec202df1f\"}\n"} +{"Time":"2022-12-07T09:15:34.521203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.521 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"59.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d02137d-da48-4580-b812-e072b3fd79c8\"}\n"} +{"Time":"2022-12-07T09:15:34.521776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.521 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ff572538-aeca-40d1-bbfd-af315dd0459e\"}\n"} +{"Time":"2022-12-07T09:15:34.522325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.522 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/organizations/2e411a51-ecff-4d82-b3f3-b30f8acf2451/templates/dreamy-keller4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"df2ee3c4-1d93-4066-9c68-de81d2fde614\"}\n"} +{"Time":"2022-12-07T09:15:34.52261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" templatedelete_test.go:42: 2022-12-07 08:15:34.522: cmd: matched \"Delete these templates: \\x1b[;mdreamy-keller4\\x1b[0m ?\" = \"\u003e Delete these templates: \\x1b[;mdreamy-keller4\\x1b[0m ?\"\n"} +{"Time":"2022-12-07T09:15:34.522627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" templatedelete_test.go:43: 2022-12-07 08:15:34.522: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:34.52263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" ptytest.go:103: 2022-12-07 08:15:34.522: cmd: stdout: \"\u003e Delete these templates: \\x1b[;mdreamy-keller4\\x1b[0m ? (yes/\\x1b[1mno\\x1b[0m) yes\"\n"} +{"Time":"2022-12-07T09:15:34.523078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templates/e55c8963-de7c-4faf-b3a1-0591cfa620d4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"236.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d184d220-86c8-48bb-b77d-a3f89ae3f3bc\"}\n"} +{"Time":"2022-12-07T09:15:34.523329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" ptytest.go:103: 2022-12-07 08:15:34.523: cmd: stdout: \"Deleted template \\x1b[;mdreamy-keller4\\x1b[0m at Dec 7 09:15:34!\"\n"} +{"Time":"2022-12-07T09:15:34.523404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templates/e55c8963-de7c-4faf-b3a1-0591cfa620d4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.834µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"9c77ad6c-7c52-4819-afa0-6052e4166212\"}\n"} +{"Time":"2022-12-07T09:15:34.52352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" ptytest.go:80: 2022-12-07 08:15:34.523: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.523526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.523 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:34.524258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.524286+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY"} +{"Time":"2022-12-07T09:15:34.52429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Output":"=== CONT TestLogin/InitialUserNoTTY\n"} +{"Time":"2022-12-07T09:15:34.528176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Output":" t.go:81: 2022-12-07 08:15:34.528 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56965\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"39.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"51eeec36-d215-49b7-b7f0-bc8bf5fdad6d\"}\n"} +{"Time":"2022-12-07T09:15:34.528335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Output":" t.go:81: 2022-12-07 08:15:34.528 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56965\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18.791µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"0af8c4cc-241b-418c-9bdd-fffabb12c566\"}\n"} +{"Time":"2022-12-07T09:15:34.528786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.528791+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} +{"Time":"2022-12-07T09:15:34.528792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== CONT TestLogin/ExistingUserValidTokenTTY\n"} +{"Time":"2022-12-07T09:15:34.531208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.531 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56968\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"104.541µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"19f93c6e-04b4-4a7e-9fab-c2e534086a8d\"}\n"} +{"Time":"2022-12-07T09:15:34.531468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.531 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56968\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"52.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f0f84109-f642-4f9c-8110-4fa5694a9cc0\"}\n"} +{"Time":"2022-12-07T09:15:34.532542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.532546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.532547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.532 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:34.533493+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} +{"Time":"2022-12-07T09:15:34.5335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== CONT TestLogin/ExistingUserValidTokenTTY\n"} +{"Time":"2022-12-07T09:15:34.533502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.533 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56968\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"41f6d915-5756-4e28-8f39-c011bd8e2b5f\"}\n"} +{"Time":"2022-12-07T09:15:34.533877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.533 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56968\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"65µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2483aafb-f0bd-4c52-b92d-7d0ef53d5ad8\"}\n"} +{"Time":"2022-12-07T09:15:34.534029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.533: cmd: stdout: \"Open the following in your browser:\"\n"} +{"Time":"2022-12-07T09:15:34.534041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.533: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.534046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.533: cmd: stdout: \"\\thttp://localhost:56968/cli-auth\"\n"} +{"Time":"2022-12-07T09:15:34.53405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.533: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.534636+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.534641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.534643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.534 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.534649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} +{"Time":"2022-12-07T09:15:34.534651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== CONT TestLogin/ExistingUserValidTokenTTY\n"} +{"Time":"2022-12-07T09:15:34.534652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" login_test.go:153: 2022-12-07 08:15:34.534: cmd: matched \"Paste your token here:\" = \"Open the following in your browser:\\r\\n\\r\\n\\thttp://localhost:56968/cli-auth\\r\\n\\r\\n\u003e Paste your token here:\"\n"} +{"Time":"2022-12-07T09:15:34.534654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" login_test.go:154: 2022-12-07 08:15:34.534: cmd: stdin: \"qCNaZ8xAeh-OfIkACaF7z7PVwBwN6QPgq\\r\"\n"} +{"Time":"2022-12-07T09:15:34.534714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.534: cmd: stdout: \"\u003e Paste your token here: qCNaZ8xAeh-OfIkACaF7z7PVwBwN6QPgq\"\n"} +{"Time":"2022-12-07T09:15:34.53472+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.534722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.534724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.534 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.535969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} +{"Time":"2022-12-07T09:15:34.535973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== CONT TestLogin/ExistingUserValidTokenTTY\n"} +{"Time":"2022-12-07T09:15:34.535974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56968\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f16cb99-7fc7-49ce-bccb-b0815da0d5f0\"}\n"} +{"Time":"2022-12-07T09:15:34.536326+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.536335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.536337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"03ad9eaf-5b64-4565-b7ff-addf0f7394e1\"}\n"} +{"Time":"2022-12-07T09:15:34.536774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} +{"Time":"2022-12-07T09:15:34.536778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== CONT TestLogin/ExistingUserValidTokenTTY\n"} +{"Time":"2022-12-07T09:15:34.53678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56968\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"535.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3409cece-585a-4a37-b216-feb020e77796\"}\n"} +{"Time":"2022-12-07T09:15:34.536815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.536818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.536822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"405.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"94a5a6f8-c08f-414b-8627-94231527f892\"}\n"} +{"Time":"2022-12-07T09:15:34.537153+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} +{"Time":"2022-12-07T09:15:34.537161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== CONT TestLogin/ExistingUserValidTokenTTY\n"} +{"Time":"2022-12-07T09:15:34.537163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.537: cmd: stdout: \"\u003e Welcome to Coder, testuser! You're authenticated.\"\n"} +{"Time":"2022-12-07T09:15:34.537919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.537924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.537926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a005f8ed-f172-4383-9b7f-80356ea2a6ba\"}\n"} +{"Time":"2022-12-07T09:15:34.538122+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} +{"Time":"2022-12-07T09:15:34.538142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== CONT TestLogin/ExistingUserValidTokenTTY\n"} +{"Time":"2022-12-07T09:15:34.538147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" login_test.go:155: 2022-12-07 08:15:34.538: cmd: matched \"Welcome to Coder\" = \" qCNaZ8xAeh-OfIkACaF7z7PVwBwN6QPgq\\r\\n\u003e Welcome to Coder\"\n"} +{"Time":"2022-12-07T09:15:34.538155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" ptytest.go:80: 2022-12-07 08:15:34.538: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.538751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.538756+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag"} +{"Time":"2022-12-07T09:15:34.538758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":"=== CONT TestLogin/TokenFlag\n"} +{"Time":"2022-12-07T09:15:34.541202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":" t.go:81: 2022-12-07 08:15:34.541 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56979\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"106.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b9fd5047-a80c-4d29-acb4-d613e9a78fea\"}\n"} +{"Time":"2022-12-07T09:15:34.541356+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.541361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.541363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.541 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.541366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.541 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.541368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.541 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.54142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.541 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.541423+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag"} +{"Time":"2022-12-07T09:15:34.541424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":"=== CONT TestLogin/TokenFlag\n"} +{"Time":"2022-12-07T09:15:34.541467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":" t.go:81: 2022-12-07 08:15:34.541 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56979\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"42.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0a42d399-0f9a-4eaf-ac10-bc742f9890f0\"}\n"} +{"Time":"2022-12-07T09:15:34.541473+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.541476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.541478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.541 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.542597+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.542608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.542613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.542 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"422.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"94e45022-b3c3-4f9c-b62f-7e488bbec078\"}\n"} +{"Time":"2022-12-07T09:15:34.542907+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag"} +{"Time":"2022-12-07T09:15:34.542911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":"=== CONT TestLogin/TokenFlag\n"} +{"Time":"2022-12-07T09:15:34.542913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":" t.go:81: 2022-12-07 08:15:34.542 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56979\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9e9b410b-92b1-4d87-92a4-f7edbf58ba1a\"}\n"} +{"Time":"2022-12-07T09:15:34.542915+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.542917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.542918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.542 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"372.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d6a8ed61-c5cd-473e-963e-044bc9c1da91\"}\n"} +{"Time":"2022-12-07T09:15:34.54303+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag"} +{"Time":"2022-12-07T09:15:34.543032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":"=== CONT TestLogin/TokenFlag\n"} +{"Time":"2022-12-07T09:15:34.543033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":" t.go:81: 2022-12-07 08:15:34.542 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56979\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"48e47b40-d25b-428f-a9ec-c424d5da21a2\"}\n"} +{"Time":"2022-12-07T09:15:34.544195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":" t.go:81: 2022-12-07 08:15:34.543 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56979\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"333.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"54a0a451-e0aa-48f1-9447-a8ae8a424272\"}\n"} +{"Time":"2022-12-07T09:15:34.544944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.54496+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY"} +{"Time":"2022-12-07T09:15:34.544963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":"=== CONT TestLogin/ExistingUserInvalidTokenTTY\n"} +{"Time":"2022-12-07T09:15:34.547398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.547 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56988\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"110.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"84670549-0b6a-4f41-a958-b8c6f8f70339\"}\n"} +{"Time":"2022-12-07T09:15:34.547638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.547 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56988\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"70.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ea53268c-3486-4412-b2e7-06b844e0c8d0\"}\n"} +{"Time":"2022-12-07T09:15:34.549242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.549 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56988\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"24.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db58a842-fe5a-45b6-9c31-3cd7010b3670\"}\n"} +{"Time":"2022-12-07T09:15:34.549488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.549 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56988\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"86d5258f-99c9-44bf-8cc1-7fde48465c55\"}\n"} +{"Time":"2022-12-07T09:15:34.549599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.549: cmd: stdout: \"Open the following in your browser:\"\n"} +{"Time":"2022-12-07T09:15:34.549604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.549: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.549606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.549: cmd: stdout: \"\\thttp://localhost:56988/cli-auth\"\n"} +{"Time":"2022-12-07T09:15:34.549607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.549: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.54992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" login_test.go:178: 2022-12-07 08:15:34.549: cmd: matched \"Paste your token here:\" = \"Open the following in your browser:\\r\\n\\r\\n\\thttp://localhost:56988/cli-auth\\r\\n\\r\\n\u003e Paste your token here:\"\n"} +{"Time":"2022-12-07T09:15:34.549933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" login_test.go:179: 2022-12-07 08:15:34.549: cmd: stdin: \"an-invalid-token\\r\"\n"} +{"Time":"2022-12-07T09:15:34.549972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.549: cmd: stdout: \"\u003e Paste your token here: an-invalid-token\"\n"} +{"Time":"2022-12-07T09:15:34.550536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.550 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56988\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"39.125µs\", \"status_code\": 401, \"latency_ms\": 0, \"request_id\": \"a4790f02-6ec7-462c-825d-28bdb3f2d466\"}\n"} +{"Time":"2022-12-07T09:15:34.550636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.550: cmd: stdout: \"That's not a valid token!\"\n"} +{"Time":"2022-12-07T09:15:34.550764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" login_test.go:180: 2022-12-07 08:15:34.550: cmd: matched \"That's not a valid token!\" = \" an-invalid-token\\r\\nThat's not a valid token!\"\n"} +{"Time":"2022-12-07T09:15:34.550799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:80: 2022-12-07 08:15:34.550: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.55083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.550: cmd: stdout: \"\u003e Paste your token here: \"\n"} +{"Time":"2022-12-07T09:15:34.551216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.551245+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt"} +{"Time":"2022-12-07T09:15:34.551247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":"=== CONT TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt\n"} +{"Time":"2022-12-07T09:15:34.553631+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:34.553636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:34.553638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.553648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.553651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:34.554176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.55418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.554195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.554209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/621695553.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.554211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.554627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.554 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} +{"Time":"2022-12-07T09:15:34.561574+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt"} +{"Time":"2022-12-07T09:15:34.561612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":"=== CONT TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt\n"} +{"Time":"2022-12-07T09:15:34.561615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" t.go:81: 2022-12-07 08:15:34.561 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56993\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"44µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"633378b4-afe5-4d2a-a0e9-a6b6c91f3703\"}\n"} +{"Time":"2022-12-07T09:15:34.561786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" t.go:81: 2022-12-07 08:15:34.561 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56993\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.375µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"80fa4c3f-ce02-4d78-8e38-df36597cebe7\"}\n"} +{"Time":"2022-12-07T09:15:34.562011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.561: cmd: stdout: \"\u003e Your Coder deployment hasn't been set up!\"\n"} +{"Time":"2022-12-07T09:15:34.562399+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.56245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.562458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.562 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"518.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7f436f1a-0733-4f11-9afb-d749d452f48b\"}\n"} +{"Time":"2022-12-07T09:15:34.562649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.562654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.562665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.562 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"658879cf-142f-44c2-bb56-de6913a5866f\"}\n"} +{"Time":"2022-12-07T09:15:34.562932+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.562944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.562949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.562 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"357.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"800216aa-24a9-4f8c-b8ef-0e589ff943b0\"}\n"} +{"Time":"2022-12-07T09:15:34.563304+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt"} +{"Time":"2022-12-07T09:15:34.56331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":"=== CONT TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt\n"} +{"Time":"2022-12-07T09:15:34.563312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:120: 2022-12-07 08:15:34.563: cmd: matched \"first user?\" = \"\u003e Your Coder deployment hasn't been set up!\\r\\n\u003e Would you like to create the first user?\"\n"} +{"Time":"2022-12-07T09:15:34.563316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:121: 2022-12-07 08:15:34.563: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:34.56337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.563: cmd: stdout: \"\u003e Would you like to create the first user? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:34.563739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.563748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.56375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.563 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:34.563752+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt"} +{"Time":"2022-12-07T09:15:34.563754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":"=== CONT TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt\n"} +{"Time":"2022-12-07T09:15:34.563756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:120: 2022-12-07 08:15:34.563: cmd: matched \"username\" = \" (\\x1b[1myes\\x1b[0m/no) yes\\r\\n\u003e What \\x1b[;musername\"\n"} +{"Time":"2022-12-07T09:15:34.563758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:121: 2022-12-07 08:15:34.563: cmd: stdin: \"testuser\\r\"\n"} +{"Time":"2022-12-07T09:15:34.56393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.563: cmd: stdout: \"\u003e What \\x1b[;musername\\x1b[0m would you like? (mtojek) testuser\"\n"} +{"Time":"2022-12-07T09:15:34.564113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:120: 2022-12-07 08:15:34.564: cmd: matched \"email\" = \"\\x1b[0m would you like? (mtojek) testuser\\r\\n\u003e What's your \\x1b[;memail\"\n"} +{"Time":"2022-12-07T09:15:34.564118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:121: 2022-12-07 08:15:34.564: cmd: stdin: \"user@coder.com\\r\"\n"} +{"Time":"2022-12-07T09:15:34.564189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.564: cmd: stdout: \"\u003e What's your \\x1b[;memail\\x1b[0m ? user@coder.com\"\n"} +{"Time":"2022-12-07T09:15:34.566004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:120: 2022-12-07 08:15:34.565: cmd: matched \"password\" = \"\\x1b[0m ? user@coder.com\\r\\n\u003e Enter a \\x1b[;mpassword\"\n"} +{"Time":"2022-12-07T09:15:34.566012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:121: 2022-12-07 08:15:34.565: cmd: stdin: \"mypass\\r\"\n"} +{"Time":"2022-12-07T09:15:34.566094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.566: cmd: stdout: \"\u003e Enter a \\x1b[;mpassword\\x1b[0m : mypass\"\n"} +{"Time":"2022-12-07T09:15:34.567502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.567506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.567508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.567 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"709add14-046c-4335-9e07-d34956f34e33\"}\n"} +{"Time":"2022-12-07T09:15:34.570806+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.570811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.570812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.570 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f35c18f-6b39-43e0-a28a-7868c392f299\"}\n"} +{"Time":"2022-12-07T09:15:34.571399+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt"} +{"Time":"2022-12-07T09:15:34.571401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":"=== CONT TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt\n"} +{"Time":"2022-12-07T09:15:34.571403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:120: 2022-12-07 08:15:34.571: cmd: matched \"password\" = \"\\x1b[0m : mypass\\r\\n\u003e Confirm \\x1b[;mpassword\"\n"} +{"Time":"2022-12-07T09:15:34.571405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:121: 2022-12-07 08:15:34.571: cmd: stdin: \"wrongpass\\r\"\n"} +{"Time":"2022-12-07T09:15:34.571482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.571: cmd: stdout: \"\u003e Confirm \\x1b[;mpassword\\x1b[0m : wrongpass\"\n"} +{"Time":"2022-12-07T09:15:34.571498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.571: cmd: stdout: \"Passwords do not match\"\n"} +{"Time":"2022-12-07T09:15:34.571524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:125: 2022-12-07 08:15:34.571: cmd: matched \"Passwords do not match\" = \"\\x1b[0m : wrongpass\\r\\nPasswords do not match\"\n"} +{"Time":"2022-12-07T09:15:34.571528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:126: 2022-12-07 08:15:34.571: cmd: matched \"Enter a \\x1b[;mpassword\\x1b[0m \" = \"\\r\\n\u003e Enter a \\x1b[;mpassword\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.571531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:128: 2022-12-07 08:15:34.571: cmd: stdin: \"pass\\r\"\n"} +{"Time":"2022-12-07T09:15:34.572728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.572: cmd: stdout: \"\u003e Enter a \\x1b[;mpassword\\x1b[0m : pass\"\n"} +{"Time":"2022-12-07T09:15:34.573735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:129: 2022-12-07 08:15:34.573: cmd: matched \"Confirm\" = \": pass\\r\\n\u003e Confirm\"\n"} +{"Time":"2022-12-07T09:15:34.573743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:130: 2022-12-07 08:15:34.573: cmd: stdin: \"pass\\r\"\n"} +{"Time":"2022-12-07T09:15:34.573745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.573: cmd: stdout: \"\u003e Confirm \\x1b[;mpassword\\x1b[0m : pass\"\n"} +{"Time":"2022-12-07T09:15:34.573812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:131: 2022-12-07 08:15:34.573: cmd: matched \"trial\" = \" \\x1b[;mpassword\\x1b[0m : pass\\r\\n\u003e Start a 30-day trial\"\n"} +{"Time":"2022-12-07T09:15:34.573816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:132: 2022-12-07 08:15:34.573: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:34.57385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.573: cmd: stdout: \"\u003e Start a 30-day trial of Enterprise? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:34.574498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" t.go:81: 2022-12-07 08:15:34.574 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56993\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"93.709µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a90cd307-9b7e-48be-8604-0a20c99fc06e\"}\n"} +{"Time":"2022-12-07T09:15:34.574641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" t.go:81: 2022-12-07 08:15:34.574 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56993\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"28.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0270321f-881d-4be0-be87-ade86da91d83\"}\n"} +{"Time":"2022-12-07T09:15:34.575014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.574: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:34.575033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.574: cmd: stdout: \" Welcome to Coder, testuser! You're authenticated. \"\n"} +{"Time":"2022-12-07T09:15:34.575038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.574: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:34.575042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.574: cmd: stdout: \" Get started by creating a template: \\x1b[;mcoder templates init\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.575518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:133: 2022-12-07 08:15:34.575: cmd: matched \"Welcome to Coder\" = \" of Enterprise? (\\x1b[1myes\\x1b[0m/no) yes\\r\\n \\r\\n Welcome to Coder\"\n"} +{"Time":"2022-12-07T09:15:34.575554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:80: 2022-12-07 08:15:34.575: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.576336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.576343+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags"} +{"Time":"2022-12-07T09:15:34.576345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":"=== CONT TestLogin/InitialUserFlags\n"} +{"Time":"2022-12-07T09:15:34.580406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" t.go:81: 2022-12-07 08:15:34.580 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57008\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"29.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c5983f6-1931-46d9-88b9-31a226c8e8b8\"}\n"} +{"Time":"2022-12-07T09:15:34.580629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" t.go:81: 2022-12-07 08:15:34.580 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57008\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"29.584µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"dc7147ff-6d26-408b-8d1f-609b16e916ae\"}\n"} +{"Time":"2022-12-07T09:15:34.580743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" ptytest.go:103: 2022-12-07 08:15:34.580: cmd: stdout: \"\u003e Your Coder deployment hasn't been set up!\"\n"} +{"Time":"2022-12-07T09:15:34.581601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" t.go:81: 2022-12-07 08:15:34.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57008\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"148.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"fbd09586-267c-4f9c-a614-9c53a09b9646\"}\n"} +{"Time":"2022-12-07T09:15:34.581712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" t.go:81: 2022-12-07 08:15:34.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57008\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"48.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"36537204-ac9e-4e25-9c38-78d150c5fbcf\"}\n"} +{"Time":"2022-12-07T09:15:34.582036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" ptytest.go:103: 2022-12-07 08:15:34.582: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:34.582045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" ptytest.go:103: 2022-12-07 08:15:34.582: cmd: stdout: \" Welcome to Coder, testuser! You're authenticated. \"\n"} +{"Time":"2022-12-07T09:15:34.582047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" ptytest.go:103: 2022-12-07 08:15:34.582: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:34.582048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" ptytest.go:103: 2022-12-07 08:15:34.582: cmd: stdout: \" Get started by creating a template: \\x1b[;mcoder templates init\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.582168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" login_test.go:87: 2022-12-07 08:15:34.582: cmd: matched \"Welcome to Coder\" = \"\u003e Your Coder deployment hasn't been set up!\\r\\n \\r\\n Welcome to Coder\"\n"} +{"Time":"2022-12-07T09:15:34.582217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" ptytest.go:80: 2022-12-07 08:15:34.582: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.582784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.58279+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY"} +{"Time":"2022-12-07T09:15:34.582791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":"=== CONT TestLogin/InitialUserTTY\n"} +{"Time":"2022-12-07T09:15:34.58483+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.584834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.584836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.584838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.58485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.584893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.584895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.584899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.584925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.585051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.585061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.585 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.586668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"528.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f4de9c50-c532-4ff3-a4c7-5ea0fa296a66\"}\n"} +{"Time":"2022-12-07T09:15:34.586781+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY"} +{"Time":"2022-12-07T09:15:34.586785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":"=== CONT TestLogin/InitialUserTTY\n"} +{"Time":"2022-12-07T09:15:34.586787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" t.go:81: 2022-12-07 08:15:34.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57013\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"88.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9f7f9aa9-5e1d-4984-9334-5469d620333d\"}\n"} +{"Time":"2022-12-07T09:15:34.586829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.586832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.586834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ef559efe-5047-41c8-b1b6-e2873107e38a\"}\n"} +{"Time":"2022-12-07T09:15:34.587108+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY"} +{"Time":"2022-12-07T09:15:34.587132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":"=== CONT TestLogin/InitialUserTTY\n"} +{"Time":"2022-12-07T09:15:34.587156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" t.go:81: 2022-12-07 08:15:34.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57013\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"24.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"5047aafa-0eb8-4ea6-bc0d-d54b126875f1\"}\n"} +{"Time":"2022-12-07T09:15:34.587564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.587: cmd: stdout: \"\u003e Your Coder deployment hasn't been set up!\"\n"} +{"Time":"2022-12-07T09:15:34.587818+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.587823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.587825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"438.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"29b35d54-afcb-4a75-b353-d3636931ed32\"}\n"} +{"Time":"2022-12-07T09:15:34.588026+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY"} +{"Time":"2022-12-07T09:15:34.58803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":"=== CONT TestLogin/InitialUserTTY\n"} +{"Time":"2022-12-07T09:15:34.588031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:64: 2022-12-07 08:15:34.587: cmd: matched \"first user?\" = \"\u003e Your Coder deployment hasn't been set up!\\r\\n\u003e Would you like to create the first user?\"\n"} +{"Time":"2022-12-07T09:15:34.588033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:65: 2022-12-07 08:15:34.587: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:34.588231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.588: cmd: stdout: \"\u003e Would you like to create the first user? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:34.588384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:64: 2022-12-07 08:15:34.588: cmd: matched \"username\" = \" (\\x1b[1myes\\x1b[0m/no) yes\\r\\n\u003e What \\x1b[;musername\"\n"} +{"Time":"2022-12-07T09:15:34.588387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:65: 2022-12-07 08:15:34.588: cmd: stdin: \"testuser\\r\"\n"} +{"Time":"2022-12-07T09:15:34.588608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.588: cmd: stdout: \"\u003e What \\x1b[;musername\\x1b[0m would you like? (mtojek) testuser\"\n"} +{"Time":"2022-12-07T09:15:34.588615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:64: 2022-12-07 08:15:34.588: cmd: matched \"email\" = \"\\x1b[0m would you like? (mtojek) testuser\\r\\n\u003e What's your \\x1b[;memail\"\n"} +{"Time":"2022-12-07T09:15:34.588617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:65: 2022-12-07 08:15:34.588: cmd: stdin: \"user@coder.com\\r\"\n"} +{"Time":"2022-12-07T09:15:34.58862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.588: cmd: stdout: \"\u003e What's your \\x1b[;memail\\x1b[0m ? user@coder.com\"\n"} +{"Time":"2022-12-07T09:15:34.588801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:64: 2022-12-07 08:15:34.588: cmd: matched \"password\" = \"\\x1b[0m ? user@coder.com\\r\\n\u003e Enter a \\x1b[;mpassword\"\n"} +{"Time":"2022-12-07T09:15:34.588806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:65: 2022-12-07 08:15:34.588: cmd: stdin: \"password\\r\"\n"} +{"Time":"2022-12-07T09:15:34.588957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.588: cmd: stdout: \"\u003e Enter a \\x1b[;mpassword\\x1b[0m : password\"\n"} +{"Time":"2022-12-07T09:15:34.589453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:64: 2022-12-07 08:15:34.589: cmd: matched \"password\" = \"\\x1b[0m : password\"\n"} +{"Time":"2022-12-07T09:15:34.589458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:65: 2022-12-07 08:15:34.589: cmd: stdin: \"password\\r\"\n"} +{"Time":"2022-12-07T09:15:34.589518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.589: cmd: stdout: \"\u003e Confirm \\x1b[;mpassword\\x1b[0m : password\"\n"} +{"Time":"2022-12-07T09:15:34.589827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:64: 2022-12-07 08:15:34.589: cmd: matched \"trial\" = \"\\r\\n\u003e Confirm \\x1b[;mpassword\\x1b[0m : password\\r\\n\u003e Start a 30-day trial\"\n"} +{"Time":"2022-12-07T09:15:34.58983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:65: 2022-12-07 08:15:34.589: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:34.590031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.589: cmd: stdout: \"\u003e Start a 30-day trial of Enterprise? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:34.590792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" t.go:81: 2022-12-07 08:15:34.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57013\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"115.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"eb4bae31-9eb7-4489-954c-05172b2c360f\"}\n"} +{"Time":"2022-12-07T09:15:34.591078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" t.go:81: 2022-12-07 08:15:34.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57013\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"45.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5ac3afd9-0be8-4924-babd-f99abf7a8fff\"}\n"} +{"Time":"2022-12-07T09:15:34.59144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.591: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:34.591445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.591: cmd: stdout: \" Welcome to Coder, testuser! You're authenticated. \"\n"} +{"Time":"2022-12-07T09:15:34.591446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.591: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:34.591448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.591: cmd: stdout: \" Get started by creating a template: \\x1b[;mcoder templates init\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.592584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:67: 2022-12-07 08:15:34.592: cmd: matched \"Welcome to Coder\" = \" of Enterprise? (\\x1b[1myes\\x1b[0m/no) yes\\r\\n \\r\\n Welcome to Coder\"\n"} +{"Time":"2022-12-07T09:15:34.592589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:80: 2022-12-07 08:15:34.592: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.592592+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.592593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.592595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.592 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"496.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9b4b1c49-5d3a-46d8-81f7-965898826fe5\"}\n"} +{"Time":"2022-12-07T09:15:34.593268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.593271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.593273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.592 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.593275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.592 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.593277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.592 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.593279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.592 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.593281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.592 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.593429+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY"} +{"Time":"2022-12-07T09:15:34.593431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":"=== CONT TestLogin/InitialUserTTY\n"} +{"Time":"2022-12-07T09:15:34.593433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.593435+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL"} +{"Time":"2022-12-07T09:15:34.593438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL","Output":"=== CONT TestLogin/InitialUserBadLoginURL\n"} +{"Time":"2022-12-07T09:15:34.594666+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.59467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.594684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.594 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"587.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d65f13f3-2886-46ef-9829-6dbb45bcfe44\"}\n"} +{"Time":"2022-12-07T09:15:34.599294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin","Output":"--- PASS: TestLogin (0.00s)\n"} +{"Time":"2022-12-07T09:15:34.5993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Output":" --- PASS: TestLogin/InitialUserNoTTY (0.00s)\n"} +{"Time":"2022-12-07T09:15:34.599302+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Elapsed":0} +{"Time":"2022-12-07T09:15:34.599323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" --- PASS: TestLogin/ExistingUserValidTokenTTY (0.01s)\n"} +{"Time":"2022-12-07T09:15:34.599331+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Elapsed":0.01} +{"Time":"2022-12-07T09:15:34.599334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":" --- PASS: TestLogin/TokenFlag (0.01s)\n"} +{"Time":"2022-12-07T09:15:34.599336+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Elapsed":0.01} +{"Time":"2022-12-07T09:15:34.599338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" --- PASS: TestLogin/ExistingUserInvalidTokenTTY (0.01s)\n"} +{"Time":"2022-12-07T09:15:34.599339+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Elapsed":0.01} +{"Time":"2022-12-07T09:15:34.59935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" --- PASS: TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt (0.03s)\n"} +{"Time":"2022-12-07T09:15:34.599353+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Elapsed":0.03} +{"Time":"2022-12-07T09:15:34.599355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" --- PASS: TestLogin/InitialUserFlags (0.01s)\n"} +{"Time":"2022-12-07T09:15:34.599357+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Elapsed":0.01} +{"Time":"2022-12-07T09:15:34.599358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" --- PASS: TestLogin/InitialUserTTY (0.01s)\n"} +{"Time":"2022-12-07T09:15:34.599361+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Elapsed":0.01} +{"Time":"2022-12-07T09:15:34.599362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL","Output":" --- PASS: TestLogin/InitialUserBadLoginURL (0.01s)\n"} +{"Time":"2022-12-07T09:15:34.599364+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL","Elapsed":0.01} +{"Time":"2022-12-07T09:15:34.599366+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin","Elapsed":0} +{"Time":"2022-12-07T09:15:34.599367+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.599368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.602257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.602 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"94.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6e31e7cb-e270-46fa-836a-55f0d88ce60b\"}\n"} +{"Time":"2022-12-07T09:15:34.602624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.602 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"36.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a1be93fa-2a8e-479c-9ca9-8b25068af0bb\"}\n"} +{"Time":"2022-12-07T09:15:34.603058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.602 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"431.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"04e974f8-ca42-46bc-afd4-8fc220fcb823\"}\n"} +{"Time":"2022-12-07T09:15:34.603672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/organizations/be81fecb-a814-4779-9b22-5309e54db0e2/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"524.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"13401915-be52-4656-8dd0-724ce61b9d68\"}\n"} +{"Time":"2022-12-07T09:15:34.60378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ssh_test.go:77: waiting for template version job 0096ded6-6047-4251-98cc-094cf59c655c\n"} +{"Time":"2022-12-07T09:15:34.604864+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:34.604868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:34.604869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.604 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.604872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.604 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.608983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.608991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.608993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.608 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:34.612109+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.612118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.612121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.611 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"407.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d36d259-be0b-4b52-b221-4ac26b50789b\"}\n"} +{"Time":"2022-12-07T09:15:34.612188+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.612191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.612195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.612 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"726.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9cae71f4-10b7-4272-ad80-0ba86ec3d9f4\"}\n"} +{"Time":"2022-12-07T09:15:34.612512+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.612523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.612525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.612 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"467.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44cff0d7-c07a-4b7f-939f-03279fc86f1b\"}\n"} +{"Time":"2022-12-07T09:15:34.613919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.613924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.613926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.613 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.61393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.613 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.613999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.613 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:34.614003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.613 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteMultiple_prompted974375322/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.614058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.613 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteMultiple_prompted974375322/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.614062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.614 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteMultiple_prompted974375322/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.614085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.614 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.614237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.614 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:34.618324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.618 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"588.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"82d1d815-f131-49e9-acfa-4f131da1b247\"}\n"} +{"Time":"2022-12-07T09:15:34.619777+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.619784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.619786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.619 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"531.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8577b30e-2ec4-4a3a-bb47-2d359bb9c054\"}\n"} +{"Time":"2022-12-07T09:15:34.629726+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.629735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.629738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.629 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"508.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1d14ac9b-a226-401d-8700-d4252cc29b9e\"}\n"} +{"Time":"2022-12-07T09:15:34.636047+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.636057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.636059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"446.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"818cea8a-23e5-439a-8793-87f1f7116223\"}\n"} +{"Time":"2022-12-07T09:15:34.637329+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.637334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.637347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"360.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0cd78ed-b8c2-44b5-ad52-59391d82c4a9\"}\n"} +{"Time":"2022-12-07T09:15:34.637358+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.63736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.637361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.637 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.637363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.637 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.637366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.637 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.637368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.637 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.637369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.637 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.637371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.637 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.637519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"395.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d60f0524-a6f3-4ff2-a551-ad85254cbb0b\"}\n"} +{"Time":"2022-12-07T09:15:34.641774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.641782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.641784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.641 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fbc99a83-e2a0-427c-a7af-ba9457df073c\"}\n"} +{"Time":"2022-12-07T09:15:34.642968+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.642972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.642976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.642 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"346.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e9c2acc5-37d9-49e3-be3b-5e5845ade871\"}\n"} +{"Time":"2022-12-07T09:15:34.643649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.643 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.643657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.643 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.643659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.643 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} +{"Time":"2022-12-07T09:15:34.655031+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:34.65508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:34.655085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.655087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.655146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.655154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.655157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.655159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.655161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.655163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:34.655165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:34.655169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:34.655171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:34.655173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:34.655175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:34.655176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:34.655179+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.65518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.655182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4fbfd7a6-5614-48d1-9145-c81e8c12f629\"}\n"} +{"Time":"2022-12-07T09:15:34.655185+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:34.655186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:34.655187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.655192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.655 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:34.655193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.655 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.655281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.655: cmd: stdout: \"\\x1b[1A\\r✔ Queued [787ms]\"\n"} +{"Time":"2022-12-07T09:15:34.655284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.655: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.655285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.655: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} +{"Time":"2022-12-07T09:15:34.655287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.655: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.655288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.655: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [51ms]\"\n"} +{"Time":"2022-12-07T09:15:34.65529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.655: cmd: stdout: \"⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.658982+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.658988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.65899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.658 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.659045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.659 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.659088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.659 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:34.659125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.659 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteMultiple_--yes1546984490/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.65915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.659 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteMultiple_--yes1546984490/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.659195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.659 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteMultiple_--yes1546984490/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.659202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.659 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.659297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.659 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:34.660736+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.660739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.660748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"357.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"10b7d671-3548-4914-ba44-7abf69770c9b\"}\n"} +{"Time":"2022-12-07T09:15:34.661121+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.661124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.661127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8505837b-3e5b-47ae-b6c3-50765a8e7015\"}\n"} +{"Time":"2022-12-07T09:15:34.66333+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.663334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.663339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.662 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"11.375µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:34.664492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.664 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.664496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.664 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.666136+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.66614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.666142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.665 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44fcb8d5-cae7-4b05-93c5-d710bcf9d6ed\"}\n"} +{"Time":"2022-12-07T09:15:34.667098+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.667104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.667105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.667 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"665.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f4453e40-0c08-4513-9710-3684563643c2\"}\n"} +{"Time":"2022-12-07T09:15:34.66807+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.668082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.668085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.667 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"522.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ab93cb0-05a1-48eb-bc5e-f4f59f17cc28\"}\n"} +{"Time":"2022-12-07T09:15:34.668589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.668 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5878d56-dc72-4e19-8bf8-3c9e54715d27\"}\n"} +{"Time":"2022-12-07T09:15:34.673136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"35µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"742b0c29-5767-47ff-92ce-f15c47342582\"}\n"} +{"Time":"2022-12-07T09:15:34.673477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"34.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"314bd3a9-de62-4c7d-b1f0-6112d8483a8e\"}\n"} +{"Time":"2022-12-07T09:15:34.674112+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.674117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.674119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.673 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.6743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.674313+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.674315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.674316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/users/me/workspace/lucid-roentgen1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6026ef13-1ece-44b1-85f8-c00ce97718e0\"}\n"} +{"Time":"2022-12-07T09:15:34.674417+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.674426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.674427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:34.674431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"size_bytes\": 2, \"path\": \"/tmp/TestShowExists2135269818/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.674846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"size_bytes\": 41, \"path\": \"/tmp/TestShowExists2135269818/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.67485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"size_bytes\": 41, \"path\": \"/tmp/TestShowExists2135269818/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.674852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"workspace_name\": \"suspicious-jackson3\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:34.674854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.674857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.675591+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} +{"Time":"2022-12-07T09:15:34.675606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} +{"Time":"2022-12-07T09:15:34.675608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.675 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaces.go:788\u003e\t(*API).putExtendWorkspace\textending workspace\t{\"request_id\": \"1c98869b-bc97-4621-b08f-ffcdce74e747\"} ...\n"} +{"Time":"2022-12-07T09:15:34.675611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" \"error\": workspace shutdown is manual:\n"} +{"Time":"2022-12-07T09:15:34.675642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" github.com/coder/coder/coderd.(*API).putExtendWorkspace.func1\n"} +{"Time":"2022-12-07T09:15:34.675645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" /Users/mtojek/code/coder/coderd/workspaces.go:760\n"} +{"Time":"2022-12-07T09:15:34.675647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.675 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72/extend\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"724.375µs\", \"status_code\": 409, \"latency_ms\": 0, \"request_id\": \"1c98869b-bc97-4621-b08f-ffcdce74e747\"}\n"} +{"Time":"2022-12-07T09:15:34.676256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.676 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"290.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4cd9ffeb-88c0-486b-b527-d04160fe52c6\"}\n"} +{"Time":"2022-12-07T09:15:34.676552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.676 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:34.676943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.676948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride","Output":"--- PASS: TestScheduleOverride (0.00s)\n"} +{"Time":"2022-12-07T09:15:34.676951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" --- PASS: TestScheduleOverride/InvalidDuration (0.69s)\n"} +{"Time":"2022-12-07T09:15:34.676953+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Elapsed":0.69} +{"Time":"2022-12-07T09:15:34.676956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" --- PASS: TestScheduleOverride/OK (1.05s)\n"} +{"Time":"2022-12-07T09:15:34.676958+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Elapsed":1.05} +{"Time":"2022-12-07T09:15:34.676959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" --- PASS: TestScheduleOverride/NoDeadline (1.90s)\n"} +{"Time":"2022-12-07T09:15:34.676961+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Elapsed":1.9} +{"Time":"2022-12-07T09:15:34.676963+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride","Elapsed":0} +{"Time":"2022-12-07T09:15:34.676964+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} +{"Time":"2022-12-07T09:15:34.676966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== CONT TestLogout/Logout\n"} +{"Time":"2022-12-07T09:15:34.680086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.679 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"123.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b2f960d6-1982-4a20-aea3-6864cf3df63c\"}\n"} +{"Time":"2022-12-07T09:15:34.680545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.680 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"166.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5489beb0-e554-4b9a-a1a7-e6f5b8c9a176\"}\n"} +{"Time":"2022-12-07T09:15:34.680554+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.680555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.680557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.680 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"534.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c9c222dc-59cd-42a7-8043-d4f6b64fbb82\"}\n"} +{"Time":"2022-12-07T09:15:34.682255+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} +{"Time":"2022-12-07T09:15:34.682259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== CONT TestLogout/Logout\n"} +{"Time":"2022-12-07T09:15:34.682261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.682 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"53.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ff7f088b-15bb-43da-9fea-32f5a900deaf\"}\n"} +{"Time":"2022-12-07T09:15:34.682391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.682 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"25.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b2c3a7ca-7996-464c-985d-4bad9467192c\"}\n"} +{"Time":"2022-12-07T09:15:34.682621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.682: cmd: stdout: \"Open the following in your browser:\"\n"} +{"Time":"2022-12-07T09:15:34.682625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.682: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.682627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.682: cmd: stdout: \"\\thttp://localhost:57042/cli-auth\"\n"} +{"Time":"2022-12-07T09:15:34.682628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.682: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.68263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" logout_test.go:25: 2022-12-07 08:15:34.682: cmd: matched \"Paste your token here:\" = \"Open the following in your browser:\\r\\n\\r\\n\\thttp://localhost:57042/cli-auth\\r\\n\\r\\n\u003e Paste your token here:\"\n"} +{"Time":"2022-12-07T09:15:34.682719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" logout_test.go:25: 2022-12-07 08:15:34.682: cmd: stdin: \"Ve2vMUyEWt-3iYzZF6WZY4gQ36J6ZKLHE\\r\"\n"} +{"Time":"2022-12-07T09:15:34.682781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.682: cmd: stdout: \"\u003e Paste your token here: Ve2vMUyEWt-3iYzZF6WZY4gQ36J6ZKLHE\"\n"} +{"Time":"2022-12-07T09:15:34.684056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.683 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"538.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6b02c456-d935-4888-891d-8c14388a2453\"}\n"} +{"Time":"2022-12-07T09:15:34.684489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.684 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"258.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad67f264-3ffb-4ea4-9d25-9f8a8b4a812f\"}\n"} +{"Time":"2022-12-07T09:15:34.685018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.684: cmd: stdout: \"\u003e Welcome to Coder, testuser! You're authenticated.\"\n"} +{"Time":"2022-12-07T09:15:34.686586+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.686591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.686608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.686 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"365.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5f0f17bc-73c4-4a1d-b932-7e94daa45412\"}\n"} +{"Time":"2022-12-07T09:15:34.687271+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.687274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.687276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.687 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"369.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9ef33cbf-d19a-4789-a853-46b101f5903e\"}\n"} +{"Time":"2022-12-07T09:15:34.687527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.687532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.687534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.687 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.687536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.687 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.687538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.687 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.68754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.687 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} +{"Time":"2022-12-07T09:15:34.689101+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} +{"Time":"2022-12-07T09:15:34.689106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== CONT TestLogout/Logout\n"} +{"Time":"2022-12-07T09:15:34.689107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" logout_test.go:25: 2022-12-07 08:15:34.688: cmd: matched \"Welcome to Coder\" = \" Ve2vMUyEWt-3iYzZF6WZY4gQ36J6ZKLHE\\r\\n\u003e Welcome to Coder\"\n"} +{"Time":"2022-12-07T09:15:34.689109+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.689111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.689112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.688 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd8cb7b3-962e-41ab-9f0e-f899bc83dc66\"}\n"} +{"Time":"2022-12-07T09:15:34.690764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.689 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/organizations/857b3f85-c201-4d20-a9ba-1292089fc2d6/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"437.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"126fdfe0-3e2d-4674-bc5b-25def3eec4fb\"}\n"} +{"Time":"2022-12-07T09:15:34.69077+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} +{"Time":"2022-12-07T09:15:34.690772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== CONT TestLogout/Logout\n"} +{"Time":"2022-12-07T09:15:34.690773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.690 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"f305b861-f350-432c-89dc-73104c01cb02\"}\n"} +{"Time":"2022-12-07T09:15:34.690775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.690 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3d5bb70b-b747-4ccf-94af-cf4db5180788\"}\n"} +{"Time":"2022-12-07T09:15:34.692128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.692133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.692134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" templatedelete_test.go:138: 2022-12-07 08:15:34.691: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:34.692145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.691 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"21.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"ab6a803e-5b1a-4fa3-9d18-de6e96dfe977\"}\n"} +{"Time":"2022-12-07T09:15:34.692484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.692 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"acc687b8-e754-469a-82c2-867beded63bd\"}\n"} +{"Time":"2022-12-07T09:15:34.693255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.693 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9afe124c-f41c-4dfa-b9b2-e4cb906efc1a\"}\n"} +{"Time":"2022-12-07T09:15:34.69326+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.693262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.693263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.693 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2cbce124-dfc6-4388-8b74-d9fcec9c03a2\"}\n"} +{"Time":"2022-12-07T09:15:34.694361+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} +{"Time":"2022-12-07T09:15:34.694365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== CONT TestLogout/Logout\n"} +{"Time":"2022-12-07T09:15:34.694372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" logout_test.go:44: 2022-12-07 08:15:34.694: cmd: matched \"Are you sure you want to log out?\" = \", testuser! You're authenticated.\\r\\n\u003e Are you sure you want to log out?\"\n"} +{"Time":"2022-12-07T09:15:34.694374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" logout_test.go:45: 2022-12-07 08:15:34.694: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:34.694376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.694 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/users/logout\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"21.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c29cb67b-c871-427b-9e8a-0578befb353f\"}\n"} +{"Time":"2022-12-07T09:15:34.694457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.694459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.694461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" ptytest.go:103: 2022-12-07 08:15:34.694: cmd: stdout: \"yes\"\n"} +{"Time":"2022-12-07T09:15:34.694463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} +{"Time":"2022-12-07T09:15:34.694464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== CONT TestLogout/Logout\n"} +{"Time":"2022-12-07T09:15:34.694465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.694: cmd: stdout: \"\u003e Are you sure you want to log out? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:34.694882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.694: cmd: stdout: \"\u003e You are no longer logged in. You can log in using 'coder login \u003curl\u003e'.\"\n"} +{"Time":"2022-12-07T09:15:34.695159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" logout_test.go:46: 2022-12-07 08:15:34.695: cmd: matched \"You are no longer logged in. You can log in using 'coder login \u003curl\u003e'.\" = \" (\\x1b[1myes\\x1b[0m/no) yes\\r\\n\u003e You are no longer logged in. You can log in using 'coder login \u003curl\u003e'.\"\n"} +{"Time":"2022-12-07T09:15:34.69565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.695656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:80: 2022-12-07 08:15:34.695: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.695731+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.695737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.698453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"96.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"79db3a05-43a8-4941-a32a-3333f99fe141\"}\n"} +{"Time":"2022-12-07T09:15:34.698789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"66.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a675cb4f-503b-4d62-8080-628702e3bdcc\"}\n"} +{"Time":"2022-12-07T09:15:34.699196+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.699219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.699256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/organizations/857b3f85-c201-4d20-a9ba-1292089fc2d6/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.919375ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"4a6a73e7-ad43-4fad-8ab2-731b2509df57\"}\n"} +{"Time":"2022-12-07T09:15:34.699605+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.699618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.699624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"710.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"12acdca4-306e-48f0-bb4b-2d9e3dcd9e59\"}\n"} +{"Time":"2022-12-07T09:15:34.699633+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.699636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.69964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templates/f3f1fd0d-fb88-4625-8a44-f79ede2e6ce9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6c1277b5-cda9-42b1-bac4-37ef841fe826\"}\n"} +{"Time":"2022-12-07T09:15:34.699873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" ptytest.go:103: 2022-12-07 08:15:34.699: cmd: stdout: \"\u003e Delete these templates: \\x1b[;mstupefied-lehmann5\\x1b[0m ? (yes/\\x1b[1mno\\x1b[0m) Deleted template \\x1b[;mstupefied-lehmann5\\x1b[0m at Dec 7 09:15:34!\"\n"} +{"Time":"2022-12-07T09:15:34.700565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.700 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templates/f3f1fd0d-fb88-4625-8a44-f79ede2e6ce9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"79.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"c328a721-43df-4cc9-8862-3adc6432cbef\"}\n"} +{"Time":"2022-12-07T09:15:34.700644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" ptytest.go:80: 2022-12-07 08:15:34.700: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.700726+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.70073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.700732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.700 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/organizations/d4ed2fd0-4c94-4a6d-bcb4-d9ad01e33236/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"762.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b1ee1873-212a-4c30-881d-d21c64d241db\"}\n"} +{"Time":"2022-12-07T09:15:34.700896+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.70091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.700913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:34.700917+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.700919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.70092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" list_test.go:22: waiting for template version job bbef5105-99fb-4b3a-b490-d96b4e864bb7\n"} +{"Time":"2022-12-07T09:15:34.701661+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.701669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.701672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.701 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:34.701675+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} +{"Time":"2022-12-07T09:15:34.701676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} +{"Time":"2022-12-07T09:15:34.701678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.70168+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.701681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.704239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.703 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"118.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4cfc703f-1914-4607-8dc4-9ade77f921c0\"}\n"} +{"Time":"2022-12-07T09:15:34.704747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.704 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"45.084µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0ba44092-217a-49f7-a192-ea29d2a03c7c\"}\n"} +{"Time":"2022-12-07T09:15:34.705985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"535.041µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2e209c67-03d9-418f-b073-90e2840c7ff9\"}\n"} +{"Time":"2022-12-07T09:15:34.705991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.705993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.705995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"08686cc3-041e-4283-b77e-8952924d0f8f\"}\n"} +{"Time":"2022-12-07T09:15:34.706682+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.706685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.706687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/organizations/3b442a7e-a114-455a-a591-66a2768744ea/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"692.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e2b14213-93f0-41f6-88f4-114c19146764\"}\n"} +{"Time":"2022-12-07T09:15:34.706689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ssh_test.go:208: waiting for template version job 5da438a1-ba8e-455c-a00b-8c526c61b39b\n"} +{"Time":"2022-12-07T09:15:34.706691+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:34.706692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:34.706694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.706696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.706777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.70678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.706782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.706784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:34.706841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:34.706844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:34.706846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.706847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:34.706982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:34.706986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:34.707492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.707: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:34.707495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.707: cmd: stdout: \"✔ Detecting persistent resources [0ms]\"\n"} +{"Time":"2022-12-07T09:15:34.707497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.707: cmd: stdout: \"⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.707498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.707: cmd: stdout: \"\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\"\n"} +{"Time":"2022-12-07T09:15:34.707505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.707: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.708429+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.708432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.708434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.708 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.75µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:34.709744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.709 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.709749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.709 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.71317+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.713176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.713177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.712 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"556.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aa301531-c11a-452f-9fa8-00de067579e2\"}\n"} +{"Time":"2022-12-07T09:15:34.713463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.713467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.71347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.713 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"499.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7584f9b0-2d4d-42ce-89dd-d0faf5603f3a\"}\n"} +{"Time":"2022-12-07T09:15:34.715093+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.715097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.715099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.715101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.715103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.715107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.715109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.715111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.715113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.715115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.715117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.717423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.717 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"512.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12469d00-aea4-4d22-bf51-5bcaa57da466\"}\n"} +{"Time":"2022-12-07T09:15:34.725325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.725336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.725338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.725 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.725341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.725 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.725343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.725 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.725344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.725 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.727562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.727573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.727575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.727 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3392cfa5-de6e-4b1e-a41d-d4b414b5839d\"}\n"} +{"Time":"2022-12-07T09:15:34.729883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.729889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.729891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.729 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a32661d6-ad54-4a6d-9750-675fd9b2ea2e\"}\n"} +{"Time":"2022-12-07T09:15:34.733079+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.733085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.733092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.731 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"306.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"08567f5a-1e6c-458d-8181-4f85f2fd5b47\"}\n"} +{"Time":"2022-12-07T09:15:34.735903+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.735908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.735909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.735 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"47bf9880-03d6-49aa-9b17-d8e2c9cd835d\"}\n"} +{"Time":"2022-12-07T09:15:34.736937+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.736941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.736974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"564.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58550243-7a09-459c-a719-e0728fc461c5\"}\n"} +{"Time":"2022-12-07T09:15:34.741608+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.741614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.741616+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.741 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"251.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3aa494cd-cfd0-4e5e-b9d3-aa9048c5997a\"}\n"} +{"Time":"2022-12-07T09:15:34.751213+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.751244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.751246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.751 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96e60fbb-cb07-4a92-8251-f57304b07764\"}\n"} +{"Time":"2022-12-07T09:15:34.751737+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.75174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.751741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.75185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.751854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:34.751945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHImmediateExit334889163/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.751948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"size_bytes\": 112, \"path\": \"/tmp/TestSSHImmediateExit334889163/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.751951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHImmediateExit334889163/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.751952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.751986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:34.754177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62405a50-ebe9-4354-9028-52bb50a89ee4\"}\n"} +{"Time":"2022-12-07T09:15:34.756835+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.756839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.756841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.756 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"247.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16fb4faf-011c-49a0-8ce0-8d11bf7165cf\"}\n"} +{"Time":"2022-12-07T09:15:34.756932+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:34.756935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:34.756938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.756 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.756981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.756 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.757018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.756 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.757063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.75708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.757 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.757119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} +{"Time":"2022-12-07T09:15:34.757246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/a4d483d1-cdc5-4198-959a-64d91fb00351/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"989.39725ms\", \"status_code\": 101, \"latency_ms\": 989, \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\"}\n"} +{"Time":"2022-12-07T09:15:34.758916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/a4d483d1-cdc5-4198-959a-64d91fb00351\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.053417ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"67af2c19-af43-42c8-bb00-8e56630c66f5\"}\n"} +{"Time":"2022-12-07T09:15:34.759024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.759: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [101ms]\"\n"} +{"Time":"2022-12-07T09:15:34.759383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/a4d483d1-cdc5-4198-959a-64d91fb00351\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"340µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58d850b5-a168-498b-8491-247ea59de3ef\"}\n"} +{"Time":"2022-12-07T09:15:34.759759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/a4d483d1-cdc5-4198-959a-64d91fb00351/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"242.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0d07abf1-0393-4164-b60d-09de9bb76b7d\"}\n"} +{"Time":"2022-12-07T09:15:34.75999+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.759993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.759995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.759 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.760032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.760081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.760131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:34.760134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:34.760136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/a4d483d1-cdc5-4198-959a-64d91fb00351/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"270.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e619ec74-106d-4535-9c2d-14d7e965c6c8\"}\n"} +{"Time":"2022-12-07T09:15:34.760151+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.760153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.76016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.760198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.760226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.760253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.760332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.760356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.760522+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.760525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.760527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e38c3f3-bb36-4fe0-8455-cee6855463c3\"}\n"} +{"Time":"2022-12-07T09:15:34.760655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:34.760663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:34.760665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/a4d483d1-cdc5-4198-959a-64d91fb00351/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"301.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4803552-5a9c-4d18-a028-f885876ae91a\"}\n"} +{"Time":"2022-12-07T09:15:34.760762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.760: cmd: stdout: \"┌──────────┐\"\n"} +{"Time":"2022-12-07T09:15:34.760774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.760: cmd: stdout: \"│ Template │\"\n"} +{"Time":"2022-12-07T09:15:34.760776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.760: cmd: stdout: \"│ Preview │\"\n"} +{"Time":"2022-12-07T09:15:34.760778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.760: cmd: stdout: \"├──────────┤\"\n"} +{"Time":"2022-12-07T09:15:34.76078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.760: cmd: stdout: \"│ RESOURCE │\"\n"} +{"Time":"2022-12-07T09:15:34.760781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.760: cmd: stdout: \"├──────────┤\"\n"} +{"Time":"2022-12-07T09:15:34.760783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.760: cmd: stdout: \"└──────────┘\"\n"} +{"Time":"2022-12-07T09:15:34.761012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" templatecreate_test.go:116: 2022-12-07 08:15:34.760: cmd: matched \"Confirm create?\" = \"\\x1b[0m bananas\\r\\n\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [787ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [0ms]\\r\\n⧗ \\x1b[;mParsing template parameters\\x1b[0m \\r\\n\\x1b[1A\\r✔ Parsing template parameters [51ms]\\r\\n⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \\r\\n \\r\\n✔ Detecting persistent resources [0ms]\\r\\n⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \\r\\n\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Cleaning Up [101ms]\\r\\n┌──────────┐\\r\\n│ Template │\\r\\n│ Preview │\\r\\n├──────────┤\\r\\n│ RESOURCE │\\r\\n├──────────┤\\r\\n└──────────┘\\r\\n\u003e Confirm create?\"\n"} +{"Time":"2022-12-07T09:15:34.761025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" templatecreate_test.go:117: 2022-12-07 08:15:34.760: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:34.761112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.761: cmd: stdout: \"\u003e Confirm create? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:34.761553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.761 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/organizations/e91b6d6a-25e4-4153-863f-a156e345bea7/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3f19b632-d868-46e0-bf32-21c1517bb226\"}\n"} +{"Time":"2022-12-07T09:15:34.761673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.761: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.761677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.761: cmd: stdout: \"The my-template template has been created at Dec 7 09:15:34! Developers can \"\n"} +{"Time":"2022-12-07T09:15:34.76168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.761: cmd: stdout: \"provision a workspace with this template using: \"\n"} +{"Time":"2022-12-07T09:15:34.761681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.761: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.761685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.761: cmd: stdout: \" \\x1b[;mcoder create --template=\\\"my-template\\\" [workspace name]\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:34.761687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.761: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.761747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:80: 2022-12-07 08:15:34.761: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.76177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.761 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:34.761791+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.761796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.761797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.761 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f7b2fc2f-3822-402a-9c31-44047d904a93\"}\n"} +{"Time":"2022-12-07T09:15:34.76267+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} +{"Time":"2022-12-07T09:15:34.762673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:34.762675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.762696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate","Output":"--- PASS: TestTemplateCreate (0.00s)\n"} +{"Time":"2022-12-07T09:15:34.762698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" --- PASS: TestTemplateCreate/Create (0.36s)\n"} +{"Time":"2022-12-07T09:15:34.7627+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Elapsed":0.36} +{"Time":"2022-12-07T09:15:34.762704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" --- PASS: TestTemplateCreate/WithParameterExceedingCharLimit (0.01s)\n"} +{"Time":"2022-12-07T09:15:34.762706+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Elapsed":0.01} +{"Time":"2022-12-07T09:15:34.762708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" --- PASS: TestTemplateCreate/WithParameterFileNotContainingTheValue (0.31s)\n"} +{"Time":"2022-12-07T09:15:34.762714+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Elapsed":0.31} +{"Time":"2022-12-07T09:15:34.762717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" --- PASS: TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create) (1.06s)\n"} +{"Time":"2022-12-07T09:15:34.762719+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Elapsed":1.06} +{"Time":"2022-12-07T09:15:34.762721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" --- PASS: TestTemplateCreate/WithParameterFileContainingTheValue (1.02s)\n"} +{"Time":"2022-12-07T09:15:34.762722+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Elapsed":1.02} +{"Time":"2022-12-07T09:15:34.762723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" --- PASS: TestTemplateCreate/WithParameter (1.31s)\n"} +{"Time":"2022-12-07T09:15:34.762725+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Elapsed":1.31} +{"Time":"2022-12-07T09:15:34.762726+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate","Elapsed":0} +{"Time":"2022-12-07T09:15:34.76273+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:34.762731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:34.765351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"93.416µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"24568cc9-6e82-46ce-84b6-0ec15773570b\"}\n"} +{"Time":"2022-12-07T09:15:34.765622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"48.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cda74782-73d4-44b1-94f3-2c662f79c9d8\"}\n"} +{"Time":"2022-12-07T09:15:34.765682+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.765689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.765692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.765697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.765699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.765703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.76575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.765757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.766286+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:34.766294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:34.766296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.766 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"359.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cc18e998-768f-41f0-883b-432c392a8d12\"}\n"} +{"Time":"2022-12-07T09:15:34.766989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.766 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/organizations/acc171fe-c98b-476b-a97f-08e3bc001cb2/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"568.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1beffc99-da0c-4c42-90fa-30dd7a9b0494\"}\n"} +{"Time":"2022-12-07T09:15:34.767069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" ssh_test.go:139: waiting for template version job c00597f4-4112-4187-b8f7-456d58d88f25\n"} +{"Time":"2022-12-07T09:15:34.769005+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.76901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.769012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.768 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"571.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b11c70d5-34d0-4b0f-9f7d-e20086031e7e\"}\n"} +{"Time":"2022-12-07T09:15:34.775375+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.775382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.775424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.775 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.775553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.775 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.775624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.775 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.777119+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.777122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.777161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.777 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"436.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a6453aa7-7c00-4ab8-8a4d-ddf8c052ecf8\"}\n"} +{"Time":"2022-12-07T09:15:34.779915+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.779926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.779929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.779 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"420.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"71220809-e040-4b39-96a6-fa40ab6ef9f8\"}\n"} +{"Time":"2022-12-07T09:15:34.78251+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.782517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.782519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.782 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"478.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7d0d23c4-d603-4f39-939a-e5c0b4c34b88\"}\n"} +{"Time":"2022-12-07T09:15:34.786042+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.786054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.786056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.786 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"451.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"56167787-2c31-4083-ba78-0d94450fae2a\"}\n"} +{"Time":"2022-12-07T09:15:34.787223+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.787227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.787229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.787 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"346.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0d4b3335-b161-4496-98f7-0c1e9d7050dc\"}\n"} +{"Time":"2022-12-07T09:15:34.791756+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.79176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.791762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.791 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"745e5880-3be6-4e49-96a6-a5a31bcea71e\"}\n"} +{"Time":"2022-12-07T09:15:34.792564+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:34.792567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:34.792569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.792 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d1e706a6-4e98-4f0d-b36b-d1cb5084ebf8\"}\n"} +{"Time":"2022-12-07T09:15:34.798032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.798051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.798054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.797 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:34.800794+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.8008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.800802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.800 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.916µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:34.802116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.802 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.802341+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.802345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.802346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.802 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"444.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8464e22a-efe9-469f-a0bb-dcb92086f5b8\"}\n"} +{"Time":"2022-12-07T09:15:34.80235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.802351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.802353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.802 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.803603+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.803607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.803609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.803 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:34.804218+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.804221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.804223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"382.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2b40ebf8-47d5-4b80-b509-55063804c6d8\"}\n"} +{"Time":"2022-12-07T09:15:34.806875+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.806879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.806881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.806 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11197f4b-688a-4963-934e-6005dacb4e57\"}\n"} +{"Time":"2022-12-07T09:15:34.810633+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.810638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.81064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.810 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bc2c5ee5-7733-4112-b76a-3e368955b0f5\"}\n"} +{"Time":"2022-12-07T09:15:34.810699+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.810703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.810705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.810 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.810733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.810 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.810751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.810 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.810769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.810 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.810788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.810 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.810824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.810 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.811986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.811 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"498.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"80c5a79b-3a40-456e-a7ce-b085a1c3b0cd\"}\n"} +{"Time":"2022-12-07T09:15:34.815847+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.815859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.815862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.815 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.815866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.815 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.815869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.815 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.815906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.815 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} +{"Time":"2022-12-07T09:15:34.816738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.816 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4de7b1e7-8a9f-4a4e-98f6-05df8bf01bf0\"}\n"} +{"Time":"2022-12-07T09:15:34.8173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.817 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/organizations/67cd7c26-ca17-4861-9a4a-c9e6ac63feda/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c335e15e-1128-43ff-b9fa-78ced8a2978a\"}\n"} +{"Time":"2022-12-07T09:15:34.817468+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:34.817472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:34.817475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.817 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ee08bad4-838f-4a95-8a1c-41c2d9f0bad2\"}\n"} +{"Time":"2022-12-07T09:15:34.818119+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.818125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.818137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.818 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/organizations/67cd7c26-ca17-4861-9a4a-c9e6ac63feda/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"564.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"24f7019b-6dad-4738-9321-31b32c53906d\"}\n"} +{"Time":"2022-12-07T09:15:34.818724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.818 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/organizations/67cd7c26-ca17-4861-9a4a-c9e6ac63feda/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"451.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b6d0626e-691e-4732-9ea6-1ded1b0bc3d3\"}\n"} +{"Time":"2022-12-07T09:15:34.821439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.821 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18.209µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"2815b60c-dc26-473a-9a41-c924c994ef90\"}\n"} +{"Time":"2022-12-07T09:15:34.821583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.821 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"21.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7b044d18-770f-41e2-b8e5-e75fe80e6b10\"}\n"} +{"Time":"2022-12-07T09:15:34.822149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.822 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"af3ef2d9-cfb4-4c1d-8e4e-3b07d60eafad\"}\n"} +{"Time":"2022-12-07T09:15:34.822785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.822 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/organizations/67cd7c26-ca17-4861-9a4a-c9e6ac63feda/templates/stoic-sanderson6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"250.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ecc14d1a-76e4-4a0a-8dad-733a22e077d4\"}\n"} +{"Time":"2022-12-07T09:15:34.823146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.823 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/organizations/67cd7c26-ca17-4861-9a4a-c9e6ac63feda/templates/gracious-shockley4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"240.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"842b4e6c-1367-49c5-872f-00c337e634e5\"}\n"} +{"Time":"2022-12-07T09:15:34.823554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.823 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/organizations/67cd7c26-ca17-4861-9a4a-c9e6ac63feda/templates/focused-lichterman6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c582d8a-c106-4f76-8366-435d8a62bb4f\"}\n"} +{"Time":"2022-12-07T09:15:34.823875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" templatedelete_test.go:106: 2022-12-07 08:15:34.823: cmd: matched \"Delete these templates: \\x1b[;mstoic-sanderson6, gracious-shockley4, focused-lichterman6\\x1b[0m ?\" = \"\u003e Delete these templates: \\x1b[;mstoic-sanderson6, gracious-shockley4, focused-lichterman6\\x1b[0m ?\"\n"} +{"Time":"2022-12-07T09:15:34.823882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" templatedelete_test.go:107: 2022-12-07 08:15:34.823: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:34.824303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.824 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templates/e068c5ea-e7fd-4533-ae27-df7bcdfa472a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6b96f139-4325-46ef-bfc5-0940376768d8\"}\n"} +{"Time":"2022-12-07T09:15:34.824418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" ptytest.go:103: 2022-12-07 08:15:34.824: cmd: stdout: \"\u003e Delete these templates: \\x1b[;mstoic-sanderson6, gracious-shockley4, focused-lichterman6\\x1b[0m ? (yes/\\x1b[1mno\\x1b[0m) yes\"\n"} +{"Time":"2022-12-07T09:15:34.824425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" ptytest.go:103: 2022-12-07 08:15:34.824: cmd: stdout: \"Deleted template \\x1b[;mstoic-sanderson6\\x1b[0m at Dec 7 09:15:34!\"\n"} +{"Time":"2022-12-07T09:15:34.824731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.824 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templates/9f1c142a-8106-410d-b2d0-e34c8cd0dbbe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"260.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d90256f0-6012-4ab0-b782-88fb6cba4bbd\"}\n"} +{"Time":"2022-12-07T09:15:34.824849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" ptytest.go:103: 2022-12-07 08:15:34.824: cmd: stdout: \"Deleted template \\x1b[;mgracious-shockley4\\x1b[0m at Dec 7 09:15:34!\"\n"} +{"Time":"2022-12-07T09:15:34.825769+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.825774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.825776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.825 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.825778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.825 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.825781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.825 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.825812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.825 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.825841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.825 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.82704+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.827045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.827047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.826 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templates/36770529-2da4-4a4a-b300-73c6103723f6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"979.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"318eee59-12f6-4a1f-88ba-3ee23aec529e\"}\n"} +{"Time":"2022-12-07T09:15:34.827159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" ptytest.go:103: 2022-12-07 08:15:34.827: cmd: stdout: \"Deleted template \\x1b[;mfocused-lichterman6\\x1b[0m at Dec 7 09:15:34!\"\n"} +{"Time":"2022-12-07T09:15:34.827608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templates/e068c5ea-e7fd-4533-ae27-df7bcdfa472a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"32.584µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"5c463e92-b2d8-4abb-8755-056a8f7a2b87\"}\n"} +{"Time":"2022-12-07T09:15:34.827735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templates/9f1c142a-8106-410d-b2d0-e34c8cd0dbbe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.584µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"86360528-8a53-4cc2-9f60-14ead284529d\"}\n"} +{"Time":"2022-12-07T09:15:34.827764+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.827766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.827768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16b225c7-7274-47ad-aadf-883a2c31d5a2\"}\n"} +{"Time":"2022-12-07T09:15:34.827854+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} +{"Time":"2022-12-07T09:15:34.827857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} +{"Time":"2022-12-07T09:15:34.827861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templates/36770529-2da4-4a4a-b300-73c6103723f6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.25µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"bcf81b04-5d06-4d23-8fc2-3808f883f425\"}\n"} +{"Time":"2022-12-07T09:15:34.827951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" ptytest.go:80: 2022-12-07 08:15:34.827: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.828125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.827 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:34.828754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.828757+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:34.828759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:34.830847+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.830852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.830855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1977606c-aaf8-4bf5-b0ce-8d09366d2709\"}\n"} +{"Time":"2022-12-07T09:15:34.831035+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:34.83104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:34.831076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"109.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7f4363ab-8792-425d-bd62-72c044326d8b\"}\n"} +{"Time":"2022-12-07T09:15:34.831309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.166µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ed405dd2-4957-492d-a1df-edbc13ae62c0\"}\n"} +{"Time":"2022-12-07T09:15:34.832006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"396.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5a26d3b8-f834-4cee-ab5f-b6c7b78af2cc\"}\n"} +{"Time":"2022-12-07T09:15:34.832555+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.832559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.832561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.832 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2bf7b4e3-4083-4f41-a8ce-00e59a3cc278\"}\n"} +{"Time":"2022-12-07T09:15:34.832684+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:34.832699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:34.832702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.832 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/organizations/e173e15e-89f2-457e-8afb-4ebe49e2f852/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"529.666µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"06e91edb-ddec-4273-bb4f-4d18d7725fdd\"}\n"} +{"Time":"2022-12-07T09:15:34.832742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ssh_test.go:112: waiting for template version job 3fe0459e-25d8-4391-9409-099b250d1f91\n"} +{"Time":"2022-12-07T09:15:34.837527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.837536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.837538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.837 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d8e6c4aa-3601-4a6f-beba-0377cf53a0c8\"}\n"} +{"Time":"2022-12-07T09:15:34.83795+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.837954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.837956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.837 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97b1866a-ebc7-4b2c-a09f-5e26654063e2\"}\n"} +{"Time":"2022-12-07T09:15:34.843432+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:34.843438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:34.84344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.843 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"382.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6ce43d92-7ebc-41b6-89b9-d90bb828fa5e\"}\n"} +{"Time":"2022-12-07T09:15:34.848136+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.848143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.848145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:34.848236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:34.848276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:34.848301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"size_bytes\": 2, \"path\": \"/tmp/TestListSingle358689189/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.848323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"size_bytes\": 2, \"path\": \"/tmp/TestListSingle358689189/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.848335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"size_bytes\": 2, \"path\": \"/tmp/TestListSingle358689189/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.848348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:34.848394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:34.852302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.852307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.85231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.852329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.852346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.852361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.852376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.852391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.852426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.852509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.852536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.85307+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.853073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.853074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.853 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"557.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"09d6069f-3e65-4a41-b913-f7419f2cb158\"}\n"} +{"Time":"2022-12-07T09:15:34.85366+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.853663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.853693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.853 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:34.853758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.853 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:34.853817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.853 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:34.853868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHForwardAgent3998299952/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.853909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"size_bytes\": 112, \"path\": \"/tmp/TestSSHForwardAgent3998299952/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.853957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHForwardAgent3998299952/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.853987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:34.854067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.854 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:34.854222+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.854224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.854226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.854 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a0e4cf6-623d-4842-8692-6ddf11d67d34\"}\n"} +{"Time":"2022-12-07T09:15:34.856855+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.856865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.856867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.856 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4034485e-0333-4875-947e-ae3cf1efe31c\"}\n"} +{"Time":"2022-12-07T09:15:34.858099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:34.858102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:34.858105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.858 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"460487ac-04ff-4616-a1bd-b2b1554db31f\"}\n"} +{"Time":"2022-12-07T09:15:34.860583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.860587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.86059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.860 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"330.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e51cb4c-13a4-449e-977d-30db92ec5ca0\"}\n"} +{"Time":"2022-12-07T09:15:34.861242+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.861245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.861247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.860 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.861249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.860 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.861251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.861 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.861252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.861 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} +{"Time":"2022-12-07T09:15:34.863299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.863 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"300.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"30bb515f-1bb6-4a9c-8843-aa6de31fcb41\"}\n"} +{"Time":"2022-12-07T09:15:34.863703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.863 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/organizations/0852c7d3-23d9-4f36-8570-e8db4e37311f/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"28e4bff1-d454-4170-8728-ede36ebf8d01\"}\n"} +{"Time":"2022-12-07T09:15:34.864265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.864 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/organizations/0852c7d3-23d9-4f36-8570-e8db4e37311f/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"372.083µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"32b17bd2-25d4-40e9-8afb-906fa107984d\"}\n"} +{"Time":"2022-12-07T09:15:34.864713+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:34.864717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:34.864719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.864 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:34.864834+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.864861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.864869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.864 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/organizations/0852c7d3-23d9-4f36-8570-e8db4e37311f/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"322.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d588f809-073a-4fb3-9b87-1a33940abe47\"}\n"} +{"Time":"2022-12-07T09:15:34.86692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.866 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.291µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"36735a41-f663-455a-9e09-610227f6accd\"}\n"} +{"Time":"2022-12-07T09:15:34.867239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.867 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"047e56c6-3442-48d0-93bf-3cc0c485a83d\"}\n"} +{"Time":"2022-12-07T09:15:34.867663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.867 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"291.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"77887c94-550b-49ed-87f7-05943e5761a7\"}\n"} +{"Time":"2022-12-07T09:15:34.8681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.868 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/organizations/0852c7d3-23d9-4f36-8570-e8db4e37311f/templates/jolly-zhukovsky3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"264.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cc4c4700-a27e-4140-a645-a4b8be952776\"}\n"} +{"Time":"2022-12-07T09:15:34.868478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.868 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/organizations/0852c7d3-23d9-4f36-8570-e8db4e37311f/templates/jolly-shockley6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f2fe2a4f-bd28-4f1c-9ae5-720fc98d413a\"}\n"} +{"Time":"2022-12-07T09:15:34.868816+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:34.868823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:34.868825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.868 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"349eb829-de40-481a-8eff-a43cecb869f8\"}\n"} +{"Time":"2022-12-07T09:15:34.869099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} +{"Time":"2022-12-07T09:15:34.869103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} +{"Time":"2022-12-07T09:15:34.869104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.869 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/organizations/0852c7d3-23d9-4f36-8570-e8db4e37311f/templates/elated-mclaren2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"71f16960-d20b-4749-86bb-7ed3db20ba17\"}\n"} +{"Time":"2022-12-07T09:15:34.869697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.869 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templates/02b5a899-2f16-4f68-b10e-ee5fed1be54a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"236.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"75026d7d-167e-4237-b2e2-7d604bbdda68\"}\n"} +{"Time":"2022-12-07T09:15:34.871111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.871 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templates/43627d34-c08a-4c9d-b55d-f6371f2d9a26\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"420.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8e405838-7167-47e1-814d-9da089d9ccb2\"}\n"} +{"Time":"2022-12-07T09:15:34.872076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templates/04d59ecd-d15b-40ee-9039-f07031592f9b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8daf6e83-c2c5-42f0-9839-965538be0321\"}\n"} +{"Time":"2022-12-07T09:15:34.872811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templates/02b5a899-2f16-4f68-b10e-ee5fed1be54a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"41.834µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"4d22b9ef-c48b-4d90-84a6-3d0bfc63f69d\"}\n"} +{"Time":"2022-12-07T09:15:34.872821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templates/43627d34-c08a-4c9d-b55d-f6371f2d9a26\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"24.792µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"e3405391-3ef9-4626-b90d-77409170c281\"}\n"} +{"Time":"2022-12-07T09:15:34.873606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.873 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templates/04d59ecd-d15b-40ee-9039-f07031592f9b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"e73afee5-5115-49cb-9d72-4e3c5febe004\"}\n"} +{"Time":"2022-12-07T09:15:34.873611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.873 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:34.874318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.874334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete","Output":"--- PASS: TestTemplateDelete (0.00s)\n"} +{"Time":"2022-12-07T09:15:34.874337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" --- PASS: TestTemplateDelete/Ok (0.36s)\n"} +{"Time":"2022-12-07T09:15:34.874339+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Elapsed":0.36} +{"Time":"2022-12-07T09:15:34.874343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" --- PASS: TestTemplateDelete/Selector (0.37s)\n"} +{"Time":"2022-12-07T09:15:34.874345+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Elapsed":0.37} +{"Time":"2022-12-07T09:15:34.874346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" --- PASS: TestTemplateDelete/Multiple_prompted (0.37s)\n"} +{"Time":"2022-12-07T09:15:34.874348+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Elapsed":0.37} +{"Time":"2022-12-07T09:15:34.874349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" --- PASS: TestTemplateDelete/Multiple_--yes (0.37s)\n"} +{"Time":"2022-12-07T09:15:34.874361+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Elapsed":0.37} +{"Time":"2022-12-07T09:15:34.874363+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete","Elapsed":0} +{"Time":"2022-12-07T09:15:34.874364+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles"} +{"Time":"2022-12-07T09:15:34.874365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":"=== CONT TestLogout/CannotDeleteFiles\n"} +{"Time":"2022-12-07T09:15:34.877153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.876 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"89.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"156b4807-ddb1-47ee-8cec-3abc16484d36\"}\n"} +{"Time":"2022-12-07T09:15:34.877215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.877 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"72.584µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d7c9dd29-b8d5-4f9f-8836-040878ece6cd\"}\n"} +{"Time":"2022-12-07T09:15:34.877218+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.87722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.877221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.877 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"346.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12235c15-a434-4db9-acb2-a619f73265e0\"}\n"} +{"Time":"2022-12-07T09:15:34.878281+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.878284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.878286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.878 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.878357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.878 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.878361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.878 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.878363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.878 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.878411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.878 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.878706+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles"} +{"Time":"2022-12-07T09:15:34.878709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":"=== CONT TestLogout/CannotDeleteFiles\n"} +{"Time":"2022-12-07T09:15:34.87871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.878 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1df3b41c-9f40-4370-a2d1-e7ce8a036699\"}\n"} +{"Time":"2022-12-07T09:15:34.878854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.878 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d0deea65-0473-444a-8c09-9cfc4c9e06df\"}\n"} +{"Time":"2022-12-07T09:15:34.879371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:103: 2022-12-07 08:15:34.879: cmd: stdout: \"Open the following in your browser:\"\n"} +{"Time":"2022-12-07T09:15:34.879375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:103: 2022-12-07 08:15:34.879: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.879377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:103: 2022-12-07 08:15:34.879: cmd: stdout: \"\\thttp://localhost:57120/cli-auth\"\n"} +{"Time":"2022-12-07T09:15:34.879378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:103: 2022-12-07 08:15:34.879: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.879379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" logout_test.go:133: 2022-12-07 08:15:34.879: cmd: matched \"Paste your token here:\" = \"Open the following in your browser:\\r\\n\\r\\n\\thttp://localhost:57120/cli-auth\\r\\n\\r\\n\u003e Paste your token here:\"\n"} +{"Time":"2022-12-07T09:15:34.879381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" logout_test.go:133: 2022-12-07 08:15:34.879: cmd: stdin: \"gNdFx5NfZF-0XlOFZEPe8lmicL4tJ63nY\\r\"\n"} +{"Time":"2022-12-07T09:15:34.879507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:103: 2022-12-07 08:15:34.879: cmd: stdout: \"\u003e Paste your token here: gNdFx5NfZF-0XlOFZEPe8lmicL4tJ63nY\"\n"} +{"Time":"2022-12-07T09:15:34.880242+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.880245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.880247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"580.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"153e6154-cf37-4415-8289-29a9bd366806\"}\n"} +{"Time":"2022-12-07T09:15:34.8813+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles"} +{"Time":"2022-12-07T09:15:34.881305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":"=== CONT TestLogout/CannotDeleteFiles\n"} +{"Time":"2022-12-07T09:15:34.881306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.881 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"47aa95ee-8b91-424f-bf46-a0457d9a9e24\"}\n"} +{"Time":"2022-12-07T09:15:34.881705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.881 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"309.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"013d227f-8cfc-456f-8f30-db9514422119\"}\n"} +{"Time":"2022-12-07T09:15:34.882063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:103: 2022-12-07 08:15:34.882: cmd: stdout: \"\u003e Welcome to Coder, testuser! You're authenticated.\"\n"} +{"Time":"2022-12-07T09:15:34.882081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" logout_test.go:133: 2022-12-07 08:15:34.882: cmd: matched \"Welcome to Coder\" = \" gNdFx5NfZF-0XlOFZEPe8lmicL4tJ63nY\\r\\n\u003e Welcome to Coder\"\n"} +{"Time":"2022-12-07T09:15:34.882322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.882324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.882326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.882 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"417.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b2851d87-5c27-40e4-9d14-b80677c44443\"}\n"} +{"Time":"2022-12-07T09:15:34.883609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:34.883631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:34.883636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.883 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"327.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"54a4392b-91a3-4892-b16f-6793d5117af7\"}\n"} +{"Time":"2022-12-07T09:15:34.88404+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles"} +{"Time":"2022-12-07T09:15:34.884045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":"=== CONT TestLogout/CannotDeleteFiles\n"} +{"Time":"2022-12-07T09:15:34.884047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.883 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.25µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"1aea18fb-306b-4655-9529-c0a336c354e4\"}\n"} +{"Time":"2022-12-07T09:15:34.884196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.884 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c143ca21-bd6c-4183-a348-ee1f968a96db\"}\n"} +{"Time":"2022-12-07T09:15:34.884341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" logout_test.go:189: 2022-12-07 08:15:34.884: cmd: matched \"Are you sure you want to log out?\" = \", testuser! You're authenticated.\\r\\n\u003e Are you sure you want to log out?\"\n"} +{"Time":"2022-12-07T09:15:34.884349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" logout_test.go:190: 2022-12-07 08:15:34.884: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:34.884352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:103: 2022-12-07 08:15:34.884: cmd: stdout: \"\u003e Are you sure you want to log out? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:34.884576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.884 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/users/logout\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6e876573-81d8-40ca-8387-6945b0e22e4e\"}\n"} +{"Time":"2022-12-07T09:15:34.885295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.885301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:80: 2022-12-07 08:15:34.885: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.88536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile"} +{"Time":"2022-12-07T09:15:34.885368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":"=== CONT TestLogout/NoSessionFile\n"} +{"Time":"2022-12-07T09:15:34.886296+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.886301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.886303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"525.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"877ba17c-cfb5-42d2-9d5b-e39dbb867d0e\"}\n"} +{"Time":"2022-12-07T09:15:34.887698+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile"} +{"Time":"2022-12-07T09:15:34.887709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":"=== CONT TestLogout/NoSessionFile\n"} +{"Time":"2022-12-07T09:15:34.887711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" t.go:81: 2022-12-07 08:15:34.887 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57137\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"79.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"58b6a384-7997-494d-a8d9-2b51fb7bedaa\"}\n"} +{"Time":"2022-12-07T09:15:34.887852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" t.go:81: 2022-12-07 08:15:34.887 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57137\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"799a2cda-4255-4768-97ec-46503fe9e1d6\"}\n"} +{"Time":"2022-12-07T09:15:34.889415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" t.go:81: 2022-12-07 08:15:34.889 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57137\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7cfb8d47-78e9-48e0-b8f1-1852ee502f7e\"}\n"} +{"Time":"2022-12-07T09:15:34.88956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" t.go:81: 2022-12-07 08:15:34.889 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57137\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f971786f-1878-49b7-8417-6e880584394d\"}\n"} +{"Time":"2022-12-07T09:15:34.889639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.889: cmd: stdout: \"Open the following in your browser:\"\n"} +{"Time":"2022-12-07T09:15:34.889642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.889: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.889645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.889: cmd: stdout: \"\\thttp://localhost:57137/cli-auth\"\n"} +{"Time":"2022-12-07T09:15:34.889647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.889: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.889655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" logout_test.go:106: 2022-12-07 08:15:34.889: cmd: matched \"Paste your token here:\" = \"Open the following in your browser:\\r\\n\\r\\n\\thttp://localhost:57137/cli-auth\\r\\n\\r\\n\u003e Paste your token here:\"\n"} +{"Time":"2022-12-07T09:15:34.889661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" logout_test.go:106: 2022-12-07 08:15:34.889: cmd: stdin: \"0fJKx0IAG4-W4PS2sPnRofK9WCcaVfIQI\\r\"\n"} +{"Time":"2022-12-07T09:15:34.889684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.889: cmd: stdout: \"\u003e Paste your token here: 0fJKx0IAG4-W4PS2sPnRofK9WCcaVfIQI\"\n"} +{"Time":"2022-12-07T09:15:34.890687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" t.go:81: 2022-12-07 08:15:34.890 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57137\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"427.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5e502d9a-a2b8-482c-a3dc-05be6b773afe\"}\n"} +{"Time":"2022-12-07T09:15:34.891035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" t.go:81: 2022-12-07 08:15:34.891 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57137\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"92ea6d62-ef3e-4dcd-8975-50ddd57ddd6f\"}\n"} +{"Time":"2022-12-07T09:15:34.891299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.891: cmd: stdout: \"\u003e Welcome to Coder, testuser! You're authenticated.\"\n"} +{"Time":"2022-12-07T09:15:34.891323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" logout_test.go:106: 2022-12-07 08:15:34.891: cmd: matched \"Welcome to Coder\" = \" 0fJKx0IAG4-W4PS2sPnRofK9WCcaVfIQI\\r\\n\u003e Welcome to Coder\"\n"} +{"Time":"2022-12-07T09:15:34.893036+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:34.893041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:34.893043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.892 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f24cfe51-065d-4092-a01e-f09205b440ca\"}\n"} +{"Time":"2022-12-07T09:15:34.893433+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile"} +{"Time":"2022-12-07T09:15:34.893439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":"=== CONT TestLogout/NoSessionFile\n"} +{"Time":"2022-12-07T09:15:34.893442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.893443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" ptytest.go:80: 2022-12-07 08:15:34.893: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.893488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile"} +{"Time":"2022-12-07T09:15:34.893497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":"=== CONT TestLogout/NoURLFile\n"} +{"Time":"2022-12-07T09:15:34.896349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" t.go:81: 2022-12-07 08:15:34.896 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57144\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"85µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2dcfe976-bd16-4a0c-865a-9c14154f65b6\"}\n"} +{"Time":"2022-12-07T09:15:34.896359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" t.go:81: 2022-12-07 08:15:34.896 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57144\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"58.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9532fced-2e34-4094-90d7-bf6fd7a072a8\"}\n"} +{"Time":"2022-12-07T09:15:34.898197+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.89821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.898212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.897 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.167µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:34.899459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.898 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:34.899468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.898 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.899471+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile"} +{"Time":"2022-12-07T09:15:34.899473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":"=== CONT TestLogout/NoURLFile\n"} +{"Time":"2022-12-07T09:15:34.899474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" t.go:81: 2022-12-07 08:15:34.898 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57144\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6e96686-d207-402b-8bb8-1a91a7d5a4bd\"}\n"} +{"Time":"2022-12-07T09:15:34.899845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" t.go:81: 2022-12-07 08:15:34.899 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57144\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2a195bfa-e37f-4f1c-95da-590e99c558a5\"}\n"} +{"Time":"2022-12-07T09:15:34.899894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.899: cmd: stdout: \"Open the following in your browser:\"\n"} +{"Time":"2022-12-07T09:15:34.899898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.899: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.8999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.899: cmd: stdout: \"\\thttp://localhost:57144/cli-auth\"\n"} +{"Time":"2022-12-07T09:15:34.899907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.899: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.902052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" logout_test.go:79: 2022-12-07 08:15:34.901: cmd: matched \"Paste your token here:\" = \"Open the following in your browser:\\r\\n\\r\\n\\thttp://localhost:57144/cli-auth\\r\\n\\r\\n\u003e Paste your token here:\"\n"} +{"Time":"2022-12-07T09:15:34.902061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" logout_test.go:79: 2022-12-07 08:15:34.901: cmd: stdin: \"miG65Mkwmc-F2qH2MlXl4ABTUzCO6qmr6\\r\"\n"} +{"Time":"2022-12-07T09:15:34.902114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.902: cmd: stdout: \"\u003e Paste your token here: miG65Mkwmc-F2qH2MlXl4ABTUzCO6qmr6\"\n"} +{"Time":"2022-12-07T09:15:34.902654+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.902658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.902661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.902664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.902712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.902717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.902719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.902749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.902785+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.902789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.902791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"5.125µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:34.902842+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.902844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.902846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6f6db65-49af-46e6-9588-7cfd10d6e844\"}\n"} +{"Time":"2022-12-07T09:15:34.903476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile"} +{"Time":"2022-12-07T09:15:34.903517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":"=== CONT TestLogout/NoURLFile\n"} +{"Time":"2022-12-07T09:15:34.903525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" t.go:81: 2022-12-07 08:15:34.903 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57144\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"576.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5509539f-2208-454c-820f-2384d34180f7\"}\n"} +{"Time":"2022-12-07T09:15:34.903976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" t.go:81: 2022-12-07 08:15:34.903 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57144\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"379.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aafafb41-55a3-4710-9cbf-4401bfd6cecd\"}\n"} +{"Time":"2022-12-07T09:15:34.904283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.904: cmd: stdout: \"\u003e Welcome to Coder, testuser! You're authenticated.\"\n"} +{"Time":"2022-12-07T09:15:34.904384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" logout_test.go:79: 2022-12-07 08:15:34.904: cmd: matched \"Welcome to Coder\" = \" miG65Mkwmc-F2qH2MlXl4ABTUzCO6qmr6\\r\\n\u003e Welcome to Coder\"\n"} +{"Time":"2022-12-07T09:15:34.904453+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.904456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.904458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.904 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:34.904529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.904 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.905518+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.905523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.905526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.905 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7279b241-7a19-466c-8e5e-df3aeb0f8b84\"}\n"} +{"Time":"2022-12-07T09:15:34.90647+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile"} +{"Time":"2022-12-07T09:15:34.906477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":"=== CONT TestLogout/NoURLFile\n"} +{"Time":"2022-12-07T09:15:34.906479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.906548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" ptytest.go:80: 2022-12-07 08:15:34.906: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.906632+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt"} +{"Time":"2022-12-07T09:15:34.906636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":"=== CONT TestLogout/SkipPrompt\n"} +{"Time":"2022-12-07T09:15:34.909021+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.90908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.909088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.908 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"462.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0582a830-6a9f-4ef2-b4a7-48b85453bf43\"}\n"} +{"Time":"2022-12-07T09:15:34.909755+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:34.909762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:34.909765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"566.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6f07972a-498c-4588-b92a-aa4eca6ecd8d\"}\n"} +{"Time":"2022-12-07T09:15:34.909927+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt"} +{"Time":"2022-12-07T09:15:34.909935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":"=== CONT TestLogout/SkipPrompt\n"} +{"Time":"2022-12-07T09:15:34.909938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"119.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"98fb53f0-439b-4165-b68c-3c11aa202261\"}\n"} +{"Time":"2022-12-07T09:15:34.910415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.910 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"193.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"186e590a-1578-4e25-809c-fe6f9622b146\"}\n"} +{"Time":"2022-12-07T09:15:34.912509+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.912705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.912713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.912 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.024291ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c1487757-774e-448d-a285-099b11d2219d\"}\n"} +{"Time":"2022-12-07T09:15:34.913488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt"} +{"Time":"2022-12-07T09:15:34.913498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":"=== CONT TestLogout/SkipPrompt\n"} +{"Time":"2022-12-07T09:15:34.913501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"73.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c78f548e-a985-4743-8631-676bb2dce5e0\"}\n"} +{"Time":"2022-12-07T09:15:34.913844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"40.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1bc2f47d-7280-419e-93cd-81e612e82e83\"}\n"} +{"Time":"2022-12-07T09:15:34.913903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.913: cmd: stdout: \"Open the following in your browser:\"\n"} +{"Time":"2022-12-07T09:15:34.913907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.913: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.913947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.913: cmd: stdout: \"\\thttp://localhost:57154/cli-auth\"\n"} +{"Time":"2022-12-07T09:15:34.913964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.913: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:34.91459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" logout_test.go:53: 2022-12-07 08:15:34.914: cmd: matched \"Paste your token here:\" = \"Open the following in your browser:\\r\\n\\r\\n\\thttp://localhost:57154/cli-auth\\r\\n\\r\\n\u003e Paste your token here:\"\n"} +{"Time":"2022-12-07T09:15:34.914594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" logout_test.go:53: 2022-12-07 08:15:34.914: cmd: stdin: \"cHTfVKrTnR-befIiEzHfynUBVK64eoWSs\\r\"\n"} +{"Time":"2022-12-07T09:15:34.914595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.914: cmd: stdout: \"\u003e Paste your token here: cHTfVKrTnR-befIiEzHfynUBVK64eoWSs\"\n"} +{"Time":"2022-12-07T09:15:34.916243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.916 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"597.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ccf0b8f8-61ff-4965-95a9-b1409db63fed\"}\n"} +{"Time":"2022-12-07T09:15:34.91727+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:34.917274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:34.917278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.916 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:34.917281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.916 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:34.917283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.917 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:34.917285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHStdio3967758857/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.917287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"size_bytes\": 112, \"path\": \"/tmp/TestSSHStdio3967758857/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.917289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHStdio3967758857/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.917291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:34.917293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.917 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:34.917668+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt"} +{"Time":"2022-12-07T09:15:34.917679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":"=== CONT TestLogout/SkipPrompt\n"} +{"Time":"2022-12-07T09:15:34.917681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.917 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"542.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9ce1d85d-0198-4d01-8495-4f900398f758\"}\n"} +{"Time":"2022-12-07T09:15:34.918621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.918: cmd: stdout: \"\u003e Welcome to Coder, testuser! You're authenticated.\"\n"} +{"Time":"2022-12-07T09:15:34.918888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:34.918893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:34.918896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.918 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8096a980-b8d0-47ec-8c0f-fae2cb8c4af5\"}\n"} +{"Time":"2022-12-07T09:15:34.920068+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt"} +{"Time":"2022-12-07T09:15:34.920072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":"=== CONT TestLogout/SkipPrompt\n"} +{"Time":"2022-12-07T09:15:34.920074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" logout_test.go:53: 2022-12-07 08:15:34.919: cmd: matched \"Welcome to Coder\" = \" cHTfVKrTnR-befIiEzHfynUBVK64eoWSs\\r\\n\u003e Welcome to Coder\"\n"} +{"Time":"2022-12-07T09:15:34.921799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.921 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18.959µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"6975cefc-62b7-4cdc-ba7c-f658fbb7efc9\"}\n"} +{"Time":"2022-12-07T09:15:34.921804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.921 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"21.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"414da00b-94cd-4acd-8cea-1f6ddba3082a\"}\n"} +{"Time":"2022-12-07T09:15:34.922206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.922 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/users/logout\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6c76dccb-c2c5-491d-82d8-45ff0504c933\"}\n"} +{"Time":"2022-12-07T09:15:34.92253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.922: cmd: stdout: \"\u003e You are no longer logged in. You can log in using 'coder login \u003curl\u003e'.\"\n"} +{"Time":"2022-12-07T09:15:34.923932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" logout_test.go:72: 2022-12-07 08:15:34.923: cmd: matched \"You are no longer logged in. You can log in using 'coder login \u003curl\u003e'.\" = \", testuser! You're authenticated.\\r\\n\u003e You are no longer logged in. You can log in using 'coder login \u003curl\u003e'.\"\n"} +{"Time":"2022-12-07T09:15:34.924442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.924486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:80: 2022-12-07 08:15:34.924: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.924525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout","Output":"--- PASS: TestLogout (0.00s)\n"} +{"Time":"2022-12-07T09:15:34.924543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" --- PASS: TestLogout/Logout (0.02s)\n"} +{"Time":"2022-12-07T09:15:34.924546+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Elapsed":0.02} +{"Time":"2022-12-07T09:15:34.924549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" --- PASS: TestLogout/CannotDeleteFiles (0.01s)\n"} +{"Time":"2022-12-07T09:15:34.924552+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Elapsed":0.01} +{"Time":"2022-12-07T09:15:34.924556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" --- PASS: TestLogout/NoSessionFile (0.01s)\n"} +{"Time":"2022-12-07T09:15:34.924557+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Elapsed":0.01} +{"Time":"2022-12-07T09:15:34.924559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" --- PASS: TestLogout/NoURLFile (0.01s)\n"} +{"Time":"2022-12-07T09:15:34.924561+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Elapsed":0.01} +{"Time":"2022-12-07T09:15:34.924562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" --- PASS: TestLogout/SkipPrompt (0.02s)\n"} +{"Time":"2022-12-07T09:15:34.924564+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Elapsed":0.02} +{"Time":"2022-12-07T09:15:34.924565+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogout","Elapsed":0} +{"Time":"2022-12-07T09:15:34.924567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs"} +{"Time":"2022-12-07T09:15:34.924568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs","Output":"=== CONT TestUpdate/NoArgs\n"} +{"Time":"2022-12-07T09:15:34.926155+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts"} +{"Time":"2022-12-07T09:15:34.926159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":"=== CONT TestUserCreate/Prompts\n"} +{"Time":"2022-12-07T09:15:34.92742+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.927425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.927426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.927 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"422.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d6be908e-a57a-4880-a855-61af635a3601\"}\n"} +{"Time":"2022-12-07T09:15:34.928618+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts"} +{"Time":"2022-12-07T09:15:34.928627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":"=== CONT TestUserCreate/Prompts\n"} +{"Time":"2022-12-07T09:15:34.92863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" t.go:81: 2022-12-07 08:15:34.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57166\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"93.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"500580e3-4372-4e32-96b9-447c8f23ec58\"}\n"} +{"Time":"2022-12-07T09:15:34.928889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" t.go:81: 2022-12-07 08:15:34.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57166\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"77.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8e67c443-d0c9-4566-b045-6d113db04097\"}\n"} +{"Time":"2022-12-07T09:15:34.929249+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.929274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.929281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.929 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.929289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.929 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:34.929298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.929 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.929328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.929 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} +{"Time":"2022-12-07T09:15:34.930085+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.930091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.930093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.930 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"555.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1af4db30-9a80-4047-8d51-8ae43e6d2798\"}\n"} +{"Time":"2022-12-07T09:15:34.930573+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:34.930578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:34.93058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.930 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:34.931161+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts"} +{"Time":"2022-12-07T09:15:34.931165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":"=== CONT TestUserCreate/Prompts\n"} +{"Time":"2022-12-07T09:15:34.931167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" t.go:81: 2022-12-07 08:15:34.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57166\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"70.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f986067b-9993-46c4-ad1e-1fa052a398d7\"}\n"} +{"Time":"2022-12-07T09:15:34.931433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" t.go:81: 2022-12-07 08:15:34.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57166\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.833µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"d84c326a-fc7f-47bf-90dc-4e44988bef12\"}\n"} +{"Time":"2022-12-07T09:15:34.931941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" t.go:81: 2022-12-07 08:15:34.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57166\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"395.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8d92b399-51c7-4538-8990-447542845e52\"}\n"} +{"Time":"2022-12-07T09:15:34.932413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" usercreate_test.go:37: 2022-12-07 08:15:34.932: cmd: matched \"Username\" = \"\u003e Username\"\n"} +{"Time":"2022-12-07T09:15:34.932419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" usercreate_test.go:38: 2022-12-07 08:15:34.932: cmd: stdin: \"dean\\r\"\n"} +{"Time":"2022-12-07T09:15:34.932449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" ptytest.go:103: 2022-12-07 08:15:34.932: cmd: stdout: \"\u003e Username: dean\"\n"} +{"Time":"2022-12-07T09:15:34.932459+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.932462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.932466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a50c002-6823-41ca-aad9-9f3855c20ea5\"}\n"} +{"Time":"2022-12-07T09:15:34.932632+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts"} +{"Time":"2022-12-07T09:15:34.932636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":"=== CONT TestUserCreate/Prompts\n"} +{"Time":"2022-12-07T09:15:34.932637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" usercreate_test.go:37: 2022-12-07 08:15:34.932: cmd: matched \"Email\" = \": dean\\r\\n\u003e Email\"\n"} +{"Time":"2022-12-07T09:15:34.932639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" usercreate_test.go:38: 2022-12-07 08:15:34.932: cmd: stdin: \"dean@coder.com\\r\"\n"} +{"Time":"2022-12-07T09:15:34.93266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" ptytest.go:103: 2022-12-07 08:15:34.932: cmd: stdout: \"\u003e Email: dean@coder.com\"\n"} +{"Time":"2022-12-07T09:15:34.933366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" t.go:81: 2022-12-07 08:15:34.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57166\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"531.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b0426327-3537-4544-8931-2ea89eccfe18\"}\n"} +{"Time":"2022-12-07T09:15:34.933511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" ptytest.go:80: 2022-12-07 08:15:34.933: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.933999+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:34.934015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:34.934017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"434.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"89b50626-9691-479c-ad1d-3bc48d4af261\"}\n"} +{"Time":"2022-12-07T09:15:34.934112+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts"} +{"Time":"2022-12-07T09:15:34.934116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":"=== CONT TestUserCreate/Prompts\n"} +{"Time":"2022-12-07T09:15:34.934117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.93412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate","Output":"--- PASS: TestUserCreate (0.00s)\n"} +{"Time":"2022-12-07T09:15:34.934123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" --- PASS: TestUserCreate/Prompts (0.01s)\n"} +{"Time":"2022-12-07T09:15:34.934124+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Elapsed":0.01} +{"Time":"2022-12-07T09:15:34.934127+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserCreate","Elapsed":0} +{"Time":"2022-12-07T09:15:34.934128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s"} +{"Time":"2022-12-07T09:15:34.934129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s","Output":"=== CONT TestDurationDisplay/-1s\n"} +{"Time":"2022-12-07T09:15:34.934131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:34.934132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:34.936794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.936 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"115.084µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"931c294c-b5ee-4a77-a235-e1199301f795\"}\n"} +{"Time":"2022-12-07T09:15:34.936803+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.936805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.936807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.936 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"443.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"696b8a77-bb3c-4435-9b62-bec9463437a9\"}\n"} +{"Time":"2022-12-07T09:15:34.93721+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:34.937216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:34.937218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.936 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"44.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"196b6c5f-dd4b-44e4-b639-c66c8e178505\"}\n"} +{"Time":"2022-12-07T09:15:34.937896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"749473d0-1524-4a4b-93a4-f9f380d96dbc\"}\n"} +{"Time":"2022-12-07T09:15:34.938312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.938 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/organizations/e17f925f-0efc-48a4-a74f-ad33fabde2b0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.166µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b1320062-d21d-4690-86b7-67bd755be569\"}\n"} +{"Time":"2022-12-07T09:15:34.938317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" update_test.go:84: waiting for template version job 08c8a662-ad5a-446e-83c1-0db641ef54fd\n"} +{"Time":"2022-12-07T09:15:34.939917+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} +{"Time":"2022-12-07T09:15:34.939921+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} +{"Time":"2022-12-07T09:15:34.939923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.939 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.417µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"fe35984b-13ae-48ab-99fa-aca0d092c5f1\"}\n"} +{"Time":"2022-12-07T09:15:34.939925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.939 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"27.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f4f88fc-a428-41f7-9c03-99bd05094714\"}\n"} +{"Time":"2022-12-07T09:15:34.939927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.939 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3aebbde3-02b2-4b03-a465-999d1140b9f9\"}\n"} +{"Time":"2022-12-07T09:15:34.940521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.940 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/users/me/workspace/suspicious-jackson3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"498.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dcf1a810-e330-4459-84b3-461dedf8cde1\"}\n"} +{"Time":"2022-12-07T09:15:34.940832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" ptytest.go:103: 2022-12-07 08:15:34.940: cmd: stdout: \"┌───────────────────────────────────────────────────────────────────────────────────────┐\"\n"} +{"Time":"2022-12-07T09:15:34.940836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" ptytest.go:103: 2022-12-07 08:15:34.940: cmd: stdout: \"│ RESOURCE STATUS VERSION ACCESS │\"\n"} +{"Time":"2022-12-07T09:15:34.940838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" ptytest.go:103: 2022-12-07 08:15:34.940: cmd: stdout: \"├───────────────────────────────────────────────────────────────────────────────────────┤\"\n"} +{"Time":"2022-12-07T09:15:34.940839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" ptytest.go:103: 2022-12-07 08:15:34.940: cmd: stdout: \"│ \\x1b[1mcompute.main\\x1b[0m │\"\n"} +{"Time":"2022-12-07T09:15:34.940841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" ptytest.go:103: 2022-12-07 08:15:34.940: cmd: stdout: \"│ └─ smith (linux, i386) ⦾ connecting [0s] (unknown) \\x1b[;mcoder ssh suspicious-jackson3\\x1b[0m │\"\n"} +{"Time":"2022-12-07T09:15:34.940843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" ptytest.go:103: 2022-12-07 08:15:34.940: cmd: stdout: \"└───────────────────────────────────────────────────────────────────────────────────────┘\"\n"} +{"Time":"2022-12-07T09:15:34.940844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" show_test.go:54: 2022-12-07 08:15:34.940: cmd: matched \"compute.main\" = \"┌───────────────────────────────────────────────────────────────────────────────────────┐\\r\\n│ RESOURCE STATUS VERSION ACCESS │\\r\\n├───────────────────────────────────────────────────────────────────────────────────────┤\\r\\n│ \\x1b[1mcompute.main\"\n"} +{"Time":"2022-12-07T09:15:34.940848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" show_test.go:54: 2022-12-07 08:15:34.940: cmd: matched \"smith (linux, i386)\" = \"\\x1b[0m │\\r\\n│ └─ smith (linux, i386)\"\n"} +{"Time":"2022-12-07T09:15:34.940859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" show_test.go:54: 2022-12-07 08:15:34.940: cmd: matched \"coder ssh suspicious-jackson3\" = \" ⦾ connecting [0s] (unknown) \\x1b[;mcoder ssh suspicious-jackson3\"\n"} +{"Time":"2022-12-07T09:15:34.940963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" ptytest.go:80: 2022-12-07 08:15:34.940: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:34.941111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.940 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:34.941602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:34.941606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow","Output":"--- PASS: TestShow (0.00s)\n"} +{"Time":"2022-12-07T09:15:34.941608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" --- PASS: TestShow/Exists (1.21s)\n"} +{"Time":"2022-12-07T09:15:34.94161+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Elapsed":1.21} +{"Time":"2022-12-07T09:15:34.941613+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestShow","Elapsed":0} +{"Time":"2022-12-07T09:15:34.941615+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:34.941616+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:34.943499+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:34.943523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:34.943525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.943 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"564.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"944c1356-89d4-4124-a7e0-2c7dacede991\"}\n"} +{"Time":"2022-12-07T09:15:34.944234+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:34.944237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:34.944239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:34.943 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"117.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5788c580-ca95-44aa-8195-a08962d30d75\"}\n"} +{"Time":"2022-12-07T09:15:34.944242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:34.944 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"56.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"312eaad8-e590-4e25-9c9a-01f5c1951d28\"}\n"} +{"Time":"2022-12-07T09:15:34.945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:34.944 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"448.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"eee8bf71-1ce3-4e5d-b7d0-01e8c5850360\"}\n"} +{"Time":"2022-12-07T09:15:34.945634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:34.945 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/organizations/304f437c-b063-4fa0-ba34-4b1bf46b4a03/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d4749efa-06ce-4c85-953f-ca5e6a086de4\"}\n"} +{"Time":"2022-12-07T09:15:34.94564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" update_test.go:37: waiting for template version job cf22e90c-d579-4ebc-9238-bd32a441f0ac\n"} +{"Time":"2022-12-07T09:15:34.948736+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.948743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.948745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:34.948756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.948759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.948784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.948814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.948817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:34.948875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:34.949025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.949033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.949 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:34.951975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.951 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"18b65f28-f147-48b8-99a7-b47722c7a19f\"}\n"} +{"Time":"2022-12-07T09:15:34.952898+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.952901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.952903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.952 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.952905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.952 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.952907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.952 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.952909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.952 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} +{"Time":"2022-12-07T09:15:34.954793+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.954802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.954804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:34.954814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.954816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.954831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.954833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.954835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:34.954836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:34.954838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.95484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:34.956614+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.956618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.95662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.955 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"533.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c977a23a-cc56-4169-a388-8a1bd0c8c14c\"}\n"} +{"Time":"2022-12-07T09:15:34.956624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.956 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/organizations/be81fecb-a814-4779-9b22-5309e54db0e2/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"380.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3baf33e1-724b-4550-b940-26b3a3dc6eac\"}\n"} +{"Time":"2022-12-07T09:15:34.957707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.957 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/organizations/be81fecb-a814-4779-9b22-5309e54db0e2/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"817µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3715aff4-1fb2-4771-88ab-9cd4279700e4\"}\n"} +{"Time":"2022-12-07T09:15:34.957716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ssh_test.go:77: waiting for workspace build job 00ec0012-62de-4c2f-894f-bf64e3ecaa19\n"} +{"Time":"2022-12-07T09:15:34.960114+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.96012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.960122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"541.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"838de926-8e4a-4d7c-b545-44396aa24302\"}\n"} +{"Time":"2022-12-07T09:15:34.961647+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:34.961652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:34.961654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"742.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fc0aa9e6-b49a-4537-ba44-49a54223b692\"}\n"} +{"Time":"2022-12-07T09:15:34.964104+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:34.964109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:34.964111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.963 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.25µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:34.96564+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:34.965643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:34.965645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.965 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aed9219e-8127-48e9-a9e9-e57925da3c53\"}\n"} +{"Time":"2022-12-07T09:15:34.967866+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:34.96787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:34.967872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.967 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:34.967874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.967 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"70915dea-5567-45e5-8490-9ea49b2eed17\"}\n"} +{"Time":"2022-12-07T09:15:34.967876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.967 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:34.971082+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:34.971086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:34.971088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:34.971 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fe618e70-274c-4c6e-8458-11527706a645\"}\n"} +{"Time":"2022-12-07T09:15:34.976465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.976477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.976479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.976 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f1504faa-720f-4238-835f-b75fc8ab0ff7\"}\n"} +{"Time":"2022-12-07T09:15:34.981182+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:34.981187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:34.981189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.980 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:34.981191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.980 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:34.981193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.980 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:34.981195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.980 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHShowTroubleshootingURLAfterTimeout1634515371/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.981197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.980 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"size_bytes\": 150, \"path\": \"/tmp/TestSSHShowTroubleshootingURLAfterTimeout1634515371/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.981199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.980 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHShowTroubleshootingURLAfterTimeout1634515371/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:34.981201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.981 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:34.981203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.981 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:34.982097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:34.982105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:34.982107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.981 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9310bdb8-9258-413e-9cbf-84d5bafc3d85\"}\n"} +{"Time":"2022-12-07T09:15:34.983191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:34.98324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:34.983243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bfc2da34-0c46-4325-b52c-7ad2adbe0fad\"}\n"} +{"Time":"2022-12-07T09:15:34.983286+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:34.983289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:34.983291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"357.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dee824a1-d995-4cd2-a034-bbb18214e623\"}\n"} +{"Time":"2022-12-07T09:15:34.98866+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:34.988683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:34.988685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.988 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"291.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"76bafe30-1b68-49ee-8823-ab48d02569c3\"}\n"} +{"Time":"2022-12-07T09:15:34.992523+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:34.992529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:34.992532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.992 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e890bf0b-9014-4922-a92e-b9b4b606cdde\"}\n"} +{"Time":"2022-12-07T09:15:34.996059+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:34.996067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:34.99607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:34.995 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a630bee6-047e-4756-acb5-8f1ada1291de\"}\n"} +{"Time":"2022-12-07T09:15:34.999185+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:34.999193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:34.999195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.999 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:34.999198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.999 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.999231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.999 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:34.999235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.999 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:34.999311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.999 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:34.999317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.999 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:35.001562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.001 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"535.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad771060-0c3a-4ced-ac4c-7601345d903d\"}\n"} +{"Time":"2022-12-07T09:15:35.005202+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.005207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.005209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.004 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:35.005211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.004 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.005213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.004 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.005215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.004 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:35.005217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.005 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:35.005218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.005 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:35.007356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.007 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"554.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3d85ddde-000d-4fb6-ba17-e84edfa9962b\"}\n"} +{"Time":"2022-12-07T09:15:35.009214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.009218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.00922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.008 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9934fe51-388f-49d2-90aa-0168cea6632f\"}\n"} +{"Time":"2022-12-07T09:15:35.009927+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.009931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.009933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"397.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d9ee14d6-e8a5-4c28-9487-d05fc6f16928\"}\n"} +{"Time":"2022-12-07T09:15:35.014683+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.014688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.01469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.013 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"331.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49be91ac-3005-4e86-9765-eefaef1f80d6\"}\n"} +{"Time":"2022-12-07T09:15:35.017526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.01755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.017557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:35.017563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.017573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.017579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.017584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.017589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:35.017596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:35.01766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"289.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53f51c12-5ed3-48e8-a302-89d29d0a970c\"}\n"} +{"Time":"2022-12-07T09:15:35.017715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.017726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:35.02105+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.021055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.021057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.021 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"322.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61b1aff7-a35f-4571-a04c-c91a0d92fd41\"}\n"} +{"Time":"2022-12-07T09:15:35.026542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.02655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.026552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.026 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bd88e083-5d5a-44df-a8ae-f506b425a595\"}\n"} +{"Time":"2022-12-07T09:15:35.030667+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.030677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.030679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.030 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.375µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:35.031607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.031 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:35.031615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.031 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.032211+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.032216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.032218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a713f64f-ea52-4aca-9eab-fce327934e62\"}\n"} +{"Time":"2022-12-07T09:15:35.033491+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.033495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.033497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.033 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"52251433-5c8b-4ad2-a280-264194e14b05\"}\n"} +{"Time":"2022-12-07T09:15:35.035965+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.035973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.035986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"275µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5158bce5-d51d-46b6-9209-eb302659ca5a\"}\n"} +{"Time":"2022-12-07T09:15:35.035989+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.035991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.035992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.035 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:35.04119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.040 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"376.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"929b067f-bc0f-41e3-a7eb-8eac23943ea5\"}\n"} +{"Time":"2022-12-07T09:15:35.044275+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.04428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.044281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.044 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:35.044769+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.044771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.044773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.044 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6576b4a-2b31-4c93-9247-54fb2e1e44c1\"}\n"} +{"Time":"2022-12-07T09:15:35.046214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.046218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.046219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.046 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3ad6f54-21d8-4e15-a9cf-fec9ee74b5ab\"}\n"} +{"Time":"2022-12-07T09:15:35.049909+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.049915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.049917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.049 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:35.049919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.049 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:35.049921+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.049 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:35.049923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.049 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} +{"Time":"2022-12-07T09:15:35.052626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.052 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"267.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ee987d99-dc83-4bca-9613-5f47232475a5\"}\n"} +{"Time":"2022-12-07T09:15:35.053174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.053 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/organizations/d4ed2fd0-4c94-4a6d-bcb4-d9ad01e33236/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"283.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7ffeca8a-a4a8-4a73-aec4-a47bd26c0bf0\"}\n"} +{"Time":"2022-12-07T09:15:35.053995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.053 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/organizations/d4ed2fd0-4c94-4a6d-bcb4-d9ad01e33236/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"649µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e533be05-bc8e-4838-8c10-c1bdcb1b2c4c\"}\n"} +{"Time":"2022-12-07T09:15:35.054214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" list_test.go:25: waiting for workspace build job 69682f55-568c-4954-be9e-3f4370494b62\n"} +{"Time":"2022-12-07T09:15:35.055317+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.055344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.055353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.055 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:35.055368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.055 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:35.055435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.055 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:35.05545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.055 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} +{"Time":"2022-12-07T09:15:35.057621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"346.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cb921ba6-f718-46e0-bb4c-3d7546aa2640\"}\n"} +{"Time":"2022-12-07T09:15:35.058348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/organizations/3b442a7e-a114-455a-a591-66a2768744ea/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"254.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5474f7eb-a4c3-4e81-a27b-1e9d6d4c89fe\"}\n"} +{"Time":"2022-12-07T09:15:35.058357+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.058359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.058361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ac8e313-1bb8-4333-b4af-d6fadb194bcc\"}\n"} +{"Time":"2022-12-07T09:15:35.058655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.05866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.058662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"360.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1601682c-e251-4e1c-b000-c9894ab89c86\"}\n"} +{"Time":"2022-12-07T09:15:35.058979+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.058983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.058985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/organizations/3b442a7e-a114-455a-a591-66a2768744ea/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"761.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"16e2bc50-c828-4efb-a393-25f506fde9f2\"}\n"} +{"Time":"2022-12-07T09:15:35.05905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ssh_test.go:208: waiting for workspace build job 3c19008c-927a-4f34-932d-2521aed4c049\n"} +{"Time":"2022-12-07T09:15:35.064197+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.064206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.064208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.063 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"381.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"66e49f93-e260-49eb-9d82-f10892f62792\"}\n"} +{"Time":"2022-12-07T09:15:35.065131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.065135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.065137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.065139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.065226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:35.06523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHForwardAgent3998299952/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.065232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"size_bytes\": 112, \"path\": \"/tmp/TestSSHForwardAgent3998299952/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.065242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHForwardAgent3998299952/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.06531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"workspace_name\": \"crazy-dubinsky1\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:35.066015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.066024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.066 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.068154+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.068161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.068164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.067 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"667.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"27358042-b97b-4f37-ad95-b26c28fc5cd5\"}\n"} +{"Time":"2022-12-07T09:15:35.068167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.067 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:35.068169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.067 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.068171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.068 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.068321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.068 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:35.068325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.068 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:35.068428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.068 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:35.073238+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.073252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.073255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.073 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"844.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c926b1cf-157a-49de-9c72-2eb4aebb1299\"}\n"} +{"Time":"2022-12-07T09:15:35.080093+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.080106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.080109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.080 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"645.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e6d6deb-b135-4c28-bfef-8e00d30de04f\"}\n"} +{"Time":"2022-12-07T09:15:35.082639+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.082644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.082646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.081 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:35.082649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.081 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.082651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.081 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.082653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.081 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.082655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.081 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.082671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.081 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:35.082673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.081 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:35.082675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.082 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.082679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.082 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:35.083922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"536.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c279f45-d52a-48ae-b17b-21e8779a6937\"}\n"} +{"Time":"2022-12-07T09:15:35.08393+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.083932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.083934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"437.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0f934c9-e448-4b20-8e66-2236a8054d17\"}\n"} +{"Time":"2022-12-07T09:15:35.084673+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.084677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.084679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.084 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"35cf7e48-d585-4bc0-a43c-87cb9f7bd2e0\"}\n"} +{"Time":"2022-12-07T09:15:35.086431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.086436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.086438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.08644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.086806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:35.08681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.086812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.086814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.086816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.086818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:35.089011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.088 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"517µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"54dd182e-b972-4091-bc05-c74cc2a9ee67\"}\n"} +{"Time":"2022-12-07T09:15:35.093392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.093399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.093401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.092 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"367.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"92326b5f-de1e-47e2-86b4-94e0176e8f15\"}\n"} +{"Time":"2022-12-07T09:15:35.094612+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.094637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.094644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.094737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.094794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:35.094802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.094836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.09484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.094861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.094913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:35.096135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.096 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ed50db47-82fc-4a99-a310-b5c7206db88d\"}\n"} +{"Time":"2022-12-07T09:15:35.105653+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.10566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.105662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"406.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e9e3b6b3-7c18-4503-92d3-d9c2d727e743\"}\n"} +{"Time":"2022-12-07T09:15:35.108485+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.10849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.108492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.108 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"440.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"acc267b0-a078-4721-9cd1-47bfcbc38638\"}\n"} +{"Time":"2022-12-07T09:15:35.108969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.108972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.108974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.108 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"608e76cb-5f05-4a10-86b6-f1f630bbcdb3\"}\n"} +{"Time":"2022-12-07T09:15:35.110123+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.110129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.110131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.110 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"36b651e5-19e9-4cf5-9653-4d199f43847f\"}\n"} +{"Time":"2022-12-07T09:15:35.114189+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.114201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.114204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"360.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ba2eb2c5-9762-4e49-88fd-ae696f59993e\"}\n"} +{"Time":"2022-12-07T09:15:35.116187+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.116213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.116219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.116 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.116225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.116 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.116231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.116 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.116238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.116 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.117826+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.117834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.117837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.117 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b580172a-36e3-4b04-b0ef-0be6d42677f0\"}\n"} +{"Time":"2022-12-07T09:15:35.119794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.119 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:35.119879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.119 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:35.119882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.119 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:35.119884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.119 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} +{"Time":"2022-12-07T09:15:35.121126+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.121133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.121147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.121 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6dbe3e02-ff4a-46ec-bb14-cc021602cb31\"}\n"} +{"Time":"2022-12-07T09:15:35.129947+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.129962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.129965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.129 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"467.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ff220493-a0c3-459f-a97c-8e1b13d272a4\"}\n"} +{"Time":"2022-12-07T09:15:35.13349+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.133516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.133518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.133 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"613.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8e509f12-ab77-4b31-aa9f-db6a803cb3aa\"}\n"} +{"Time":"2022-12-07T09:15:35.13403+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.134034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.134036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.133 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:35.134059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.133 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.134067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.133 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.134069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.133 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:35.134071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.133 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:35.134073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.133 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:35.13431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.134 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d16571b5-11a0-4681-8e39-846b5362b94a\"}\n"} +{"Time":"2022-12-07T09:15:35.134705+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.134709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.134711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.134 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4b6e3d36-0128-46f4-ad62-28e0d92fced1\"}\n"} +{"Time":"2022-12-07T09:15:35.135134+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.135137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.135139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.135 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.584µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:35.136802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.136 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.136812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.136 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.140291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.140 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6507fe87-2cd0-46b5-a200-69636df570e0\"}\n"} +{"Time":"2022-12-07T09:15:35.143556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.143563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.143566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.143 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"354.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1fa9e890-dcb8-4c65-bb19-889bcc51d70a\"}\n"} +{"Time":"2022-12-07T09:15:35.144897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.143 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/organizations/acc171fe-c98b-476b-a97f-08e3bc001cb2/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"402.041µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"04ea5b94-d9ac-4062-9690-842bd338d43b\"}\n"} +{"Time":"2022-12-07T09:15:35.144908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.144 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/organizations/acc171fe-c98b-476b-a97f-08e3bc001cb2/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"726.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"405b17e1-461a-4c2d-8057-7837248bbecb\"}\n"} +{"Time":"2022-12-07T09:15:35.144911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" ssh_test.go:139: waiting for workspace build job 36f6b7c8-820a-43d5-862a-e1584852940a\n"} +{"Time":"2022-12-07T09:15:35.145211+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.145219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.145221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.145 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.145223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.145 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.145873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.145 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"6.708µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:35.146774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.146 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e2f6afdd-d955-4d1b-b1e1-ba6188c3fa94\"}\n"} +{"Time":"2022-12-07T09:15:35.154963+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.155004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.155007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.154 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a130743e-771a-42ee-b265-dead17ba6c5b\"}\n"} +{"Time":"2022-12-07T09:15:35.158484+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.158489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.158491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"376.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fc17e9bd-ba7f-4886-ab7e-507752c315b0\"}\n"} +{"Time":"2022-12-07T09:15:35.159735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.159766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.15977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1d302db2-09b9-42ac-9e8a-cbb8d9915c96\"}\n"} +{"Time":"2022-12-07T09:15:35.160556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.160561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.160564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.160 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e42385c1-3278-4611-a889-ecfb226035af\"}\n"} +{"Time":"2022-12-07T09:15:35.163846+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.163854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.163856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.163 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49db7064-61fa-4fa3-9d2e-03f6b3d4f94f\"}\n"} +{"Time":"2022-12-07T09:15:35.16652+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.166527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.16653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.166 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.166532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.166 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.166534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.166 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"resource_count\": 1, \"resources\": [{\"name\": \"dev\", \"type\": \"google_compute_instance\", \"agents\": [{\"id\": \"fb50331b-e1e2-4ad0-bac1-486cc3463ddf\", \"Auth\": {\"Token\": \"cdb52084-4c8d-4864-bcb3-b512f41cfb50\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.170899+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.170906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.170908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.170 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"486.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"13f2b03a-fb7c-41f9-8fba-643c8ab94499\"}\n"} +{"Time":"2022-12-07T09:15:35.171322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.171325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.171327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.171 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"376.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"80576acb-3a84-427e-82df-1344f74ac6a0\"}\n"} +{"Time":"2022-12-07T09:15:35.180714+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.180744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.180747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.179 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"444.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a759f310-4f18-4d79-819c-4ae1cd4426da\"}\n"} +{"Time":"2022-12-07T09:15:35.183552+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.183563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.183565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.183 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"446.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"43a41aae-f047-46f7-a184-511350f426f9\"}\n"} +{"Time":"2022-12-07T09:15:35.1838+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.183804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.183806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.183 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7c28c763-d655-46aa-8447-1e299fcdb948\"}\n"} +{"Time":"2022-12-07T09:15:35.184182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.184 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:35.184191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.184 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:35.184193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.184 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:35.184195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.184 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} +{"Time":"2022-12-07T09:15:35.184628+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.184631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.184633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d374b080-3e9e-4794-add6-83541ec21fb2\"}\n"} +{"Time":"2022-12-07T09:15:35.188006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.188012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.188014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.188016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.188018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.18802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.188022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.188024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.188026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.188027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.188029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.189106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.188 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b5baaa4-bfbe-47e6-99e0-0d1dbb5e66bb\"}\n"} +{"Time":"2022-12-07T09:15:35.195307+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.195314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.195317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.195319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.195337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.195342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.195349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.195457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.195465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.195467+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.195468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.19547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"381.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7156f623-c2b1-4e9e-b465-2d2a38a9ed33\"}\n"} +{"Time":"2022-12-07T09:15:35.195473+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.195474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.195475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.195479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.196496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.196 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"395.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e5b6674-cfd5-47d7-9c5f-609b9f81f429\"}\n"} +{"Time":"2022-12-07T09:15:35.206413+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.206423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.206435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.205 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"641.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"960edca8-b966-43a6-a732-9e54ce1e9518\"}\n"} +{"Time":"2022-12-07T09:15:35.208351+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.208357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.208362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"479.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3d9998c6-f749-49b1-9e25-924ae6a09c74\"}\n"} +{"Time":"2022-12-07T09:15:35.208964+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.208982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.208984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"329.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d74b3def-3d2a-4c55-9e64-f81d215b3b73\"}\n"} +{"Time":"2022-12-07T09:15:35.208987+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.208988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.20899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/organizations/e173e15e-89f2-457e-8afb-4ebe49e2f852/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"387.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b92e32c7-db72-4eb8-82cf-18eac2639c8f\"}\n"} +{"Time":"2022-12-07T09:15:35.209451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.20946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.209463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3f47931e-c96f-4163-9125-7a2ec5e86a8f\"}\n"} +{"Time":"2022-12-07T09:15:35.209909+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.209913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.209915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/organizations/e173e15e-89f2-457e-8afb-4ebe49e2f852/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"778.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d4944350-83a0-4bea-b353-f97417dfae85\"}\n"} +{"Time":"2022-12-07T09:15:35.209918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ssh_test.go:112: waiting for workspace build job a405f8b5-f302-49c4-8e11-96ba1fed7492\n"} +{"Time":"2022-12-07T09:15:35.214863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.214891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.214895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.214 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d624acf3-c61a-4a93-856d-b373b2aa5ec0\"}\n"} +{"Time":"2022-12-07T09:15:35.216919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.21709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.217093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.216 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.217096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.216 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.217098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.216 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.2171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.216 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.217102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.216 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.221352+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.221357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.221359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.221 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ff835c3a-59ae-4d8b-aa86-da6cc89fce6b\"}\n"} +{"Time":"2022-12-07T09:15:35.221628+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.221637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.221638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.221 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"482.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"73c243f3-1c65-42ec-8f91-b0732e54bade\"}\n"} +{"Time":"2022-12-07T09:15:35.22978+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.22979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.229793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.229 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"657f95fa-236c-4f49-b29e-53f477367760\"}\n"} +{"Time":"2022-12-07T09:15:35.233541+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.233575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.233592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.233 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"465.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fad09b76-557b-406c-9358-34e8ab88f54a\"}\n"} +{"Time":"2022-12-07T09:15:35.234659+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.234664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.234665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.234 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"433µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c8d0948-0b3d-44e1-a747-2ec71dc4429e\"}\n"} +{"Time":"2022-12-07T09:15:35.235351+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.235355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.235357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"266.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"59b956aa-242d-479d-8600-a01a6931d519\"}\n"} +{"Time":"2022-12-07T09:15:35.238691+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.238696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.238698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.238 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.238701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.238 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.238703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.238 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.238719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.238 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.238721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.238 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.238724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.238 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.239346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.239 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"467.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5c5ff033-92ea-4ef3-b3a5-35ff0bbd9b64\"}\n"} +{"Time":"2022-12-07T09:15:35.245708+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.245717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.24572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.245 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.245794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.245 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.2458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.245 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.245802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.245 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.245869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.245 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.245947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.245 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.249517+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.249525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.249545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.249 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"579.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1385f8c-2701-426b-89f3-dd333abd3c22\"}\n"} +{"Time":"2022-12-07T09:15:35.250289+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.250294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.250296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.250 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"827.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dea6fedc-5c87-4bfc-9f13-b0fee747dab3\"}\n"} +{"Time":"2022-12-07T09:15:35.255008+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.255019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.255022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.254 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"627.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eee2630a-ddd1-4e84-8fe0-e20d012865c9\"}\n"} +{"Time":"2022-12-07T09:15:35.258799+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.258807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.258809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.258 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"538µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ff1b579e-5aa1-4f4a-8957-3cf0305b113e\"}\n"} +{"Time":"2022-12-07T09:15:35.260635+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.260643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.260657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"466.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"84432700-77d4-4fa0-a5ac-a5b354787c2b\"}\n"} +{"Time":"2022-12-07T09:15:35.261137+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.261143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.261145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c5d396b8-3222-4bfa-a435-ac8284b36c12\"}\n"} +{"Time":"2022-12-07T09:15:35.263748+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.263753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.263755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.263 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"367.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4909300-298d-448e-bb56-658b9714abd0\"}\n"} +{"Time":"2022-12-07T09:15:35.267299+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.267308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.26731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.267 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.267313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.267 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.267315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.267 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.267317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.267 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.267319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.267 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.271325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.271332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.271334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"81093cbf-60cd-40e8-b4b6-cc197b9dbe2e\"}\n"} +{"Time":"2022-12-07T09:15:35.271337+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.271338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.27134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"290µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fa17dd7c-916c-4402-9c46-5145d213f680\"}\n"} +{"Time":"2022-12-07T09:15:35.280543+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.280566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.280568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.280 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"382.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ce6970c4-f109-476e-9da5-e89a4b4ad97f\"}\n"} +{"Time":"2022-12-07T09:15:35.283195+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.283199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.283202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.283 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c801ec5b-e322-4718-b90f-22c7634a41dc\"}\n"} +{"Time":"2022-12-07T09:15:35.285559+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.285565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.285567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90a5e7f2-1142-4881-8f0a-cd52dbd9027f\"}\n"} +{"Time":"2022-12-07T09:15:35.285712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.28572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.285723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"601.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"087e0a62-6247-4c39-b536-856590447783\"}\n"} +{"Time":"2022-12-07T09:15:35.288966+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.288973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.288977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.288 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"05e23514-cbaa-4663-b892-c10f77c1e5b6\"}\n"} +{"Time":"2022-12-07T09:15:35.288979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.288 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.288981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.288 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.288988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.288 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.288991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.288 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} +{"Time":"2022-12-07T09:15:35.29588+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.29589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.295892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.295 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"557µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c12f2d2e-7a0f-4276-aec9-232dc20ee0b2\"}\n"} +{"Time":"2022-12-07T09:15:35.296083+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.296088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.29609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.295 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.296092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.296 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.296094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.296 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.296342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.296 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} +{"Time":"2022-12-07T09:15:35.296531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.296 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d9344b91-78ea-4ec8-b345-6e826fa575db\"}\n"} +{"Time":"2022-12-07T09:15:35.29716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.296 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/organizations/304f437c-b063-4fa0-ba34-4b1bf46b4a03/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.666µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a5879859-a331-449b-9393-60eccce042b9\"}\n"} +{"Time":"2022-12-07T09:15:35.299807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.299 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.292µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"647626d4-b220-47e8-a6d4-0ef74a2f584f\"}\n"} +{"Time":"2022-12-07T09:15:35.299939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.299 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3511bbbe-73f0-462d-bb27-dc16d03db20b\"}\n"} +{"Time":"2022-12-07T09:15:35.300516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.300 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f88d8132-2efe-4e50-82a3-22b37afb0ee2\"}\n"} +{"Time":"2022-12-07T09:15:35.300834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.300 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"48.125µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"cfdc8538-4b0b-45c2-ad11-9daf47aba8f3\"}\n"} +{"Time":"2022-12-07T09:15:35.30128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.301 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/organizations/304f437c-b063-4fa0-ba34-4b1bf46b4a03/templates/quizzical-matsumoto3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"938569d8-b627-47d1-9e72-e65f41193336\"}\n"} +{"Time":"2022-12-07T09:15:35.302019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.301 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"579.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a4466ad7-7ebe-4f0d-b538-2a6cab339e64\"}\n"} +{"Time":"2022-12-07T09:15:35.302775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.302 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c267c26a-ab05-4dc0-ae99-c95ed32a1950\"}\n"} +{"Time":"2022-12-07T09:15:35.303803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.303 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"954.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"456c28e4-2413-45ed-bb87-538edfb1fdfa\"}\n"} +{"Time":"2022-12-07T09:15:35.304697+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.304721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.304727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.304 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"00ee2be6-0b8d-4ff6-be69-db638e27dbac\"}\n"} +{"Time":"2022-12-07T09:15:35.304826+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.30483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.304832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.304 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac/dry-run/41ca93bb-8556-4be9-9736-559b3433a2b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"715.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90127d16-d298-4514-9e0b-4cc484a3d2a5\"}\n"} +{"Time":"2022-12-07T09:15:35.308352+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.308357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.30836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.308 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"161308c6-c3ce-4c1e-8369-bf402be69770\"}\n"} +{"Time":"2022-12-07T09:15:35.3099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.309905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.309906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.309 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3bb13c8c-e39f-40b5-88c6-a60e29313005\"}\n"} +{"Time":"2022-12-07T09:15:35.310274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.310336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.310352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"244.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e0043d19-3858-488b-998a-bc63f797df09\"}\n"} +{"Time":"2022-12-07T09:15:35.314363+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.314368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.31437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.314 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bdc22a46-612c-43f2-85f1-ce2dd96e815e\"}\n"} +{"Time":"2022-12-07T09:15:35.314815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.314 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/organizations/e17f925f-0efc-48a4-a74f-ad33fabde2b0/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f1e861e4-dd2f-4c7f-8359-553c67258b98\"}\n"} +{"Time":"2022-12-07T09:15:35.317287+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.317295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.317298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.317 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.317301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.317 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"3c19008c-927a-4f34-932d-2521aed4c049\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:35.317345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.317 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.317358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.317 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} +{"Time":"2022-12-07T09:15:35.317497+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.317514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.31752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.317 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"54.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5f08d319-d7d1-486b-bc08-3a4f7f23161b\"}\n"} +{"Time":"2022-12-07T09:15:35.31781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.317 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"94df8e6d-3c7d-4101-83b4-1fc4868a4c04\"}\n"} +{"Time":"2022-12-07T09:15:35.318307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0389dc47-cb12-4a3a-bcfe-53aeb3c3e3c7\"}\n"} +{"Time":"2022-12-07T09:15:35.318463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"25.791µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"e4cb5815-b771-427b-ba86-93a0edebfc7f\"}\n"} +{"Time":"2022-12-07T09:15:35.318968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/organizations/e17f925f-0efc-48a4-a74f-ad33fabde2b0/templates/focused-fermat4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e6f7d74-7b78-40d3-baf7-4c8c6eee7ee8\"}\n"} +{"Time":"2022-12-07T09:15:35.319539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.319 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"254.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"43d244b5-d5c3-45f6-8a21-438681f7f5cf\"}\n"} +{"Time":"2022-12-07T09:15:35.319859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.319 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"232.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"665d4d43-5082-4a0a-8627-01c37df9ff7d\"}\n"} +{"Time":"2022-12-07T09:15:35.320309+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.320323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.320325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.320 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"259.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"246b6a11-e922-4133-b0ed-01f4d47567e4\"}\n"} +{"Time":"2022-12-07T09:15:35.320659+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.320662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.320664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.320 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"491.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8c766ab2-de41-4853-afe2-b3769ad5cd11\"}\n"} +{"Time":"2022-12-07T09:15:35.321147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.321 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd/dry-run/23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9ec9da49-72ed-4ff7-be25-aea187853c15\"}\n"} +{"Time":"2022-12-07T09:15:35.329806+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.329814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.329816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.329 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"294.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"13b6603c-2c48-4d53-8009-fe5361bf685b\"}\n"} +{"Time":"2022-12-07T09:15:35.334205+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.33423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.334233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.333 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e541c933-2af8-463b-b2cd-b0a52002f2f1\"}\n"} +{"Time":"2022-12-07T09:15:35.335997+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.336004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.336006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33387ca3-3a7a-410a-856b-36c4adbd0b06\"}\n"} +{"Time":"2022-12-07T09:15:35.337084+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.337092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.337094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.336 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1559794c-5a1b-409a-9c2f-c8b10fb2fedc\"}\n"} +{"Time":"2022-12-07T09:15:35.337096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.336 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:446\u003e\t(*agent).init\tgenerating host key\n"} +{"Time":"2022-12-07T09:15:35.34555+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.345574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.345581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.345 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"360.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0021d319-69a3-40cb-b63d-64a4533f1447\"}\n"} +{"Time":"2022-12-07T09:15:35.356716+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.356726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.356729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.356 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5d9b9290-5738-4e16-9ab0-15f0d6014760\"}\n"} +{"Time":"2022-12-07T09:15:35.361122+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.361131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.361144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.360 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"730c2d02-eb14-47d8-8837-8e1d2fbd6d9d\"}\n"} +{"Time":"2022-12-07T09:15:35.365116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.365125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.365128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:35.36513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHShowTroubleshootingURLAfterTimeout1634515371/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.365132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"size_bytes\": 150, \"path\": \"/tmp/TestSSHShowTroubleshootingURLAfterTimeout1634515371/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.365134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHShowTroubleshootingURLAfterTimeout1634515371/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.365136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"workspace_name\": \"strange-bell3\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:35.365138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.36514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.365844+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.365849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.365852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.365 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a2bfe37-7868-4193-b38d-2f563a46341c\"}\n"} +{"Time":"2022-12-07T09:15:35.371123+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.371129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.371131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.371 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49143656-3e2d-4a94-8fe4-c862690fee0a\"}\n"} +{"Time":"2022-12-07T09:15:35.379987+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.380018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.38002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.379 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"357.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f0974750-b6cf-49ef-8e79-45c7096a5e01\"}\n"} +{"Time":"2022-12-07T09:15:35.383502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.383508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.38351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.383 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cb554d46-6aa2-4380-9729-8e230820e357\"}\n"} +{"Time":"2022-12-07T09:15:35.387896+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.387905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.387907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.387 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"27d1361b-d2f4-44e9-8ebc-496a103b6277\"}\n"} +{"Time":"2022-12-07T09:15:35.396008+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.396016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.396019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.395 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"429.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"860f5a5a-ec8d-4879-8e22-7307f3dda20e\"}\n"} +{"Time":"2022-12-07T09:15:35.408868+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.408918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.408936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.408 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"791.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e4670c6f-1b37-4732-89c9-6e91e3cfbc3f\"}\n"} +{"Time":"2022-12-07T09:15:35.409669+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.409681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.409684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.409 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"791.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"633b1731-b850-4d0a-9c05-0a711470704d\"}\n"} +{"Time":"2022-12-07T09:15:35.411251+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.411285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.411288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.411 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"758.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e9105107-b798-452e-94f4-cac4aa8ab262\"}\n"} +{"Time":"2022-12-07T09:15:35.416052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.415 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.416061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.415 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.416065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.415 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.416066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.415 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.418555+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.418558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.418562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.418564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.418566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:35.418699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHImmediateExit334889163/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.418708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"size_bytes\": 112, \"path\": \"/tmp/TestSSHImmediateExit334889163/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.418713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHImmediateExit334889163/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.418715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"workspace_name\": \"dazzling-turing9\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:35.419075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.419079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.420652+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.420661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.420664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.420 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"550.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"99c7d8ec-91d5-4ff2-8320-b35e2e8818eb\"}\n"} +{"Time":"2022-12-07T09:15:35.429817+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.429825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.429827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5f2613fe-967e-451d-8603-ddcdb168d8b5\"}\n"} +{"Time":"2022-12-07T09:15:35.433401+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.433406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.433408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.433 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"65c98671-6f9a-45c7-a421-96405a902937\"}\n"} +{"Time":"2022-12-07T09:15:35.43544+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.435451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.435453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f9b6ca5e-b0e2-4022-a8fd-a4e109b10a7d\"}\n"} +{"Time":"2022-12-07T09:15:35.445341+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.445349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.445351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.445 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"15a7db34-b00e-402d-a1d7-ff42b8c531d9\"}\n"} +{"Time":"2022-12-07T09:15:35.454702+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.454709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.454711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"369.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"03ca38a8-2562-48b6-99d1-390387470d2f\"}\n"} +{"Time":"2022-12-07T09:15:35.457907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.457 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.457997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.457 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.458023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.457 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:35.458026+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.458029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.458031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"308.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6679a9c5-3c5b-477a-953a-62c9b497c725\"}\n"} +{"Time":"2022-12-07T09:15:35.458073+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.458077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.458079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.458 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"size_bytes\": 2, \"path\": \"/tmp/TestListSingle358689189/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.458081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.458 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"size_bytes\": 2, \"path\": \"/tmp/TestListSingle358689189/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.458084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.458 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"size_bytes\": 2, \"path\": \"/tmp/TestListSingle358689189/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.458103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.458 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"workspace_name\": \"laughing-wescoff1\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:35.458166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.458 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.458196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.458 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.460575+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.460579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.460581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5bf8a4c8-21b3-4865-b869-f91b93a69778\"}\n"} +{"Time":"2022-12-07T09:15:35.466104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.466 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.466172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.466 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.466209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.466 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"resource_count\": 1, \"resources\": [{\"name\": \"dev\", \"type\": \"google_compute_instance\", \"agents\": [{\"id\": \"f3c4cd43-c871-49a3-a95e-68f61179e6ba\", \"Auth\": {\"Token\": \"bd3dfff2-8789-4393-844d-fac34d18d55b\"}, \"connection_timeout_seconds\": 1, \"troubleshooting_url\": \"https://example.com/troubleshoot\"}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.468859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.468863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.468865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.468 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.46887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.468 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.468915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.468 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.468918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.468 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.47022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.470229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.470231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.470 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"187325f4-2094-459b-87cf-481bdddea12b\"}\n"} +{"Time":"2022-12-07T09:15:35.479073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.479173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.479176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:35.479212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHStdio3967758857/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.479253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"size_bytes\": 112, \"path\": \"/tmp/TestSSHStdio3967758857/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.479256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHStdio3967758857/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.47927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"workspace_name\": \"jolly-margulis0\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:35.479322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.479326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.479684+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.479687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.479689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"47b96074-4fc1-43de-b2dd-428a46e0a720\"}\n"} +{"Time":"2022-12-07T09:15:35.483067+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.483076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.483079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.483 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ffc80016-63ba-440f-96e3-d658a335f15b\"}\n"} +{"Time":"2022-12-07T09:15:35.486896+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.486906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.486909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.486 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0b05fe0f-7b74-4e10-a570-973feceda029\"}\n"} +{"Time":"2022-12-07T09:15:35.497109+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.497118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.497121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.497 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"317.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"412b4e11-b24f-462a-91b1-6b3895c52a43\"}\n"} +{"Time":"2022-12-07T09:15:35.505057+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.505072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.505075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.504 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"581.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"752fab40-58bb-4b68-b734-af765da7dbef\"}\n"} +{"Time":"2022-12-07T09:15:35.50813+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.508136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.508139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.508 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"184ad52a-fd44-4272-9e4e-51f51dabf2e8\"}\n"} +{"Time":"2022-12-07T09:15:35.508481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.508486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.508488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.508 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.508541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.508 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.508593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.508 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.508655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.508 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.508726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.508 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/coderd.go:699\u003e\t(*API).CreateInMemoryProvisionerDaemon.func2\tdrpc server error ...\n"} +{"Time":"2022-12-07T09:15:35.50873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" \"error\": connection closed\n"} +{"Time":"2022-12-07T09:15:35.508731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" \tstorj.io/drpc/drpcstream.(*Stream).sendPacket:268\n"} +{"Time":"2022-12-07T09:15:35.508733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" \tstorj.io/drpc/drpcstream.(*Stream).CloseSend:501\n"} +{"Time":"2022-12-07T09:15:35.508735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" \tstorj.io/drpc/drpcserver.(*Server).handleRPC:126\n"} +{"Time":"2022-12-07T09:15:35.508736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" \tstorj.io/drpc/drpcserver.(*Server).ServeOne:66\n"} +{"Time":"2022-12-07T09:15:35.508737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" \tstorj.io/drpc/drpcserver.(*Server).Serve.func2:112\n"} +{"Time":"2022-12-07T09:15:35.508739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" \tstorj.io/drpc/drpcctx.(*Tracker).track:52\n"} +{"Time":"2022-12-07T09:15:35.510557+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.510563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.510639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"481µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"22c036a8-a208-4224-be99-34b642b85aaf\"}\n"} +{"Time":"2022-12-07T09:15:35.517015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.516 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.517305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.517 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.517309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.517 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.517312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.517 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.517338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.517 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.519019+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.519024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.519026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.518 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.519207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.519 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.519297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.519 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"resource_count\": 1, \"resources\": [{\"name\": \"dev\", \"type\": \"google_compute_instance\", \"agents\": [{\"id\": \"6304cceb-ac32-4ea5-bf1c-f8c86a4f9977\", \"Auth\": {\"Token\": \"160b7a1a-3bcd-44a9-9823-02294f9c5d97\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.5205+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.520504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.520507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.520 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"367.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"489e8117-2baf-42a2-964a-7fdea3cb5901\"}\n"} +{"Time":"2022-12-07T09:15:35.529422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.529 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.529431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.529 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.529447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.529 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.529463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.529 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.530367+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.53037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.530372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.530 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"461.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c41cf3d6-114f-471f-a528-7a5e976d04ae\"}\n"} +{"Time":"2022-12-07T09:15:35.53365+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.533657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.53366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.533 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"df1eaef8-4b88-4ef4-b071-df4e75e75b18\"}\n"} +{"Time":"2022-12-07T09:15:35.535778+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.535789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.535792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0fb2fd6a-2cb7-4636-adb3-f55b5f75cbda\"}\n"} +{"Time":"2022-12-07T09:15:35.536692+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.536708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.53671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ssh_test.go:272: 2022-12-07 08:15:35.536: cmd: stdin: \"env\\r\"\n"} +{"Time":"2022-12-07T09:15:35.536968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:35.536: cmd: stdout: \"env\"\n"} +{"Time":"2022-12-07T09:15:35.537626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"db3ad9a6-b727-4247-8b55-16435eff7c69\"}\n"} +{"Time":"2022-12-07T09:15:35.537773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c2ec9b73-9337-4676-b437-724b7849fcb4\"}\n"} +{"Time":"2022-12-07T09:15:35.538332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/users/me/workspace/crazy-dubinsky1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"409.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fb447268-4ce5-4482-9d8c-2f9258e81ce5\"}\n"} +{"Time":"2022-12-07T09:15:35.538895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/3a36b48a-7949-4a41-850d-2539afa4849c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"316.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b768a0d-d30d-4b72-b0c7-acc1c1257ce0\"}\n"} +{"Time":"2022-12-07T09:15:35.545193+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.545202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.545204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.545 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"289.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c7d9975d-8684-4e60-bd87-8efca29d8153\"}\n"} +{"Time":"2022-12-07T09:15:35.55471+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.554718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.554721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.554 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a3c0e5c-6f91-4aa2-8460-aa19924389eb\"}\n"} +{"Time":"2022-12-07T09:15:35.558414+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.558429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.558432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.558 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"619.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ccbb097b-fa7e-439c-8311-f62bab3e259f\"}\n"} +{"Time":"2022-12-07T09:15:35.558893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.558897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.558901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.558 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.558971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.558 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.558 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.561869+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.561874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.561877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.561 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"301µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1f6e046b-a3c0-4465-abbe-c2aaef1094b2\"}\n"} +{"Time":"2022-12-07T09:15:35.567469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.567 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.567475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.567 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.567577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.567 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.56759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.567 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.567634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.567 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.569437+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.569454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.56949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.569 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.569523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.569 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.569577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.569 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.569622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.569 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.569687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.569 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.570644+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.570648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.57065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.570 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"715.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1ba3957-8de8-4e9e-bd43-fb3733a56878\"}\n"} +{"Time":"2022-12-07T09:15:35.579731+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.57974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.579742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.579 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2dbc5e5d-6b60-4278-ac27-a325095dcc51\"}\n"} +{"Time":"2022-12-07T09:15:35.579769+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.579772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.579774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.579 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.57989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.579 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.579894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.579 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"resource_count\": 1, \"resources\": [{\"name\": \"dev\", \"type\": \"google_compute_instance\", \"agents\": [{\"id\": \"966f7ae5-2220-42b9-bbd8-c963534dd88b\", \"Auth\": {\"Token\": \"7945ca92-46da-4419-b426-28a6f717778a\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.583263+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.583268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.58327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.583 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"74683bf0-d5f7-4c32-896c-dbf56ad26ec4\"}\n"} +{"Time":"2022-12-07T09:15:35.585355+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.585358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.585373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f1863064-3336-4a0d-8aa9-ec094c192aca\"}\n"} +{"Time":"2022-12-07T09:15:35.595481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.595489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.595509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.595 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"efd2cc3e-877b-4618-a50f-f63b9551b63f\"}\n"} +{"Time":"2022-12-07T09:15:35.605828+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.605836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.605838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.605 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b171ede8-009f-426c-bece-53d924363442\"}\n"} +{"Time":"2022-12-07T09:15:35.608177+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.608184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.608187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.607 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fefa4ab3-bffa-43fd-b0eb-99dae36b9e6e\"}\n"} +{"Time":"2022-12-07T09:15:35.611891+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.611898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.6119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.611 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.611902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.611 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.611923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.611 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.611927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.611 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.61193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.611 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.612279+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.612282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.612289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.612 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"617.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fb8a2381-b15c-40b8-acdb-d3a1ae149fc7\"}\n"} +{"Time":"2022-12-07T09:15:35.61871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.618 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.618742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.618 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"timeout\": \"1s\"}\n"} +{"Time":"2022-12-07T09:15:35.618802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.618 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.618806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.618 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} +{"Time":"2022-12-07T09:15:35.620003+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.620008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.620074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.619 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.620081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.620 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.620201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.620 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.620207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.620 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.620342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.620 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.620517+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.620544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.620552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.620 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"493.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"948e3852-795f-4b27-a2ef-3c2e3d48ef6d\"}\n"} +{"Time":"2022-12-07T09:15:35.629934+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.629947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.629949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.629 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e6cbc0f-1b59-4a7e-beef-10505d684057\"}\n"} +{"Time":"2022-12-07T09:15:35.63006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.630069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.630072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.629 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.630075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.630 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.630078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.630 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.630081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.630 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.630144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.633245+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.633252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.633255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.633 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"38973513-66b8-405d-931e-c436e8f2fdb3\"}\n"} +{"Time":"2022-12-07T09:15:35.635977+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:35.635984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:35.635986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf255a72-4173-4db8-b395-948cca98f194\"}\n"} +{"Time":"2022-12-07T09:15:35.638046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.333µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"c202b0f3-5280-48e1-a5e9-7a30bc0e1939\"}\n"} +{"Time":"2022-12-07T09:15:35.63819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.638 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"80c3c27f-be16-4e28-8566-d23fe51d0b20\"}\n"} +{"Time":"2022-12-07T09:15:35.638738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.638 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/users/me/workspace/strange-bell3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6ec8bbcf-08b9-4014-8ef8-d9ad314f7602\"}\n"} +{"Time":"2022-12-07T09:15:35.639263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.639 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspaceagents/c8964c20-a766-4e53-84d9-e29118746bd0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9df2dce3-638a-4894-aa7c-be37545a2c78\"}\n"} +{"Time":"2022-12-07T09:15:35.645745+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.645753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.645755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.645 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bb4f5f3a-0bfc-4ba6-8a80-1fd891317af3\"}\n"} +{"Time":"2022-12-07T09:15:35.655835+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.655848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.65585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.655 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1afdf3bb-ca96-49ff-8455-e5e385573019\"}\n"} +{"Time":"2022-12-07T09:15:35.659128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.659138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.65914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.658 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"66c7bdb0-eb38-465b-9fa7-12d80a2fbe58\"}\n"} +{"Time":"2022-12-07T09:15:35.66194+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.661945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.661947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.661 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.661949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.661 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.661951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.661 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.661953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.661 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.661954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.661 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.67044+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.670464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.670471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.670 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"016bbad7-5335-4b38-afa7-a611d33bd0a5\"}\n"} +{"Time":"2022-12-07T09:15:35.670999+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.671012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.671015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.670 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.671017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.670 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:35.67102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.670 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.671022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.670 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} +{"Time":"2022-12-07T09:15:35.680883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.680893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.680895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} +{"Time":"2022-12-07T09:15:35.680898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} +{"Time":"2022-12-07T09:15:35.680901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:35.680926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.680943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.680996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.681011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"workspace_name\": \"my-workspace\", \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:35.681024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.681039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} +{"Time":"2022-12-07T09:15:35.681258+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.68128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.681293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.681 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c458d4b-5246-428b-af24-3daba2520904\"}\n"} +{"Time":"2022-12-07T09:15:35.68138+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.681384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.681387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.681 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.681389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.681 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.681403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.681 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.681419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.681 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.681424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.681 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.683481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.683487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.683489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.683 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a475b5e0-0e62-4a3d-8f99-956b1dc59866\"}\n"} +{"Time":"2022-12-07T09:15:35.686486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.686 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"21.958µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"b94baf6a-51d1-472f-94e1-f666d6d770a3\"}\n"} +{"Time":"2022-12-07T09:15:35.686956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.686 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0ae84f86-2164-4a13-aa09-68f5112990d8\"}\n"} +{"Time":"2022-12-07T09:15:35.687224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.687 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/users/me/workspace/dazzling-turing9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d5a98724-78f8-4fd7-a91b-22e0ab0ed25e\"}\n"} +{"Time":"2022-12-07T09:15:35.687719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.687 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/ef5b0161-dec3-4904-9935-88d7045740b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c15b7450-d559-4346-8836-07dea90d6c30\"}\n"} +{"Time":"2022-12-07T09:15:35.688161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ssh_test.go:92: 2022-12-07 08:15:35.688: cmd: matched \"Waiting\" = \"\\x1b[?25l\\r\\x1b[K\\r⠈⠁ Waiting\"\n"} +{"Time":"2022-12-07T09:15:35.688167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.688 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:446\u003e\t(*agent).init\tgenerating host key\n"} +{"Time":"2022-12-07T09:15:35.695609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.695617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.69562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.695 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"459.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eefa210e-849b-463f-8854-fb3b59dc5452\"}\n"} +{"Time":"2022-12-07T09:15:35.705552+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.70556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.705562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.704 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"404.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7a116ae8-e2ec-4551-8366-af313f08ece7\"}\n"} +{"Time":"2022-12-07T09:15:35.712224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.712 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.712473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.712 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.712476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.712 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} +{"Time":"2022-12-07T09:15:35.721675+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.721687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.72169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.721 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"331µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2454593e-1a56-4167-aeb5-35f21e92d843\"}\n"} +{"Time":"2022-12-07T09:15:35.730458+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.730477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.73048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.729 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} +{"Time":"2022-12-07T09:15:35.7305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.729 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.730505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.729 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.730507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.729 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} +{"Time":"2022-12-07T09:15:35.730509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.729 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} +{"Time":"2022-12-07T09:15:35.730511+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.730513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.730514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.729 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"448µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cf65cc41-5818-4678-a235-bea95af56510\"}\n"} +{"Time":"2022-12-07T09:15:35.730531+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.730532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.730534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:35.730536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.730538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.73054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ssh_test.go:105: 2022-12-07 08:15:35.730: cmd: stdin: \"exit\\r\"\n"} +{"Time":"2022-12-07T09:15:35.730541+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.730542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.730544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:35.730546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"request_id\": \"ceecb5c8-0e76-4492-bb11-b7755a6a8294\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:35.730547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.730 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} +{"Time":"2022-12-07T09:15:35.730549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"request_id\": \"ceecb5c8-0e76-4492-bb11-b7755a6a8294\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:35.730553+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.730554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.730555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ptytest.go:103: 2022-12-07 08:15:35.730: cmd: stdout: \"\\x1b[?25l\\r\\x1b[K\\r⠈⠁ Waiting for connection from \\x1b[;m\\x1b[0m ...exit\"\n"} +{"Time":"2022-12-07T09:15:35.731818+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.73185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.731859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.731 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.731862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.731 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"36f6b7c8-820a-43d5-862a-e1584852940a\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:35.731865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.731 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.731867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.731 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} +{"Time":"2022-12-07T09:15:35.735808+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.735818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.73583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"38.708µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"6472077d-cda2-4a71-840a-f7d1a6abf3cc\"}\n"} +{"Time":"2022-12-07T09:15:35.735834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31d6c8bf-c305-4eed-a799-a450b355f2dc\"}\n"} +{"Time":"2022-12-07T09:15:35.737356+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.737361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.737363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"67.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b3118fec-1531-40e4-9d6a-272a9f34b036\"}\n"} +{"Time":"2022-12-07T09:15:35.737658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.737 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:138\u003e\t(*agent).runLoop\trunning loop\n"} +{"Time":"2022-12-07T09:15:35.73814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.737 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"90b80d47-1d88-4869-ac22-86b31793d54d\", \"agent_id\": \"3a36b48a-7949-4a41-850d-2539afa4849c\", \"agent_version\": \"v0.0.0-devel\"}\n"} +{"Time":"2022-12-07T09:15:35.738149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.737 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"134.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90b80d47-1d88-4869-ac22-86b31793d54d\"}\n"} +{"Time":"2022-12-07T09:15:35.738224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.738 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"48484dca-c331-4441-af86-c6538dfc621e\"}\n"} +{"Time":"2022-12-07T09:15:35.738408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.738 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:177\u003e\t(*agent).run\tfetched metadata\n"} +{"Time":"2022-12-07T09:15:35.74035+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} +{"Time":"2022-12-07T09:15:35.740354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} +{"Time":"2022-12-07T09:15:35.740356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.740 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"6.546334ms\", \"status_code\": 200, \"latency_ms\": 6, \"request_id\": \"bdcff9e0-39d0-4bd7-a426-b02dfeec0303\"}\n"} +{"Time":"2022-12-07T09:15:35.740757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.740 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b9d380c0-8ee2-44ec-9b38-34f3c3c52d77\"}\n"} +{"Time":"2022-12-07T09:15:35.740994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" ptytest.go:103: 2022-12-07 08:15:35.740: cmd: stdout: \"WORKSPACE TEMPLATE STATUS LAST BUILT OUTDATED STARTS AT STOPS AFTER \"\n"} +{"Time":"2022-12-07T09:15:35.740997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" ptytest.go:103: 2022-12-07 08:15:35.740: cmd: stdout: \"testuser/laughing-wescoff1 eloquent-goodall9 Started 0s false 9:30AM Mon-Fri (US/Central) 8h \"\n"} +{"Time":"2022-12-07T09:15:35.741154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" list_test.go:40: 2022-12-07 08:15:35.741: cmd: matched \"laughing-wescoff1\" = \"WORKSPACE TEMPLATE STATUS LAST BUILT OUTDATED STARTS AT STOPS AFTER \\r\\ntestuser/laughing-wescoff1\"\n"} +{"Time":"2022-12-07T09:15:35.741157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" list_test.go:41: 2022-12-07 08:15:35.741: cmd: matched \"Started\" = \" eloquent-goodall9 Started\"\n"} +{"Time":"2022-12-07T09:15:35.74116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" list_test.go:45: XYZ\n"} +{"Time":"2022-12-07T09:15:35.741162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" ptytest.go:80: 2022-12-07 08:15:35.741: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:35.741275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.741 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:35.741877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:35.741932+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:35.741936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:35.742282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:35.742293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:35.742295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.741 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:402\u003e\t(*agent).runCoordinator\tconnected to coordination server\n"} +{"Time":"2022-12-07T09:15:35.742299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.741 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"deab664b-c2df-48e1-bb69-5d50acea7f3c\", \"agent\": {\"id\": \"3a36b48a-7949-4a41-850d-2539afa4849c\", \"created_at\": \"2022-12-07T08:15:35.317262Z\", \"updated_at\": \"2022-12-07T08:15:35.317262Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"e6ec6ccd-0e7a-42e4-90a7-44b77d413965\", \"auth_token\": \"cdb52084-4c8d-4864-bcb3-b512f41cfb50\", \"auth_instance_id\": {\"String\": \"\", \"Valid\": false}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"directory\": \"\","} +{"Time":"2022-12-07T09:15:35.742317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} +{"Time":"2022-12-07T09:15:35.743012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList","Output":"--- FAIL: TestList (0.00s)\n"} +{"Time":"2022-12-07T09:15:35.74302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" --- FAIL: TestList/Single (1.05s)\n"} +{"Time":"2022-12-07T09:15:35.746329+01:00","Action":"fail","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Elapsed":1.05} +{"Time":"2022-12-07T09:15:35.746389+01:00","Action":"fail","Package":"github.com/coder/coder/cli","Test":"TestList","Elapsed":0} +{"Time":"2022-12-07T09:15:35.746401+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:35.746403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:35.746406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.745 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"104.166µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c6523619-9d98-408d-92a4-210dcb176d3b\"}\n"} +{"Time":"2022-12-07T09:15:35.746409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.745 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"62.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"280319a8-4774-4d23-b883-547890863690\"}\n"} +{"Time":"2022-12-07T09:15:35.746839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.746 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/users/me/gitsshkey\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"768.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f85f5910-472f-44f8-b565-7ea683d2055a\"}\n"} +{"Time":"2022-12-07T09:15:35.747336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.747 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bb4ff07a-bc1d-4dcc-ba23-8a0bb8127f4e\"}\n"} +{"Time":"2022-12-07T09:15:35.748639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.747 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/organizations/a90498bf-85c7-4a1c-ab53-1b3aaa15ab18/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"654.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"24d7b0fb-a71d-4d8b-a8dd-0f9c7fd570e7\"}\n"} +{"Time":"2022-12-07T09:15:35.748653+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.748655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.74866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.748 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"372.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"186119a3-a042-4fa0-aa30-b985a4ad34df\"}\n"} +{"Time":"2022-12-07T09:15:35.749308+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:35.749312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:35.749314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/organizations/a90498bf-85c7-4a1c-ab53-1b3aaa15ab18/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"107029ca-779c-497a-9fca-6eace72c1e8c\"}\n"} +{"Time":"2022-12-07T09:15:35.749317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" gitssh_test.go:145: waiting for template version job a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\n"} +{"Time":"2022-12-07T09:15:35.749851+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:35.749855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:35.749856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.749 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:446\u003e\t(*agent).init\tgenerating host key\n"} +{"Time":"2022-12-07T09:15:35.750547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.750 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.792µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"ab85a0bf-99fe-49a1-9a83-a370efe4e957\"}\n"} +{"Time":"2022-12-07T09:15:35.750553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.750 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f9abacc2-21d0-4d0f-833b-e18dd185dc4d\"}\n"} +{"Time":"2022-12-07T09:15:35.750993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.750 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/users/me/workspace/jolly-margulis0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd261a96-c63a-49d1-b515-97fb48d477e8\"}\n"} +{"Time":"2022-12-07T09:15:35.751734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.751 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/2e131bf7-5057-4975-a9e9-0e5094cdea2b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"260.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"32be0a29-3322-4868-a881-1fd66eb8aa20\"}\n"} +{"Time":"2022-12-07T09:15:35.775908+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:35.775936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:35.775939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.775 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"634.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06f6878d-cdff-48cc-8e3f-8b954dd1a976\"}\n"} +{"Time":"2022-12-07T09:15:35.781219+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:35.781228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:35.781231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.780 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} +{"Time":"2022-12-07T09:15:35.781247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.780 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} +{"Time":"2022-12-07T09:15:35.781249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.780 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} +{"Time":"2022-12-07T09:15:35.781251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.780 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} +{"Time":"2022-12-07T09:15:35.781253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.781 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} +{"Time":"2022-12-07T09:15:35.781255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.781 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} +{"Time":"2022-12-07T09:15:35.781257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.781 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac/dry-run/41ca93bb-8556-4be9-9736-559b3433a2b7/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"475.384417ms\", \"status_code\": 101, \"latency_ms\": 475, \"request_id\": \"ceecb5c8-0e76-4492-bb11-b7755a6a8294\"}\n"} +{"Time":"2022-12-07T09:15:35.784045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac/dry-run/41ca93bb-8556-4be9-9736-559b3433a2b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"603.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"43a0bd17-ecf2-4960-a968-15c51caff123\"}\n"} +{"Time":"2022-12-07T09:15:35.785335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.784 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac/dry-run/41ca93bb-8556-4be9-9736-559b3433a2b7/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"623.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f3c83cf8-01df-41de-93a9-dbf34cf84f0b\"}\n"} +{"Time":"2022-12-07T09:15:35.785341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/organizations/304f437c-b063-4fa0-ba34-4b1bf46b4a03/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"496.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"04d373e9-a282-4d2f-b4fc-e42a38b90389\"}\n"} +{"Time":"2022-12-07T09:15:35.785793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/workspacebuilds/d178c665-892b-42b2-a34b-05cd06833711\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"270.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"def450e1-abaf-4ef1-bda5-1ee69e164daa\"}\n"} +{"Time":"2022-12-07T09:15:35.799966+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:35.799998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:35.800005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.799 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"436.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5c0087f7-9058-4c90-a63f-58cfb0c2a3e9\"}\n"} +{"Time":"2022-12-07T09:15:35.823574+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.823596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.823602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} +{"Time":"2022-12-07T09:15:35.823605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} +{"Time":"2022-12-07T09:15:35.823607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:35.823609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.823611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.823619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.823621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"workspace_name\": \"my-workspace\", \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:35.823623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.823625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} +{"Time":"2022-12-07T09:15:35.825056+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:35.825063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:35.825065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.824 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"18822767-c3e1-4119-ae46-ae74bb302812\"}\n"} +{"Time":"2022-12-07T09:15:35.844726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.843 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:35.849858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.849 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"406.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ca89d8e0-f18b-440e-91b7-64c6fc75056a\"}\n"} +{"Time":"2022-12-07T09:15:35.875685+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.875698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.875701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} +{"Time":"2022-12-07T09:15:35.875703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.875705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.875708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} +{"Time":"2022-12-07T09:15:35.875709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} +{"Time":"2022-12-07T09:15:35.875711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:35.875727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:35.875729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"request_id\": \"75999e9d-0248-4608-8403-1dcaf8f518a1\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:35.875731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"request_id\": \"75999e9d-0248-4608-8403-1dcaf8f518a1\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:35.875734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} +{"Time":"2022-12-07T09:15:35.875738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:35.87574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:35.875742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"411.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f4982a0e-b18e-4dc7-a541-b6231205dd0a\"}\n"} +{"Time":"2022-12-07T09:15:35.894408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:35.894446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:35.894513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:35.894527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHDial3930534173/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.894545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"size_bytes\": 68, \"path\": \"/tmp/TestGitSSHDial3930534173/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.894559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHDial3930534173/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:35.894576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:35.894708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:35.900872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.900 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"469.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0175ebaf-bb99-4507-af52-3f2f454f3a47\"}\n"} +{"Time":"2022-12-07T09:15:35.92538+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.925396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.925399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.924 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} +{"Time":"2022-12-07T09:15:35.925412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.924 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} +{"Time":"2022-12-07T09:15:35.925414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.924 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} +{"Time":"2022-12-07T09:15:35.925416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.925 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} +{"Time":"2022-12-07T09:15:35.925418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.925 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} +{"Time":"2022-12-07T09:15:35.92542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.925 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} +{"Time":"2022-12-07T09:15:35.926427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.925 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd/dry-run/23a4edec-7b50-4e15-a89f-a634b50ed31b/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"603.532791ms\", \"status_code\": 101, \"latency_ms\": 603, \"request_id\": \"75999e9d-0248-4608-8403-1dcaf8f518a1\"}\n"} +{"Time":"2022-12-07T09:15:35.92882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:35.928832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:35.928835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.927 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.65325ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f2d0e691-c3b6-4554-9582-946ba9d2070c\"}\n"} +{"Time":"2022-12-07T09:15:35.928839+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.92884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.928842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd/dry-run/23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"907.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bb40e4e9-683d-4a49-8e8d-2c8c7426add7\"}\n"} +{"Time":"2022-12-07T09:15:35.930276+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.930287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.93029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.930 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:138\u003e\t(*agent).runLoop\trunning loop\n"} +{"Time":"2022-12-07T09:15:35.930519+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.930526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.930529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.930 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd/dry-run/23a4edec-7b50-4e15-a89f-a634b50ed31b/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.108916ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1f2341bb-66be-40d5-b421-0fbf6fabce28\"}\n"} +{"Time":"2022-12-07T09:15:35.932652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/organizations/e17f925f-0efc-48a4-a74f-ad33fabde2b0/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"755.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e7ac99f3-4edb-49c3-9136-71407939698f\"}\n"} +{"Time":"2022-12-07T09:15:35.932658+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.93266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.932662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"143µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e346b55c-e87f-453f-b095-e46aef732976\"}\n"} +{"Time":"2022-12-07T09:15:35.932664+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:35.932665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:35.932677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/workspacebuilds/fd821e5d-4487-4b33-a927-bcb046ba5675\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"445.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f16c2f18-13e4-4ae8-b227-a633627fecca\"}\n"} +{"Time":"2022-12-07T09:15:35.932679+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:35.93268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:35.932682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.932 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"58c95cc0-456f-4a32-ac53-618379b29192\", \"agent_id\": \"ef5b0161-dec3-4904-9935-88d7045740b8\", \"agent_version\": \"v0.0.0-devel\"}\n"} +{"Time":"2022-12-07T09:15:35.932684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"187.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58c95cc0-456f-4a32-ac53-618379b29192\"}\n"} +{"Time":"2022-12-07T09:15:35.933284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"63.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"047b226d-9d6e-4a9f-bfa8-c83349924668\"}\n"} +{"Time":"2022-12-07T09:15:35.933289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.932 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:177\u003e\t(*agent).run\tfetched metadata\n"} +{"Time":"2022-12-07T09:15:35.936089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.935 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:402\u003e\t(*agent).runCoordinator\tconnected to coordination server\n"} +{"Time":"2022-12-07T09:15:35.9361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.935 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"10eeb44f-1472-4d31-bea7-ca6d4eaff18c\", \"agent\": {\"id\": \"ef5b0161-dec3-4904-9935-88d7045740b8\", \"created_at\": \"2022-12-07T08:15:35.67091Z\", \"updated_at\": \"2022-12-07T08:15:35.67091Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"ec09df4f-16f1-4b58-982a-06ff1d8b3018\", \"auth_token\": \"160b7a1a-3bcd-44a9-9823-02294f9c5d97\", \"auth_instance_id\": {\"String\": \"\", \"Valid\": false}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"directory\": \"\", \""} +{"Time":"2022-12-07T09:15:35.936108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} +{"Time":"2022-12-07T09:15:35.945745+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:35.945754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:35.945756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.945 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:35.94576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.945 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.94725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.946 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"14.75µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:35.950128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.949 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"501.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"98253f74-dede-460d-b2bf-a1c896bb9621\"}\n"} +{"Time":"2022-12-07T09:15:35.975341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.975 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"507.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96ca2c69-77e7-4724-b0aa-cdf7939e8e90\"}\n"} +{"Time":"2022-12-07T09:15:35.995735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:35.995753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.995816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.995828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.995831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:35.995835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:35.995858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:35.996061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:35.996067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.996 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:36.001791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.001 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"514.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ba7a0945-b3cb-4f34-9b00-2b36189ffac9\"}\n"} +{"Time":"2022-12-07T09:15:36.027647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.026 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"438.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8bed3665-9e68-494d-b99a-876688e59572\"}\n"} +{"Time":"2022-12-07T09:15:36.042094+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:36.042106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:36.042119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:36.040 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/3a36b48a-7949-4a41-850d-2539afa4849c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"656.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61917702-9703-474c-9ae8-f89e47c2851e\"}\n"} +{"Time":"2022-12-07T09:15:36.042122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:36.041 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/3a36b48a-7949-4a41-850d-2539afa4849c/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"309.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9bcf76ab-e702-4a43-b9e7-1885a71558cf\"}\n"} +{"Time":"2022-12-07T09:15:36.047931+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.047938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.04794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.047 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:36.047942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.047 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.047944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.047 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.047946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.047 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:36.047949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.047 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:36.048055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.047 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:36.050466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.050 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20baad82-be0f-4760-b902-21ba64361f83\"}\n"} +{"Time":"2022-12-07T09:15:36.07519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.075 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c69d7d5-7d67-4072-ace5-f7c9e238ead9\"}\n"} +{"Time":"2022-12-07T09:15:36.098248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.098 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:36.098267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.098 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:36.098284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.098 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:36.098286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.098 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} +{"Time":"2022-12-07T09:15:36.100078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"644µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4cb1c67b-e6d1-4718-bcdf-46c4fcb5d2a1\"}\n"} +{"Time":"2022-12-07T09:15:36.100902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/organizations/a90498bf-85c7-4a1c-ab53-1b3aaa15ab18/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"633.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3e372899-ff7d-4bd9-afe9-d7c8168cc559\"}\n"} +{"Time":"2022-12-07T09:15:36.101022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" gitssh_test.go:145: waiting for workspace build job 9e06827e-ec34-4c85-810b-7c6a2f3eab0a\n"} +{"Time":"2022-12-07T09:15:36.126837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.126 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"416.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"654d1648-1105-4313-844e-36991ee06591\"}\n"} +{"Time":"2022-12-07T09:15:36.142368+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:36.142381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:36.142384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:36.141 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspaceagents/c8964c20-a766-4e53-84d9-e29118746bd0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"609.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"924b9692-e180-40fd-83ab-f8179cc4db0b\"}\n"} +{"Time":"2022-12-07T09:15:36.151619+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.15163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.151633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"81c05bbb-63be-4181-bf7d-546bd5bd3d64\"}\n"} +{"Time":"2022-12-07T09:15:36.17677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.176 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"526.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d417788c-f9f0-48ee-baf0-1297fba5a8f3\"}\n"} +{"Time":"2022-12-07T09:15:36.18055+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:36.180557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:36.18056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.180 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:138\u003e\t(*agent).runLoop\trunning loop\n"} +{"Time":"2022-12-07T09:15:36.180563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.180 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"71.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ff36b238-25e6-4c23-93b1-65ecef67799f\"}\n"} +{"Time":"2022-12-07T09:15:36.180899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.180 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"beba7b71-31a6-40a6-8997-940eef2ab729\", \"agent_id\": \"2e131bf7-5057-4975-a9e9-0e5094cdea2b\", \"agent_version\": \"v0.0.0-devel\"}\n"} +{"Time":"2022-12-07T09:15:36.181638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.180 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"127.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"beba7b71-31a6-40a6-8997-940eef2ab729\"}\n"} +{"Time":"2022-12-07T09:15:36.181644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.181 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"39.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a889e93-bec8-4c3e-b12e-e570549b0c86\"}\n"} +{"Time":"2022-12-07T09:15:36.181646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.181 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:177\u003e\t(*agent).run\tfetched metadata\n"} +{"Time":"2022-12-07T09:15:36.184334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.183 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"33467957-2d55-402d-b749-0e3f38a78dcc\", \"agent\": {\"id\": \"2e131bf7-5057-4975-a9e9-0e5094cdea2b\", \"created_at\": \"2022-12-07T08:15:35.731562Z\", \"updated_at\": \"2022-12-07T08:15:35.731562Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"9446c899-dc0d-4469-80cf-7bf7617cd257\", \"auth_token\": \"7945ca92-46da-4419-b426-28a6f717778a\", \"auth_instance_id\": {\"String\": \"\", \"Valid\": false}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"directory\": \"\","} +{"Time":"2022-12-07T09:15:36.184359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} +{"Time":"2022-12-07T09:15:36.184362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.184 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:402\u003e\t(*agent).runCoordinator\tconnected to coordination server\n"} +{"Time":"2022-12-07T09:15:36.189615+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:36.189639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:36.189646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:36.189 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/ef5b0161-dec3-4904-9935-88d7045740b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.430708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c41a8842-e12c-4398-b5a7-a90d01031020\"}\n"} +{"Time":"2022-12-07T09:15:36.190285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:36.190 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/ef5b0161-dec3-4904-9935-88d7045740b8/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ddcf63e0-0266-4eb4-92a5-21b4d2ce066f\"}\n"} +{"Time":"2022-12-07T09:15:36.203658+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.203673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.203676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.202 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"691.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3f7ed9f8-5d56-414b-8237-66a43b69ae72\"}\n"} +{"Time":"2022-12-07T09:15:36.20446+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:36.204465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:36.204468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:36.204 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaces/0c4b81a9-bef5-43f8-9b8d-03be096cd461\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"615.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a5eb89ee-d256-4242-906a-0685cc479fb7\"}\n"} +{"Time":"2022-12-07T09:15:36.223593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:36.223: cmd: stdout: \"\\x1b[?25l\\r\\x1b[K\\r⠈⠁ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠑ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢀⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\x1b[?25h\\r\\x1b[Kenv\\r\"\n"} +{"Time":"2022-12-07T09:15:36.227021+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.227028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.227031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.226 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"510.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d19c8413-c95d-4322-a228-8df62dd66b5a\"}\n"} +{"Time":"2022-12-07T09:15:36.252042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.251 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"478.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"245ef0cb-54e1-47b9-a93e-d8532ea1002e\"}\n"} +{"Time":"2022-12-07T09:15:36.252733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:36.252738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:36.252741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.252 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/2e131bf7-5057-4975-a9e9-0e5094cdea2b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"610.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"973fee75-d02c-4b46-af88-303c1bcbc60f\"}\n"} +{"Time":"2022-12-07T09:15:36.253198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.252 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/2e131bf7-5057-4975-a9e9-0e5094cdea2b/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"915772a3-eb3e-4080-a98a-9bd785780f2f\"}\n"} +{"Time":"2022-12-07T09:15:36.277974+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.277991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.277994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.277 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"511.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d5360b6-93cf-4a2a-ba09-56bc023d38f5\"}\n"} +{"Time":"2022-12-07T09:15:36.292233+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.29225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.292253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.291 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.292256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.291 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.292258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.292 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:36.29226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.292262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.293864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.293874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:36.293877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.293879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.292 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:36.298572+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:36.298588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:36.298592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:36.297 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaces/3c95a540-2091-4e8f-bb42-354ab74a2947\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"442.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e8e33eba-2b03-4943-bfda-dab853c39345\"}\n"} +{"Time":"2022-12-07T09:15:36.304297+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.304312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.304315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.303 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.501583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"15b5064a-6d06-44d3-b12f-088ac75753df\"}\n"} +{"Time":"2022-12-07T09:15:36.323498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:36.323516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:36.32352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ptytest.go:103: 2022-12-07 08:15:36.323: cmd: stdout: \"\\r\\x1b[K\\r⠈⠑ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢀⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢄⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\x1b[?25h\\r\\x1b[Kexit\\r\"\n"} +{"Time":"2022-12-07T09:15:36.327501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.327525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.32753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.326 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"533.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a4c40066-957b-4c1a-901c-a0fd363e0da1\"}\n"} +{"Time":"2022-12-07T09:15:36.343446+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.343536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.343543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.342 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.343546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.343 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.343548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.343 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.34355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.343 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.343552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.343 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:36.343554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.343 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"request_id\": \"39c54225-7df0-428b-ad05-774c9ea8c673\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:36.353439+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.353456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.353459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.352 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"498.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"81edfe9a-fad2-47b0-aeaf-6410117af9ae\"}\n"} +{"Time":"2022-12-07T09:15:36.376902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.376 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06241b67-cb6c-4108-b5c8-518877d3b026\"}\n"} +{"Time":"2022-12-07T09:15:36.394021+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.394039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.394042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.393 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.394045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.393 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.394047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.393 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:36.402044+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.402062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.402065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.401 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"433.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd5c34d2-b864-461f-9be2-73749a64c65c\"}\n"} +{"Time":"2022-12-07T09:15:36.404368+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:36.404377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:36.40438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.403 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaces/c6173536-bb73-4c6e-8ef2-243d9ff5cbe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"755.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bde294b3-5ca5-4649-9bcf-ffd036d95bba\"}\n"} +{"Time":"2022-12-07T09:15:36.427696+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.427725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.427728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.427 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"739.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"89c262d8-d4a8-4b1b-bc66-5b1e1e9ed789\"}\n"} +{"Time":"2022-12-07T09:15:36.444665+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.44473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.444735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.444738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.44474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.444752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.444754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:36.444756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:36.444834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"request_id\": \"39c54225-7df0-428b-ad05-774c9ea8c673\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:36.444839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"request_id\": \"39c54225-7df0-428b-ad05-774c9ea8c673\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:36.444983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.446504+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.446515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.446518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.445 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.446521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.446634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:36.446652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.44716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.447165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.447167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:36.447169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.447171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:36.452822+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.45285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.452856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.452 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"459.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"72407e84-fba6-4d99-9225-e1d2eb49e95d\"}\n"} +{"Time":"2022-12-07T09:15:36.456021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.454 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.456033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.454 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.456036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.454 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:36.456038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.454 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHDial3930534173/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.45604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.454 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"size_bytes\": 68, \"path\": \"/tmp/TestGitSSHDial3930534173/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.456042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.454 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHDial3930534173/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.456044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.454 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"workspace_name\": \"distracted-lumiere2\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:36.456046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.455 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.456049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.455 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:36.467085+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} +{"Time":"2022-12-07T09:15:36.467101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} +{"Time":"2022-12-07T09:15:36.467105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/2e131bf7-5057-4975-a9e9-0e5094cdea2b/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"109.18925ms\", \"status_code\": 101, \"latency_ms\": 109, \"request_id\": \"2f66b546-68e9-482a-8d9f-b1a89b7448f6\"}\n"} +{"Time":"2022-12-07T09:15:36.467687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.467 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"161.616125ms\", \"status_code\": 0, \"latency_ms\": 161, \"request_id\": \"03504275-e848-473a-838e-471c4e58042e\"}\n"} +{"Time":"2022-12-07T09:15:36.467938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.467 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"230.509334ms\", \"status_code\": 0, \"latency_ms\": 230, \"request_id\": \"55b26ea9-a843-4157-9fbd-0321f31422e9\"}\n"} +{"Time":"2022-12-07T09:15:36.468216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.468 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:36.468686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.468 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.52625ms\", \"status_code\": 101, \"latency_ms\": 284, \"request_id\": \"33467957-2d55-402d-b749-0e3f38a78dcc\"}\n"} +{"Time":"2022-12-07T09:15:36.470472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:36.470486+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.470488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.476624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.475 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"186.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c1fcedd6-1189-41af-a216-04e5bbd397c7\"}\n"} +{"Time":"2022-12-07T09:15:36.476641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.475 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"80.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b46211e6-0bf8-4f6b-9245-d4a8e14dcd2d\"}\n"} +{"Time":"2022-12-07T09:15:36.476984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.476 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"565.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f1928169-3a43-44ec-b829-f5e4472716a5\"}\n"} +{"Time":"2022-12-07T09:15:36.47778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.477 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/organizations/b4c5afe5-5cc5-4cd1-a5ee-24957a1d42e1/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"603.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"69aa15e2-505b-43b2-8187-623528dc4800\"}\n"} +{"Time":"2022-12-07T09:15:36.477793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" create_test.go:33: waiting for template version job fa375284-e6f6-41c8-816f-dd9287935c91\n"} +{"Time":"2022-12-07T09:15:36.479176+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.479181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.479183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.478 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"656.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"82301225-5ec2-4be0-b8c7-1a4751b6c726\"}\n"} +{"Time":"2022-12-07T09:15:36.495444+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.49555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.495554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.495557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.495562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.495564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.495565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:36.495567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:36.495784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"request_id\": \"39c54225-7df0-428b-ad05-774c9ea8c673\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:36.495812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"request_id\": \"39c54225-7df0-428b-ad05-774c9ea8c673\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:36.495818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.497202+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.497217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.49722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.497 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.497224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.497 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.497228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.497 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.497263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.497 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.497394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.497 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:36.497403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.497 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"request_id\": \"6605dd15-c141-45ae-923b-36bd7bcf458d\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:36.501915+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.50193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.501933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.501 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"450.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4316410b-5aca-4c77-99df-949e48f68105\"}\n"} +{"Time":"2022-12-07T09:15:36.505675+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.505686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.505689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.505 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"940.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a697bbf6-a9b5-490c-86e9-85f537446b5f\"}\n"} +{"Time":"2022-12-07T09:15:36.505692+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.505694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.505695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.505 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.505697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.505 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.505699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.505 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.505701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.505 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.52722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.527 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"528.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0198e9f5-0d1d-4812-84ca-43e4ebb8515f\"}\n"} +{"Time":"2022-12-07T09:15:36.52978+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.529791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.529794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"464.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b19eb26c-a2b5-4a87-9c18-d181e4e51d10\"}\n"} +{"Time":"2022-12-07T09:15:36.546342+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.54636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.546363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.546 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.546366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.546 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.54637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.546 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.546472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.546 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.546476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.546 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} +{"Time":"2022-12-07T09:15:36.546691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.546 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/workspacebuilds/fd821e5d-4487-4b33-a927-bcb046ba5675/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"612.631042ms\", \"status_code\": 101, \"latency_ms\": 612, \"request_id\": \"39c54225-7df0-428b-ad05-774c9ea8c673\"}\n"} +{"Time":"2022-12-07T09:15:36.548816+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.548827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.548832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.548 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.548885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.548 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.548889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.548 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:36.54912+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.549124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.549126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.549 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/workspacebuilds/fd821e5d-4487-4b33-a927-bcb046ba5675\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.21125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9e61481e-74a3-4fc9-92f8-57873016cc41\"}\n"} +{"Time":"2022-12-07T09:15:36.552044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/users/testuser/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8cf4c4f4-c7a5-471a-b4a4-a5fd1fdebcd0\"}\n"} +{"Time":"2022-12-07T09:15:36.552052+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.552054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.552055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"526.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44534e58-521c-46ff-be59-c818b61fc1e6\"}\n"} +{"Time":"2022-12-07T09:15:36.552058+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.552059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.55206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"126adc2c-52b4-4d17-8a41-ea2f0ba95c48\"}\n"} +{"Time":"2022-12-07T09:15:36.552816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.552 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/organizations/e17f925f-0efc-48a4-a74f-ad33fabde2b0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"646.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"253d456b-f7d2-472b-8cb0-69290f61ba70\"}\n"} +{"Time":"2022-12-07T09:15:36.552863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" update_test.go:107: waiting for template version job 3db87ca4-74b1-413e-974c-b30bec6f5470\n"} +{"Time":"2022-12-07T09:15:36.553343+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.553348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.553351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.553 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"28d2c231-b70b-4c0e-b587-138d277c96a9\"}\n"} +{"Time":"2022-12-07T09:15:36.555796+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.555805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.555813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.555 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.555913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.555 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.555946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.555 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"Token\": \"dbe5e65b-96b6-421d-9ec6-07e3727d4ba5\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:36.573433+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.573457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.57346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.573 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:36.57729+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.577299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.577301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.577 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"473.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf998eac-8f3f-4a2e-a44a-61d2432e2bef\"}\n"} +{"Time":"2022-12-07T09:15:36.578174+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.578178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.57818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.578 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"285.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"87aa0984-eeca-49b7-b217-25ed03c1f66a\"}\n"} +{"Time":"2022-12-07T09:15:36.578407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.578433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.57844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.578 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"387.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"789e8b57-2f96-41ee-8e86-45bbb04710d3\"}\n"} +{"Time":"2022-12-07T09:15:36.599052+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.59907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.599073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.598 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.599078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.59908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.5991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.599123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:36.599138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:36.599175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"request_id\": \"6605dd15-c141-45ae-923b-36bd7bcf458d\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:36.599239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"request_id\": \"6605dd15-c141-45ae-923b-36bd7bcf458d\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:36.599247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.601819+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.601824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.601826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.601 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"453.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d9e18ce8-6c74-436f-b81c-d5bc952b0b70\"}\n"} +{"Time":"2022-12-07T09:15:36.603265+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.60327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.603272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"322.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"26af1ef0-5be7-4d4d-b1bc-c40eb86a5898\"}\n"} +{"Time":"2022-12-07T09:15:36.603642+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.603646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.603648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"331.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9e6b1184-81d3-4ea6-ac8d-0075955ecbfa\"}\n"} +{"Time":"2022-12-07T09:15:36.606212+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.606216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.606218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.606 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.606289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.606 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.606345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.606 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.606416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.606 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.606491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.624372+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.624388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.624391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.624394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.624397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:36.6244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreate467283361/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.624411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"size_bytes\": 41, \"path\": \"/tmp/TestCreateCreate467283361/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.624415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"size_bytes\": 41, \"path\": \"/tmp/TestCreateCreate467283361/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.624511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.624526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:36.627411+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.627421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.627424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.627 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aca12252-d6c2-4bad-a378-12e0649fb853\"}\n"} +{"Time":"2022-12-07T09:15:36.628503+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.628514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.628517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.628 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ac251893-d972-41f6-8711-0a46205994ed\"}\n"} +{"Time":"2022-12-07T09:15:36.629356+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.629363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.629365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.629 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"576.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f11e6ae7-0ea2-4476-a8c7-9657631845a1\"}\n"} +{"Time":"2022-12-07T09:15:36.642613+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} +{"Time":"2022-12-07T09:15:36.642631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} +{"Time":"2022-12-07T09:15:36.642634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:36.642 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspaceagents/c8964c20-a766-4e53-84d9-e29118746bd0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"575.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"476d3818-4ec7-4959-9ffb-a7275c4c183f\"}\n"} +{"Time":"2022-12-07T09:15:36.642807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ptytest.go:103: 2022-12-07 08:15:36.642: cmd: stdout: \"\\x1b[?25l\\r\\x1b[K\\r⠈⠁ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠑ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢀⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢄⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢄⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢆⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢎⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢎⡰ Waiting for connection from \\x1b[;m\\x1b[0m ...\\x1b[?25h\\r\\x1b[K\\x1b[2K \"\n"} +{"Time":"2022-12-07T09:15:36.642814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ptytest.go:103: 2022-12-07 08:15:36.642: cmd: stdout: \" \u003e The workspace agent is having trouble connecting. See \"\n"} +{"Time":"2022-12-07T09:15:36.642816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ptytest.go:103: 2022-12-07 08:15:36.642: cmd: stdout: \" troubleshooting instructions at: \"\n"} +{"Time":"2022-12-07T09:15:36.642818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ptytest.go:103: 2022-12-07 08:15:36.642: cmd: stdout: \" https://example.com/troubleshoot \"\n"} +{"Time":"2022-12-07T09:15:36.64282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ptytest.go:103: 2022-12-07 08:15:36.642: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:36.646515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ssh_test.go:133: 2022-12-07 08:15:36.646: cmd: matched \"https://example.com/troubleshoot\" = \"\\x1b[?25l\\r\\x1b[K\\r⠈⠁ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠑ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢀⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢄⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢄⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢆⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢎⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢎⡰ Waiting for connection from \\x1b[;m\\x1b[0m ...\\x1b[?25h\\r\\x1b[K\\x1b[2K \\r\\n \u003e The workspace agent is having trouble connecting. See \\r\\n troubleshooting instructions at: \\r\\n https://example.com/troubleshoot\"\n"} +{"Time":"2022-12-07T09:15:36.647012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ptytest.go:80: 2022-12-07 08:15:36.646: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:36.647026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ptytest.go:103: 2022-12-07 08:15:36.646: cmd: stdout: \"\\x1b[?25l\\r\\x1b[K\\r⢎⡠ Waiting for connection from \\x1b[;m\\x1b[0m ...\"\n"} +{"Time":"2022-12-07T09:15:36.647031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:36.646 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:36.64879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:36.648821+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h"} +{"Time":"2022-12-07T09:15:36.648823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h","Output":"=== CONT TestDurationDisplay/25h\n"} +{"Time":"2022-12-07T09:15:36.648826+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s"} +{"Time":"2022-12-07T09:15:36.648827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s","Output":"=== CONT TestDurationDisplay/24h1m1s\n"} +{"Time":"2022-12-07T09:15:36.648829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h"} +{"Time":"2022-12-07T09:15:36.64883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h","Output":"=== CONT TestDurationDisplay/24h\n"} +{"Time":"2022-12-07T09:15:36.648831+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h"} +{"Time":"2022-12-07T09:15:36.648832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h","Output":"=== CONT TestDurationDisplay/23h\n"} +{"Time":"2022-12-07T09:15:36.648834+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h"} +{"Time":"2022-12-07T09:15:36.648835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h","Output":"=== CONT TestDurationDisplay/2h\n"} +{"Time":"2022-12-07T09:15:36.648836+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s"} +{"Time":"2022-12-07T09:15:36.648837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s","Output":"=== CONT TestDurationDisplay/1h1m1s\n"} +{"Time":"2022-12-07T09:15:36.648838+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h"} +{"Time":"2022-12-07T09:15:36.64884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h","Output":"=== CONT TestDurationDisplay/1h\n"} +{"Time":"2022-12-07T09:15:36.648842+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m"} +{"Time":"2022-12-07T09:15:36.648843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m","Output":"=== CONT TestDurationDisplay/59m\n"} +{"Time":"2022-12-07T09:15:36.648844+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m"} +{"Time":"2022-12-07T09:15:36.648846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m","Output":"=== CONT TestDurationDisplay/2m\n"} +{"Time":"2022-12-07T09:15:36.648847+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s"} +{"Time":"2022-12-07T09:15:36.648851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s","Output":"=== CONT TestDurationDisplay/1m1s\n"} +{"Time":"2022-12-07T09:15:36.648854+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m"} +{"Time":"2022-12-07T09:15:36.648856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m","Output":"=== CONT TestDurationDisplay/1m\n"} +{"Time":"2022-12-07T09:15:36.648857+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s"} +{"Time":"2022-12-07T09:15:36.648858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s","Output":"=== CONT TestDurationDisplay/59s\n"} +{"Time":"2022-12-07T09:15:36.648859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s"} +{"Time":"2022-12-07T09:15:36.64886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s","Output":"=== CONT TestDurationDisplay/1s\n"} +{"Time":"2022-12-07T09:15:36.648862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s"} +{"Time":"2022-12-07T09:15:36.648863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s","Output":"=== CONT TestDurationDisplay/0s\n"} +{"Time":"2022-12-07T09:15:36.648866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay","Output":"--- PASS: TestDurationDisplay (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s","Output":" --- PASS: TestDurationDisplay/-1s (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648869+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s","Elapsed":0} +{"Time":"2022-12-07T09:15:36.648871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h","Output":" --- PASS: TestDurationDisplay/25h (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648873+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h","Elapsed":0} +{"Time":"2022-12-07T09:15:36.648874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s","Output":" --- PASS: TestDurationDisplay/24h1m1s (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648875+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s","Elapsed":0} +{"Time":"2022-12-07T09:15:36.648877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h","Output":" --- PASS: TestDurationDisplay/24h (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648879+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h","Elapsed":0} +{"Time":"2022-12-07T09:15:36.64888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h","Output":" --- PASS: TestDurationDisplay/23h (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648882+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h","Elapsed":0} +{"Time":"2022-12-07T09:15:36.648883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h","Output":" --- PASS: TestDurationDisplay/2h (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648884+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h","Elapsed":0} +{"Time":"2022-12-07T09:15:36.648885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s","Output":" --- PASS: TestDurationDisplay/1h1m1s (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648887+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s","Elapsed":0} +{"Time":"2022-12-07T09:15:36.648888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h","Output":" --- PASS: TestDurationDisplay/1h (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648889+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h","Elapsed":0} +{"Time":"2022-12-07T09:15:36.64889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m","Output":" --- PASS: TestDurationDisplay/59m (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648892+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m","Elapsed":0} +{"Time":"2022-12-07T09:15:36.648893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m","Output":" --- PASS: TestDurationDisplay/2m (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648894+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m","Elapsed":0} +{"Time":"2022-12-07T09:15:36.648895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s","Output":" --- PASS: TestDurationDisplay/1m1s (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648897+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s","Elapsed":0} +{"Time":"2022-12-07T09:15:36.648898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m","Output":" --- PASS: TestDurationDisplay/1m (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.6489+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m","Elapsed":0} +{"Time":"2022-12-07T09:15:36.648901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s","Output":" --- PASS: TestDurationDisplay/59s (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648902+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s","Elapsed":0} +{"Time":"2022-12-07T09:15:36.648903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s","Output":" --- PASS: TestDurationDisplay/1s (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648905+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s","Elapsed":0} +{"Time":"2022-12-07T09:15:36.648906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s","Output":" --- PASS: TestDurationDisplay/0s (0.00s)\n"} +{"Time":"2022-12-07T09:15:36.648907+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s","Elapsed":0} +{"Time":"2022-12-07T09:15:36.648908+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay","Elapsed":0} +{"Time":"2022-12-07T09:15:36.648909+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.64891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.649418+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.649423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.649435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.649439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.649488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.649491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.649599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:36.649604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:36.649606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"request_id\": \"6605dd15-c141-45ae-923b-36bd7bcf458d\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:36.649751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.649755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"request_id\": \"6605dd15-c141-45ae-923b-36bd7bcf458d\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:36.6528+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.652809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.652812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.652 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"138.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"728086a8-acbc-47aa-91d4-c80ee5c2c9b8\"}\n"} +{"Time":"2022-12-07T09:15:36.652904+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.652929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.652935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.652 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"475.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6bc84c57-aa1d-4a18-8b75-4dfa3dc29098\"}\n"} +{"Time":"2022-12-07T09:15:36.653187+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.653197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.653199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.653 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"42.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f7b481c5-d9e4-47f4-b751-01c51ba40f50\"}\n"} +{"Time":"2022-12-07T09:15:36.655277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"948.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3556be59-b2c6-4da7-8de7-06de04b13195\"}\n"} +{"Time":"2022-12-07T09:15:36.655979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.655 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/organizations/2e444afc-6afa-43c4-83c9-271888596e86/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.461083ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"ebdafed1-58bd-4425-a2dd-f50fc713941c\"}\n"} +{"Time":"2022-12-07T09:15:36.655994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" delete_test.go:24: waiting for template version job 05af0653-d3eb-4679-b856-1f8d4069da40\n"} +{"Time":"2022-12-07T09:15:36.656938+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.656943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.656947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.656 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c336d22-e6c0-4928-be38-83a4b2ea9fc5\"}\n"} +{"Time":"2022-12-07T09:15:36.656953+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.656955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.656956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.656 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.656959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.656 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.656961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.656 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.656963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.656 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.656974+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.656975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.656977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.656 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"481.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"65c454ed-f1b2-488e-91fe-39ef687e5bc0\"}\n"} +{"Time":"2022-12-07T09:15:36.657059+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.657062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.657064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.656 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.672401+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.672441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.672446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.672 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"12.375µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:36.675172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.674 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.675181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.675 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:36.676894+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.676904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.676907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.676 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"504.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e1775478-405b-4a19-8a78-75dcbad38800\"}\n"} +{"Time":"2022-12-07T09:15:36.678701+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.678708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.678711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.678 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06e27de0-c6c7-4448-b6e4-3a737794256d\"}\n"} +{"Time":"2022-12-07T09:15:36.67966+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.679665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.679667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.679 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"807.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"695b79a7-b049-47ac-9e93-bae05a0cb4f3\"}\n"} +{"Time":"2022-12-07T09:15:36.68273+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.682739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.682741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.682 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"316.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ea2d8d31-7100-461d-814a-95c804d64a3c\"}\n"} +{"Time":"2022-12-07T09:15:36.702979+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.702997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.702 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.703003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.702 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.703005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.703007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.703009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.702 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} +{"Time":"2022-12-07T09:15:36.703011+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.703012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.703014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.059875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"38f12882-84cb-4747-a47b-913fe140d9b7\"}\n"} +{"Time":"2022-12-07T09:15:36.703016+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.703018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.703019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/workspacebuilds/d178c665-892b-42b2-a34b-05cd06833711/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"915.911667ms\", \"status_code\": 101, \"latency_ms\": 915, \"request_id\": \"6605dd15-c141-45ae-923b-36bd7bcf458d\"}\n"} +{"Time":"2022-12-07T09:15:36.703886+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.703895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.703898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.703 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"517.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d54ff39b-5d87-4290-8816-172c406113fb\"}\n"} +{"Time":"2022-12-07T09:15:36.703902+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.703903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.703905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.703 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"300.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0f57952b-6b9e-4a2d-9b63-983f90d0b381\"}\n"} +{"Time":"2022-12-07T09:15:36.704461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.704466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.704468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.704 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/workspacebuilds/d178c665-892b-42b2-a34b-05cd06833711\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"418.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6aad27c6-3e1a-4847-9c20-f1dedd03504e\"}\n"} +{"Time":"2022-12-07T09:15:36.705462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/users/testuser/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"904.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4ccd8b14-a55b-42cb-bd1b-060f494715e1\"}\n"} +{"Time":"2022-12-07T09:15:36.706185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"371.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f99538f2-725f-4467-a557-fdda685b55ec\"}\n"} +{"Time":"2022-12-07T09:15:36.706658+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.706685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.706692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd7b9063-4f31-490c-9a40-ffd505f4b3a1\"}\n"} +{"Time":"2022-12-07T09:15:36.706937+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.706943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.706945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/organizations/304f437c-b063-4fa0-ba34-4b1bf46b4a03/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"555.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e8777708-87ad-4e6d-a698-86d6b36028e1\"}\n"} +{"Time":"2022-12-07T09:15:36.707092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" update_test.go:59: waiting for template version job 96079034-c2e2-4262-aace-baab39c9712b\n"} +{"Time":"2022-12-07T09:15:36.707181+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.707184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.707185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.707 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.707273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.707 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:36.707351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.707 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.707431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.707 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} +{"Time":"2022-12-07T09:15:36.725587+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.725603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.725606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.725609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.725611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.725613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.725615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.725617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.725619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.725621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:36.725624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.726675+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.726687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.72669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.726 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"385.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c7668d5-11f8-4683-ad82-96e5a29e9b9e\"}\n"} +{"Time":"2022-12-07T09:15:36.7286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" gitssh_test.go:145: waiting for workspace agents (workspace deb079dc-38f6-49cc-9c16-8193a9785feb)\n"} +{"Time":"2022-12-07T09:15:36.728736+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.728742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.728744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.728 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"629.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5549b2e8-13f6-4ba0-9d61-102790dd90ee\"}\n"} +{"Time":"2022-12-07T09:15:36.729057+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.729079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.729082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.728 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2a10aaf3-7c26-429f-8904-8c28cde4ad6c\"}\n"} +{"Time":"2022-12-07T09:15:36.732015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.732023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.732025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.731 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aa86d625-0e34-4025-baee-f9fc78391f40\"}\n"} +{"Time":"2022-12-07T09:15:36.734102+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.734109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.734112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"772.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e1ae0fe-8e40-482c-97f2-fa5880a331c0\"}\n"} +{"Time":"2022-12-07T09:15:36.752099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.75212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.752124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.752 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:36.759144+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.759158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.759162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.334208ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"b8a839db-194a-4a1b-9167-429fbd17df6b\"}\n"} +{"Time":"2022-12-07T09:15:36.759165+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.759167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.759169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"333.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"afbadf43-21db-469a-b196-7fa9d965e231\"}\n"} +{"Time":"2022-12-07T09:15:36.759171+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.759173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.759174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:36.761115+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.761123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.761125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a870b8ae-dc92-43b5-916b-051535519d50\"}\n"} +{"Time":"2022-12-07T09:15:36.761128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.761129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.761131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.042666ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9b3ea02b-fc99-4b71-a65a-83dea127f392\"}\n"} +{"Time":"2022-12-07T09:15:36.764068+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.764087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.764091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.763 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.22025ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"7adaf46a-c0f7-423b-b94e-1b48d315b1ec\"}\n"} +{"Time":"2022-12-07T09:15:36.776009+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.776035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.776047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.775 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.77605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.775 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.776052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.775 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.776054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.775 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.776056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.775 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.776067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.775 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.779065+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.779074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.779077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.778 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"509.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5d43579-1e9a-49f6-9948-fbcad2ae8945\"}\n"} +{"Time":"2022-12-07T09:15:36.779471+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.779477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.779481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.779 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"355.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6696e22f-0051-4e56-841c-296c662f4eb7\"}\n"} +{"Time":"2022-12-07T09:15:36.779485+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.779486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.779488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.779 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"301.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6cb630e9-f572-462e-bf53-9d905bd8e34a\"}\n"} +{"Time":"2022-12-07T09:15:36.779491+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.779492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.779545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:36.78197+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.781982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.781984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.781 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"433.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2112ee42-9f51-4d7a-acc7-645f7831fda9\"}\n"} +{"Time":"2022-12-07T09:15:36.784781+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.78479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.784793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.784 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"422.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61f005bd-c110-4d87-9415-ce66b56a0a90\"}\n"} +{"Time":"2022-12-07T09:15:36.805515+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.805549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.805556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d5017d5f-aa13-4f43-9cec-619b881e7a94\"}\n"} +{"Time":"2022-12-07T09:15:36.805564+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.805567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.805571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.804 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:36.805577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.804 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:36.805582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.804 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:36.805587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.805 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.805593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.805 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.805599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.805 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:36.805604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.805 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:36.805609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.805 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:36.805618+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.805621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.805625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.805 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"69d24eb5-84bb-4335-a410-968c1d3f0be2\"}\n"} +{"Time":"2022-12-07T09:15:36.806016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:36.806024+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.806027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.806031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.805 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"901.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4728065b-9323-46c4-a6b2-db2f90fe6529\"}\n"} +{"Time":"2022-12-07T09:15:36.806615+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.806626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.806629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.806 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0afdfd62-433c-496a-a50e-cbf990b3b5d5\"}\n"} +{"Time":"2022-12-07T09:15:36.808306+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.808314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.808318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.808 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dedb1fc4-91c4-468a-976c-db45845b345a\"}\n"} +{"Time":"2022-12-07T09:15:36.826887+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.826902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.826905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.826 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.826907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.826 [INFO]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:36.82691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.826 [INFO]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:36.826912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.826 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.826914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.826 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.826915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.826 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} +{"Time":"2022-12-07T09:15:36.830967+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.830979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.830982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"30b97a01-5195-48b8-a764-d1a1026e6760\"}\n"} +{"Time":"2022-12-07T09:15:36.830985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.830987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.830988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"282.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"88d2530c-083f-4a5d-93da-b0623fdda23d\"}\n"} +{"Time":"2022-12-07T09:15:36.83141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/organizations/b4c5afe5-5cc5-4cd1-a5ee-24957a1d42e1/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"712.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a28105e0-d20a-4a3c-9ed9-601ce94867d0\"}\n"} +{"Time":"2022-12-07T09:15:36.83175+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.831756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.831758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"abdfd75b-2c84-4101-9f12-3c73691f13f4\"}\n"} +{"Time":"2022-12-07T09:15:36.831761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.831762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.831764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"00fc525d-70cc-4b74-815a-816a5db85f47\"}\n"} +{"Time":"2022-12-07T09:15:36.831766+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.831767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.831769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:36.834965+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.834976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.834978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.25µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"34b7613f-8c78-498d-9586-f15843b4c241\"}\n"} +{"Time":"2022-12-07T09:15:36.834981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"35.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6e164e72-2faa-4dee-b96f-bd1dfc7f0c34\"}\n"} +{"Time":"2022-12-07T09:15:36.835516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.835 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"87e06ab2-a1d7-49c1-8d7a-297d97d18b71\"}\n"} +{"Time":"2022-12-07T09:15:36.835524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.835529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.835533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.835 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53083a1f-85dd-4603-b49c-87e695814bd7\"}\n"} +{"Time":"2022-12-07T09:15:36.835645+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:36.835656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:36.835659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.835 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"52ea206a-c8d9-4368-9243-c3e89d33805c\"}\n"} +{"Time":"2022-12-07T09:15:36.836144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/organizations/b4c5afe5-5cc5-4cd1-a5ee-24957a1d42e1/templates/youthful-roentgen7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"304.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7aca276b-86ec-4148-944b-8df559d339ca\"}\n"} +{"Time":"2022-12-07T09:15:36.836998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"255.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"402db4bb-4cc4-4f6f-8ebb-076c2763224d\"}\n"} +{"Time":"2022-12-07T09:15:36.838204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.837 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"91056658-0d05-4f1f-ae6a-167ad336187c\"}\n"} +{"Time":"2022-12-07T09:15:36.838213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.837 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.416µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9eab2d7c-3003-413c-8292-169c2925bb4f\"}\n"} +{"Time":"2022-12-07T09:15:36.838488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:36.838: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:36.838494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:36.838: cmd: stdout: \"Planning workspace...\"\n"} +{"Time":"2022-12-07T09:15:36.838643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:36.838: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:36.839132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.839 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91/dry-run/30c0e230-f593-4723-bc76-02c9ff3f112c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"475.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3a3f9aba-564f-4113-ad6a-2a9a3e8e2c65\"}\n"} +{"Time":"2022-12-07T09:15:36.850636+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.850654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.850657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.850 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"9.959µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:36.854796+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.854809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.854812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.853 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"70e03813-41c7-4514-84c5-33be199280f2\"}\n"} +{"Time":"2022-12-07T09:15:36.854816+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.854818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.854819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.854 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2a2163e2-2fa5-4dcd-bed2-82ca3fa9eee6\"}\n"} +{"Time":"2022-12-07T09:15:36.854822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:36.855973+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.855998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.856004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.855 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:36.856031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.855 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:36.856619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.856 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"255c6ca0-3417-43bf-b610-e5518f4ae463\"}\n"} +{"Time":"2022-12-07T09:15:36.859778+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.859786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.859789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.859 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8cf61a7e-36bb-4e3d-9166-2ee883c689bd\"}\n"} +{"Time":"2022-12-07T09:15:36.879486+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.879505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.879509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.879 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"895.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7869c545-4594-4ee7-b5a1-23a3b24c3f01\"}\n"} +{"Time":"2022-12-07T09:15:36.879531+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.879533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.879535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.879 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ddad9a3-8314-40ce-bca3-ed762869c0fd\"}\n"} +{"Time":"2022-12-07T09:15:36.879612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:36.88205+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.882057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.8821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.881 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"288.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"85342d51-18ae-4c07-b6e0-8c372eaea20b\"}\n"} +{"Time":"2022-12-07T09:15:36.883054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.883063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.883066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.882 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"616.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7685c048-7420-4932-9c5a-c9652eb9908e\"}\n"} +{"Time":"2022-12-07T09:15:36.903524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.903542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.903545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.903 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"359.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"167d7a8c-9a23-4bba-86e7-ffea6f194805\"}\n"} +{"Time":"2022-12-07T09:15:36.905143+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.905167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.905182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9b263500-84fd-47b1-ab6d-131778c86142\"}\n"} +{"Time":"2022-12-07T09:15:36.905341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:36.905894+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.905902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.905905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:36.905907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.905909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.905912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.905917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.905923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:36.905998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:36.906083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.906 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:36.906108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.906 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:36.90815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.908157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.908173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.908 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"798.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"759bbc40-49bf-47e7-bc93-b26ced0eee32\"}\n"} +{"Time":"2022-12-07T09:15:36.908264+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.908268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.90827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.908 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"935.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"785fd55c-5173-47f1-a7fc-17b40a98e185\"}\n"} +{"Time":"2022-12-07T09:15:36.928809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.928827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.928831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e22e354e-3ae0-4611-ad0e-aabfd518f759\"}\n"} +{"Time":"2022-12-07T09:15:36.931912+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.931939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.931945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1b105b6-3ac9-45fc-8990-2138ed037a86\"}\n"} +{"Time":"2022-12-07T09:15:36.932462+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.932475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.932478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6c3dd1a2-9649-4b99-b5b7-f088ff286603\"}\n"} +{"Time":"2022-12-07T09:15:36.932604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:36.932815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.932819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.932821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d4652d7d-f6f1-4e37-b5c9-6b4288c06f40\"}\n"} +{"Time":"2022-12-07T09:15:36.953541+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.953557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.953561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.953 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"381.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da5748b6-193c-4664-86c1-a7d6725dc633\"}\n"} +{"Time":"2022-12-07T09:15:36.954375+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.954381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.954383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.954 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"330µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d4b6369-d47c-428f-b98f-227b40654e4c\"}\n"} +{"Time":"2022-12-07T09:15:36.954386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:36.956536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.95655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.956553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.956 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:36.956556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.956 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.956558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.956 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:36.95656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.956 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:36.956562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.956 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:36.956564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.956 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:36.957355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.957 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e69100f6-43d8-4be7-a7e0-3251d9cf4a2a\"}\n"} +{"Time":"2022-12-07T09:15:36.957708+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.957721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.957725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.957 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"316.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"68c4ac96-3b5f-444f-85ca-e9e6b8fe32cd\"}\n"} +{"Time":"2022-12-07T09:15:36.979624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:36.979642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.979655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.979 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.121291ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9705a947-b907-4038-a962-18cda491edb0\"}\n"} +{"Time":"2022-12-07T09:15:36.982191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:36.982214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:36.982254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.981 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"661.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c026317-9528-418a-aee1-443e1e882828\"}\n"} +{"Time":"2022-12-07T09:15:36.98262+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:36.982625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:36.982658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.967542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3200ea35-0ced-4d94-9d66-c3a1431b5e87\"}\n"} +{"Time":"2022-12-07T09:15:36.982982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:36.983321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:36.983326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:36.983331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"889.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"22ea186b-68e1-4d3c-8244-d093ad4bd9a0\"}\n"} +{"Time":"2022-12-07T09:15:37.005366+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.005384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.005387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.004 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.026959ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bb290d62-b714-4211-93ed-e37acd02b4d9\"}\n"} +{"Time":"2022-12-07T09:15:37.00567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:37.005693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:37.005696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.005 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"492.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"27f7c04c-a1a2-4908-8654-9d481823299e\"}\n"} +{"Time":"2022-12-07T09:15:37.005699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:37.007043+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.007054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.007056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.006 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:37.007058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.006 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:37.00706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.006 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:37.007074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.006 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} +{"Time":"2022-12-07T09:15:37.008251+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.008263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.008266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.007 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a8a1f71-4741-46e8-9119-2101c1591884\"}\n"} +{"Time":"2022-12-07T09:15:37.009399+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.009404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.009412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b835708-7fb4-455e-bd40-4f0bcf9201f2\"}\n"} +{"Time":"2022-12-07T09:15:37.010564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/organizations/2e444afc-6afa-43c4-83c9-271888596e86/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"957.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"312aee05-846b-457a-9c42-f04029e1740b\"}\n"} +{"Time":"2022-12-07T09:15:37.011399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.011 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/organizations/2e444afc-6afa-43c4-83c9-271888596e86/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"584.084µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"de1859e2-1e2f-4c71-8faa-8c9e82020f81\"}\n"} +{"Time":"2022-12-07T09:15:37.011682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" delete_test.go:27: waiting for workspace build job 50f67471-e5a9-4bde-ae1f-894c81677c78\n"} +{"Time":"2022-12-07T09:15:37.029461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.029477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.02948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.028 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b9cfde4-5125-4200-9a33-b7a345126412\"}\n"} +{"Time":"2022-12-07T09:15:37.029484+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:37.029486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:37.029487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90b4c656-c06c-4bea-9423-0e572c6abf3d\"}\n"} +{"Time":"2022-12-07T09:15:37.02949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:37.033357+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.033368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.033371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"323.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"94c34247-eff2-4de2-a7c3-8a8b6d9664ce\"}\n"} +{"Time":"2022-12-07T09:15:37.035731+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:37.035742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:37.035745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.035 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"9eaa3669-6ac2-4900-b8ca-91278740ec0e\", \"agent_id\": \"4e281d6c-f3d6-46b9-8c34-fd3dc248f959\", \"agent_version\": \"v0.0.0-devel\"}\n"} +{"Time":"2022-12-07T09:15:37.035747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"95.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9eaa3669-6ac2-4900-b8ca-91278740ec0e\"}\n"} +{"Time":"2022-12-07T09:15:37.036416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"58.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e7a839bf-4830-434a-83f8-a5fa2847221a\"}\n"} +{"Time":"2022-12-07T09:15:37.036812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"60.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ffc1ad66-b1f4-4fa6-9cac-219f04bc40df\"}\n"} +{"Time":"2022-12-07T09:15:37.03738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.037386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.037388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.037 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"350.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8774911c-6df6-49d8-9cfc-f80272f55305\"}\n"} +{"Time":"2022-12-07T09:15:37.039117+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:37.039128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:37.039131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.038 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"c61cb385-8fc1-4937-aa48-a26f2b12d426\", \"agent\": {\"id\": \"4e281d6c-f3d6-46b9-8c34-fd3dc248f959\", \"created_at\": \"2022-12-07T08:15:36.707201Z\", \"updated_at\": \"2022-12-07T08:15:36.707201Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"054d5a91-c0b8-4a49-8397-08bd3d88648b\", \"auth_token\": \"dbe5e65b-96b6-421d-9ec6-07e3727d4ba5\", \"auth_instance_id\": {\"String\": \"\", \"Valid\": false}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"directory\": \"\","} +{"Time":"2022-12-07T09:15:37.039136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} +{"Time":"2022-12-07T09:15:37.053275+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:37.053292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:37.053295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} +{"Time":"2022-12-07T09:15:37.053449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} +{"Time":"2022-12-07T09:15:37.053678+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.053691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.053694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.053 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ccec5959-33d2-4880-899f-d3fdf24cf32b\"}\n"} +{"Time":"2022-12-07T09:15:37.053698+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:37.0537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:37.053701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:37.053704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreate467283361/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.053706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"size_bytes\": 41, \"path\": \"/tmp/TestCreateCreate467283361/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.05371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"size_bytes\": 41, \"path\": \"/tmp/TestCreateCreate467283361/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.053712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"workspace_name\": \"my-workspace\", \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:37.053888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.053895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} +{"Time":"2022-12-07T09:15:37.054058+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:37.054062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:37.054064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.054 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e00b0cec-63ad-479a-9aef-699c6a489500\"}\n"} +{"Time":"2022-12-07T09:15:37.066998+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.067017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.06702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.066 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"849µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0b78158f-f66d-40eb-a1c9-590b8eae8e3d\"}\n"} +{"Time":"2022-12-07T09:15:37.067023+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.067025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.067027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.066 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"727.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"03c7eaeb-1459-4811-bda4-65cdc986899b\"}\n"} +{"Time":"2022-12-07T09:15:37.073117+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:37.073129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:37.073133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.072 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaceagents/me/gitsshkey\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"207µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"98bda2f3-c834-456c-acb6-63a780d21ae0\"}\n"} +{"Time":"2022-12-07T09:15:37.073497+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.073524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.073531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.073 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.075617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.073 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.080496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.080 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:37.080511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.080 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.080514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.080 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.080516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.080 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.080525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.080 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.081031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.080 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:37.081199+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.081211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.081214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.081 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"684.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d654903-76dc-475a-a7fb-52c350e54ba1\"}\n"} +{"Time":"2022-12-07T09:15:37.086219+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.086233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.086236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.085 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"924.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db8c9224-14ee-412a-9120-abd08a21d331\"}\n"} +{"Time":"2022-12-07T09:15:37.089098+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.089114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.089117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.088 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"504.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"32d0d174-0501-4aaf-bff0-618a53191122\"}\n"} +{"Time":"2022-12-07T09:15:37.103776+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.103805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.103808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.103 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"448.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0786535a-03c0-492b-b06e-34666df61260\"}\n"} +{"Time":"2022-12-07T09:15:37.105508+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:37.105524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:37.105527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.104 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} +{"Time":"2022-12-07T09:15:37.105529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.104 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.105531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.104 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.105562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.105 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} +{"Time":"2022-12-07T09:15:37.105748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.105 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} +{"Time":"2022-12-07T09:15:37.105781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:37.105787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:37.105793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"request_id\": \"53e84e35-aed6-447c-b4f2-3522acfb9928\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:37.105798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"request_id\": \"53e84e35-aed6-447c-b4f2-3522acfb9928\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:37.105809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.105 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} +{"Time":"2022-12-07T09:15:37.105981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.105: cmd: stdout: \"\\x1b[1A\\r✔ Queued [214ms]\"\n"} +{"Time":"2022-12-07T09:15:37.105987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.105: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:37.105989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.105: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} +{"Time":"2022-12-07T09:15:37.10599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.105: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:37.107823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.107835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.107838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.107 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9bc538a4-e758-4b1b-a2e8-5336c83c3a70\"}\n"} +{"Time":"2022-12-07T09:15:37.113145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.113155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.113158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"572.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c02d3bf-4bce-4559-8feb-2b9ed3dab7e5\"}\n"} +{"Time":"2022-12-07T09:15:37.130014+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.130047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.130054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.129 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"485.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4498c6c7-0b2e-41e6-9c91-19edaef09089\"}\n"} +{"Time":"2022-12-07T09:15:37.13162+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.131637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.13164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.131 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.131643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.131 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.131754+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.131768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.131771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.131775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.13197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:37.131992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"size_bytes\": 81, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.131999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.132005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.132011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.13202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description 1\", \"default_source\": {\"value\": \"something\"}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}, {\"name\": \"username\", \"description\": \"description 2\", \"default_source\": {}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} +{"Time":"2022-12-07T09:15:37.134029+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.134038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.134041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.133 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"999.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"109fcdad-748e-418c-90e6-e37a52ae2a80\"}\n"} +{"Time":"2022-12-07T09:15:37.137482+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.13749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.137493+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.137 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"635.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"67e5ec9c-2f57-4a83-bef4-a5297c91509d\"}\n"} +{"Time":"2022-12-07T09:15:37.153604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.153682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.153685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.153 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"395.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2300d149-67fd-4511-9fbc-57226909b481\"}\n"} +{"Time":"2022-12-07T09:15:37.157311+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:37.157323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:37.157326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.156 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} +{"Time":"2022-12-07T09:15:37.157328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.156 [INFO]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:787\u003e\t(*Server).CompleteJob\tinserting template dry-run job resource\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"resource_name\": \"main\", \"resource_type\": \"compute\"}\n"} +{"Time":"2022-12-07T09:15:37.15734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.156 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} +{"Time":"2022-12-07T09:15:37.157342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.156 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} +{"Time":"2022-12-07T09:15:37.157344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.156 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} +{"Time":"2022-12-07T09:15:37.157346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.156 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} +{"Time":"2022-12-07T09:15:37.157348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.156 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} +{"Time":"2022-12-07T09:15:37.15735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.157 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91/dry-run/30c0e230-f593-4723-bc76-02c9ff3f112c/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"316.863209ms\", \"status_code\": 101, \"latency_ms\": 316, \"request_id\": \"53e84e35-aed6-447c-b4f2-3522acfb9928\"}\n"} +{"Time":"2022-12-07T09:15:37.158359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.157 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91/dry-run/30c0e230-f593-4723-bc76-02c9ff3f112c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"685.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97727f84-f89f-4cdd-be3d-cbb49a105354\"}\n"} +{"Time":"2022-12-07T09:15:37.158722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [103ms]\"\n"} +{"Time":"2022-12-07T09:15:37.158732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91/dry-run/30c0e230-f593-4723-bc76-02c9ff3f112c/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"524.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"537e37d1-8bf9-4ab2-a627-a6a06dcf1fbf\"}\n"} +{"Time":"2022-12-07T09:15:37.158738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.15874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.158742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"755.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2acc3dba-6b9b-4269-9039-a9d8e57fcd41\"}\n"} +{"Time":"2022-12-07T09:15:37.158931+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:37.158957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:37.158963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"┌────────────────────────────────────────────────────┐\"\n"} +{"Time":"2022-12-07T09:15:37.158969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"│ Workspace Preview │\"\n"} +{"Time":"2022-12-07T09:15:37.158973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"├────────────────────────────────────────────────────┤\"\n"} +{"Time":"2022-12-07T09:15:37.158977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"│ RESOURCE ACCESS │\"\n"} +{"Time":"2022-12-07T09:15:37.158981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"├────────────────────────────────────────────────────┤\"\n"} +{"Time":"2022-12-07T09:15:37.158986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"│ \\x1b[1mcompute.main\\x1b[0m │\"\n"} +{"Time":"2022-12-07T09:15:37.158993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"│ └─ smith (linux, i386) \\x1b[;mcoder ssh my-workspace\\x1b[0m │\"\n"} +{"Time":"2022-12-07T09:15:37.158997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"└────────────────────────────────────────────────────┘\"\n"} +{"Time":"2022-12-07T09:15:37.159088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" create_test.go:62: 2022-12-07 08:15:37.159: cmd: matched \"compute.main\" = \"\\r\\nPlanning workspace...\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [214ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [0ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Cleaning Up [103ms]\\r\\n┌────────────────────────────────────────────────────┐\\r\\n│ Workspace Preview │\\r\\n├────────────────────────────────────────────────────┤\\r\\n│ RESOURCE ACCESS │\\r\\n├────────────────────────────────────────────────────┤\\r\\n│ \\x1b[1mcompute.main\"\n"} +{"Time":"2022-12-07T09:15:37.159104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" create_test.go:62: 2022-12-07 08:15:37.159: cmd: matched \"smith (linux, i386)\" = \"\\x1b[0m │\\r\\n│ └─ smith (linux, i386)\"\n"} +{"Time":"2022-12-07T09:15:37.159107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" create_test.go:62: 2022-12-07 08:15:37.159: cmd: matched \"Confirm create\" = \" \\x1b[;mcoder ssh my-workspace\\x1b[0m │\\r\\n└────────────────────────────────────────────────────┘\\r\\n\u003e Confirm create\"\n"} +{"Time":"2022-12-07T09:15:37.15911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" create_test.go:64: 2022-12-07 08:15:37.159: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:37.159137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.159: cmd: stdout: \"\u003e Confirm create? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:37.160372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/organizations/b4c5afe5-5cc5-4cd1-a5ee-24957a1d42e1/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"768.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cfc6a358-e82a-45e3-969f-7620799c0a7a\"}\n"} +{"Time":"2022-12-07T09:15:37.161053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.160: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:37.161772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.161 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/workspacebuilds/c8383839-1c48-4ed2-85c8-c0437fde86c3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.018458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4c4be472-ae94-4897-b3d7-89e8d0d7a654\"}\n"} +{"Time":"2022-12-07T09:15:37.164019+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.164027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.164029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.163 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"960.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5f1581f6-3dcc-4361-894f-44d0084d3926\"}\n"} +{"Time":"2022-12-07T09:15:37.179299+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.179391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.179404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.178 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"473.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53247775-e5c3-44c2-88ca-a0a6e6615ffe\"}\n"} +{"Time":"2022-12-07T09:15:37.183567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.183581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.183584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.183586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.183605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.183607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.183615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.183617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.183619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.183621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.183622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.183 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.183626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.183 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"668.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1189dda4-62c4-40a2-952f-0b9f32b174f3\"}\n"} +{"Time":"2022-12-07T09:15:37.184654+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.18468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.184686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.184 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.184692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.184 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.189258+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.189272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.189275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.188 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.530958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"def2b1f5-f17a-4343-addb-10ff57c53974\"}\n"} +{"Time":"2022-12-07T09:15:37.204616+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.204634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.204637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.204 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"669.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6480f7ae-ac12-4692-bc34-b31d73a901b8\"}\n"} +{"Time":"2022-12-07T09:15:37.208171+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.208181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.208184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"315.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"998a3b8e-da19-4077-af5e-114603392638\"}\n"} +{"Time":"2022-12-07T09:15:37.211865+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:37.211882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:37.211886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.211 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.211889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.211 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.211892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.211 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:37.211895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.211 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreate467283361/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.212237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.211 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"size_bytes\": 41, \"path\": \"/tmp/TestCreateCreate467283361/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.212242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.211 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"size_bytes\": 41, \"path\": \"/tmp/TestCreateCreate467283361/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.212244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.211 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:37.212245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.212 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.212247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.212 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.212481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.212486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.21249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.212 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"480.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"87e574b9-6a63-417e-92b7-d92a41017574\"}\n"} +{"Time":"2022-12-07T09:15:37.228928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.228945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.228949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.228 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"381.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"75a9df65-1d26-4ce7-a78a-89080cc214dc\"}\n"} +{"Time":"2022-12-07T09:15:37.233803+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.233817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.23382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.232 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"df5c220a-92b9-4bc6-adc6-0646682d850f\"}\n"} +{"Time":"2022-12-07T09:15:37.233824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.233 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.233826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.233 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.233828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.233 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.23383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.233 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.233832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.233 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.233842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.233 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.234724+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.234727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.234729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.234731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.234733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.234735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.234737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.234738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.234741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.235313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.235316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.237688+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.237697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.237699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.237 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"482.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"329f982f-ce92-4fee-b644-b938b5638f5b\"}\n"} +{"Time":"2022-12-07T09:15:37.254399+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.254424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.254428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.254 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"417.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"807d8ba5-cba8-431e-9fcb-4e285707b24e\"}\n"} +{"Time":"2022-12-07T09:15:37.258026+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.258035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.25804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.257 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"788b170c-fccb-43a6-b2d5-789fcdd1b27a\"}\n"} +{"Time":"2022-12-07T09:15:37.262239+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:37.26225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:37.262254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.262 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.262721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.262 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.262728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.262 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.262731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.262 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.262732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:37.262939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"request_id\": \"f5228c63-c43e-4e51-a8b5-e27696873f29\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:37.262953+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.262955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.262957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"543.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"69dbdf7a-d693-40b2-a44a-d041f313d8ee\"}\n"} +{"Time":"2022-12-07T09:15:37.263514+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:37.26352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:37.263523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.263: cmd: stdout: \"\\x1b[1A\\r✔ Queued [50ms]\"\n"} +{"Time":"2022-12-07T09:15:37.263525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.263: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:37.279214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.279231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.279234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.278 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"393.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5918c514-067e-44c3-9247-ea088c8851a3\"}\n"} +{"Time":"2022-12-07T09:15:37.282767+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.282776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.282779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.282 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"342.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7ea6031f-551f-45dc-ab5d-42b21b0d0ddf\"}\n"} +{"Time":"2022-12-07T09:15:37.283707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.283 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.283714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.283 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.283737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.283 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.283748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.283 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} +{"Time":"2022-12-07T09:15:37.285364+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.285376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.285379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.285 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.285382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.285 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.285384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.285 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.285387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.285 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.285388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.285 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.285474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.285 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.28808+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.288106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.288113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.287 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"470.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a03cf4cc-f665-4218-aacf-c8babf951dbf\"}\n"} +{"Time":"2022-12-07T09:15:37.304774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.304791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.304796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.304 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"686.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d9e487b0-0242-4da3-92be-6a116b003b8f\"}\n"} +{"Time":"2022-12-07T09:15:37.307558+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.307565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.307567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.307 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"330.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eca3b2f1-5c80-4a5b-82c7-5481cbb7adc5\"}\n"} +{"Time":"2022-12-07T09:15:37.308112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.307 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templates/eed357ed-515d-4c8d-a88b-d0b086e94d19/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"291.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"692ad575-db6f-4d64-b3ca-17f3731527e9\"}\n"} +{"Time":"2022-12-07T09:15:37.312431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.312442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.312445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.312 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"494.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"879a3861-550e-4d36-b2a5-ed5d34472bfc\"}\n"} +{"Time":"2022-12-07T09:15:37.312587+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.312599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.312602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.312 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"71.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db54c51b-85f5-4011-9d3d-3c4f792e10c8\"}\n"} +{"Time":"2022-12-07T09:15:37.312858+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:37.312864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:37.312867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.312 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.312952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.312 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.312957+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.312959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.312961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.312 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.5µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"eb6d90e6-ae08-4a24-828b-28ebb1309297\"}\n"} +{"Time":"2022-12-07T09:15:37.312976+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:37.312979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:37.312981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.312 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.313542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.313548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.31355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5af65db0-a5f3-42b7-86b7-5d47c8664bb9\"}\n"} +{"Time":"2022-12-07T09:15:37.31434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.314 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templates/eed357ed-515d-4c8d-a88b-d0b086e94d19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a16811b-be9f-465a-b6b7-b5c851349a26\"}\n"} +{"Time":"2022-12-07T09:15:37.31464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.314 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/parameters/workspace/34767030-b9eb-47fe-9010-e0d2c608a798\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f204ac04-782c-47fd-9dbe-30febad2a55e\"}\n"} +{"Time":"2022-12-07T09:15:37.315042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.314 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"901a1936-a8e7-47c5-bfee-0813b1518884\"}\n"} +{"Time":"2022-12-07T09:15:37.31552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.315 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"68a81080-7243-41fc-91ac-d78c5cf6d027\"}\n"} +{"Time":"2022-12-07T09:15:37.316227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.316 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"551.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3cf5cb2d-c80c-4766-a789-9b4a6984cfff\"}\n"} +{"Time":"2022-12-07T09:15:37.317142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.317 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b/dry-run/d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"719µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9cbe2b46-83d9-45a6-9f61-80a1e0c7ee7e\"}\n"} +{"Time":"2022-12-07T09:15:37.330507+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.330524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.330527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.330 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b3747bef-ea49-48f8-81ef-593f2b1eefaf\"}\n"} +{"Time":"2022-12-07T09:15:37.338384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.338 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.338398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.338 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.338402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.338 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.338453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.338 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} +{"Time":"2022-12-07T09:15:37.339761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.339774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.339777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.339 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"387.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dbdd9a36-bc04-4f2e-acd5-b9adfccf9b1c\"}\n"} +{"Time":"2022-12-07T09:15:37.354611+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.354628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.354631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.354 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"876.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"407c9f54-6b98-4d96-9552-77b3b370b6bc\"}\n"} +{"Time":"2022-12-07T09:15:37.355739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.355 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templates/c8c45969-f096-42e5-a0f7-839737fd0ee5/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"621.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7844b64b-f0e8-4ff3-94a8-347059234b6b\"}\n"} +{"Time":"2022-12-07T09:15:37.360264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.360 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"178.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6015732b-5883-4a44-8593-6609d425cdf7\"}\n"} +{"Time":"2022-12-07T09:15:37.360411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.360 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"69.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"603e2af2-792a-45f8-8aee-3695d295c9ad\"}\n"} +{"Time":"2022-12-07T09:15:37.361203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"523.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20cf5c14-e1b5-464a-bf39-ed9870b019ef\"}\n"} +{"Time":"2022-12-07T09:15:37.361873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templates/c8c45969-f096-42e5-a0f7-839737fd0ee5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2a8497df-444f-4145-a403-09ca8ea2c196\"}\n"} +{"Time":"2022-12-07T09:15:37.362467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/parameters/workspace/6659ddd9-73cf-448a-be3d-569447fceeae\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b9203645-42cd-4661-86cc-54e1edd03047\"}\n"} +{"Time":"2022-12-07T09:15:37.363398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"327.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da06194b-5988-4a43-a820-26aa5b2ffdac\"}\n"} +{"Time":"2022-12-07T09:15:37.363404+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:37.363406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:37.363408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.36341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.363413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.363414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.363416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:37.363418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:37.36342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"request_id\": \"f5228c63-c43e-4e51-a8b5-e27696873f29\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:37.363513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"request_id\": \"f5228c63-c43e-4e51-a8b5-e27696873f29\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:37.36355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.363804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.363: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:37.363809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.363: cmd: stdout: \"✔ Setting up [101ms]\"\n"} +{"Time":"2022-12-07T09:15:37.363813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.363: cmd: stdout: \"⧗ \\x1b[;mStarting workspace\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:37.363815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.363817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.363818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"675.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"409463d8-a2f1-4e95-b8d7-43e8f4b4d72e\"}\n"} +{"Time":"2022-12-07T09:15:37.364437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:37.364459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \" This template has customizable parameters. Values can be \"\n"} +{"Time":"2022-12-07T09:15:37.364461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \" changed after create, but may have unintended side effects\"\n"} +{"Time":"2022-12-07T09:15:37.364463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \" (like data loss). \\r\"\n"} +{"Time":"2022-12-07T09:15:37.364464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:37.364466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \"\\x1b[1mvar.region\\x1b[0m\"\n"} +{"Time":"2022-12-07T09:15:37.364468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \" description 1\"\n"} +{"Time":"2022-12-07T09:15:37.36447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:37.367351+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.367359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.367361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.367 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aae56d57-6804-4124-bc02-cf618d6607b8\"}\n"} +{"Time":"2022-12-07T09:15:37.370177+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.370199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.370202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" update_test.go:135: 2022-12-07 08:15:37.369: cmd: matched \"Enter a value (default: \\\"something\\\"):\" = \" \\r\\n This template has customizable parameters. Values can be \\r\\n changed after create, but may have unintended side effects\\r\\n (like data loss). \\r\\r\\n\\r\\n\\x1b[1mvar.region\\x1b[0m\\r\\n description 1\\r\\n\\r\\n\u003e \\x1b[1mEnter a value (default: \\\"something\\\"):\"\n"} +{"Time":"2022-12-07T09:15:37.370205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" update_test.go:136: 2022-12-07 08:15:37.369: cmd: stdin: \"bingo\\r\"\n"} +{"Time":"2022-12-07T09:15:37.370631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.370: cmd: stdout: \"\u003e \\x1b[1mEnter a value (default: \\\"something\\\"):\\x1b[0m bingo\"\n"} +{"Time":"2022-12-07T09:15:37.370635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.370: cmd: stdout: \"\\x1b[1mvar.username\\x1b[0m\"\n"} +{"Time":"2022-12-07T09:15:37.370636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.370: cmd: stdout: \" description 2\"\n"} +{"Time":"2022-12-07T09:15:37.370638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.370: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:37.376565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" update_test.go:135: 2022-12-07 08:15:37.375: cmd: matched \"Enter a value:\" = \"\\x1b[0m bingo\\r\\n\\x1b[1mvar.username\\x1b[0m\\r\\n description 2\\r\\n\\r\\n\u003e \\x1b[1mEnter a value:\"\n"} +{"Time":"2022-12-07T09:15:37.376583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" update_test.go:136: 2022-12-07 08:15:37.375: cmd: stdin: \"boingo\\r\"\n"} +{"Time":"2022-12-07T09:15:37.377515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.376: cmd: stdout: \"\u003e \\x1b[1mEnter a value:\\x1b[0m boingo\"\n"} +{"Time":"2022-12-07T09:15:37.377529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.376: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:37.378248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.458209ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"99d2185b-bb5b-48f4-813a-58e93dc7cd18\"}\n"} +{"Time":"2022-12-07T09:15:37.379012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.378: cmd: stdout: \"Planning workspace...\"\n"} +{"Time":"2022-12-07T09:15:37.379017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.378: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:37.379433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.379 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470/dry-run/f41fff73-c850-48a7-a397-053ca676c68b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"786.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a7f39029-095a-44dd-ab90-57d10e0ab886\"}\n"} +{"Time":"2022-12-07T09:15:37.388372+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.388453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.388465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.387 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"534.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"15bff1e5-3ab9-4664-925c-25d7ee876a75\"}\n"} +{"Time":"2022-12-07T09:15:37.414834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.414 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.100708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d1481cff-fd60-4cfa-ae98-76b30225c363\"}\n"} +{"Time":"2022-12-07T09:15:37.415314+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:37.415319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:37.415327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.415331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.415333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.415337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.415962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:37.415965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:37.415968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.41597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"request_id\": \"f5228c63-c43e-4e51-a8b5-e27696873f29\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:37.415972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"request_id\": \"f5228c63-c43e-4e51-a8b5-e27696873f29\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:37.416531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.416: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:37.416536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.416: cmd: stdout: \"✔ Starting workspace [51ms]\"\n"} +{"Time":"2022-12-07T09:15:37.416538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.416: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:37.439098+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.439114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.439117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.437 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f379a62f-55ec-44a0-a3d1-ad81f813916d\"}\n"} +{"Time":"2022-12-07T09:15:37.464657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.464 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"684.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"89f6fae0-e31a-4009-9b96-5caa9bd0e797\"}\n"} +{"Time":"2022-12-07T09:15:37.466057+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} +{"Time":"2022-12-07T09:15:37.466069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} +{"Time":"2022-12-07T09:15:37.466072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.465 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.466076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.466 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"c8383839-1c48-4ed2-85c8-c0437fde86c3\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:37.466252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.466 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.466257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.46627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.466272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.466 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} +{"Time":"2022-12-07T09:15:37.466346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/workspacebuilds/c8383839-1c48-4ed2-85c8-c0437fde86c3/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"300.421125ms\", \"status_code\": 101, \"latency_ms\": 300, \"request_id\": \"f5228c63-c43e-4e51-a8b5-e27696873f29\"}\n"} +{"Time":"2022-12-07T09:15:37.470431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.467 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/workspacebuilds/c8383839-1c48-4ed2-85c8-c0437fde86c3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"587.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b3240911-acc6-4a8f-acdc-33b6adbecae3\"}\n"} +{"Time":"2022-12-07T09:15:37.470442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.468 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/users/testuser/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"948.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"911b1fef-84f8-4c19-b9ce-1e0cc633ca06\"}\n"} +{"Time":"2022-12-07T09:15:37.470445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:80: 2022-12-07 08:15:37.468: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:37.470591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.470 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:37.471654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:37.471665+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.471667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.476147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.475 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"116.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2fb95c21-1fb2-4916-b9b9-c4bf49d22e85\"}\n"} +{"Time":"2022-12-07T09:15:37.477206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.476 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"47.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7f7293d1-3bb7-429a-8f6c-e9d8db999e7f\"}\n"} +{"Time":"2022-12-07T09:15:37.478857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.477 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/users/me/gitsshkey\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"684.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97207d71-e5ca-4396-b253-05952fa4c3bb\"}\n"} +{"Time":"2022-12-07T09:15:37.48206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.478 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"405.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"22c275c7-c50a-4e82-9c95-cb2974b64668\"}\n"} +{"Time":"2022-12-07T09:15:37.482071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/organizations/4a014ca8-2b92-4fb8-b14d-3c289c413d0e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"599.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"48b98d7d-cd6a-4e39-9146-41aab62e074c\"}\n"} +{"Time":"2022-12-07T09:15:37.482073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.480 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/organizations/4a014ca8-2b92-4fb8-b14d-3c289c413d0e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"884.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3e7485da-2c8c-4cef-b7fe-49ac39367631\"}\n"} +{"Time":"2022-12-07T09:15:37.482076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" gitssh_test.go:195: waiting for template version job 010c9261-dc71-49ee-a7dc-db23100f9c86\n"} +{"Time":"2022-12-07T09:15:37.492638+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.492653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.492672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.492 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"473.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"09989aaa-3d3d-4ebd-a57f-47963ccf092a\"}\n"} +{"Time":"2022-12-07T09:15:37.501936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.501 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.501952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.501 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.50262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.501 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:37.502624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.502 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.502627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.502 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.502629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.502 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.502634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.502 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"workspace_name\": \"suspicious-sutherland4\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:37.502637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.502 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.502679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.502 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.507634+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.507654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.50766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.507 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"925f0046-f95a-4a31-b209-48ad6a52fd3f\"}\n"} +{"Time":"2022-12-07T09:15:37.516938+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.516953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.516956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.516 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"422.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ee1fbb49-54c8-41d5-89cb-46cf333da6bd\"}\n"} +{"Time":"2022-12-07T09:15:37.534483+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.534502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.534506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.534 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.36725ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"70ac38f9-ce89-454e-a49c-9f85c4cf9be3\"}\n"} +{"Time":"2022-12-07T09:15:37.538627+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.538643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.538646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"335.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e525c6a0-88fb-4d14-96f7-d52264c2ed1e\"}\n"} +{"Time":"2022-12-07T09:15:37.553766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.553 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.553786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.553 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.553789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.553 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.553791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.553 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.55841+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.558418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.558421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"427.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7f901d04-1bcc-4e1a-a40b-ef7e0acfcb40\"}\n"} +{"Time":"2022-12-07T09:15:37.564923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.56504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.565049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.563 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"edd1c7e1-2e38-443d-bed7-cb937101ebe8\"}\n"} +{"Time":"2022-12-07T09:15:37.570281+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:37.570292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:37.570294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" gitssh_test.go:150: got authenticated session\n"} +{"Time":"2022-12-07T09:15:37.575585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.574 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"480.538667ms\", \"status_code\": 0, \"latency_ms\": 480, \"request_id\": \"540ca691-2fb2-4d1b-a077-1da67008b193\"}\n"} +{"Time":"2022-12-07T09:15:37.575599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.574 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"536.144291ms\", \"status_code\": 101, \"latency_ms\": 536, \"request_id\": \"c61cb385-8fc1-4937-aa48-a26f2b12d426\"}\n"} +{"Time":"2022-12-07T09:15:37.575603+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.575604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.575606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.575 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:37.576189+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} +{"Time":"2022-12-07T09:15:37.576192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} +{"Time":"2022-12-07T09:15:37.576194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.575 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:37.577022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:37.577051+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.577055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.585598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.585613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.585616+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.584 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"499.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"910272fd-221a-4b67-955b-88418652127e\"}\n"} +{"Time":"2022-12-07T09:15:37.58562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.585622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.585624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.584 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"264.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"751258dd-9cb5-4593-bbb4-fbfd8b581b42\"}\n"} +{"Time":"2022-12-07T09:15:37.585626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"74.083µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3b82496a-c153-4465-b968-f459fba7a6fa\"}\n"} +{"Time":"2022-12-07T09:15:37.586466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"404.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0bf91356-a33d-48e5-8530-7b3abd6ef81b\"}\n"} +{"Time":"2022-12-07T09:15:37.587026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/organizations/917b7d72-8e95-4d5d-8167-471e9718c46c/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"779.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"40166f34-cb07-42da-90ee-a08ab99decb5\"}\n"} +{"Time":"2022-12-07T09:15:37.587363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" configssh_test.go:669: waiting for template version job c53feb1c-f7e8-4b24-83b7-9217b74882c7\n"} +{"Time":"2022-12-07T09:15:37.590548+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.590557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.59056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.781208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3b01b852-3861-4559-8806-2a1dee78c655\"}\n"} +{"Time":"2022-12-07T09:15:37.609149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.608 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.609168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.608 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.609171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.608 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.61005+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.610075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.610081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.609 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"606.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0631c70-5034-4d92-9320-a8edab489535\"}\n"} +{"Time":"2022-12-07T09:15:37.613554+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.613584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.613592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.613 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"574.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d527a97f-9348-4c40-9d02-fd394bb2d428\"}\n"} +{"Time":"2022-12-07T09:15:37.614495+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.614517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.614524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.613 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"482.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"00a21a6b-5f70-4943-be69-1371e46135c1\"}\n"} +{"Time":"2022-12-07T09:15:37.627191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.62721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.627213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.627216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.627218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:37.62722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHLocal_SSH_Keys814253385/003/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.627222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"size_bytes\": 68, \"path\": \"/tmp/TestGitSSHLocal_SSH_Keys814253385/003/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.627224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHLocal_SSH_Keys814253385/003/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.627226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.627228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:37.632044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.631 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"430.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39aa04ea-333c-47c0-b01a-5d546dd2f488\"}\n"} +{"Time":"2022-12-07T09:15:37.63762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.637631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.637634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"393.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d5fa34be-7fdf-4ec2-8579-e4cd61a83ada\"}\n"} +{"Time":"2022-12-07T09:15:37.638502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.638518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.638521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.638 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20e1f120-8806-4747-b858-da1501e36037\"}\n"} +{"Time":"2022-12-07T09:15:37.656714+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.656739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.656744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.656 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"355.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3873fbd4-b995-4792-9f5c-330666936405\"}\n"} +{"Time":"2022-12-07T09:15:37.659569+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.659577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.65958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.659 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.659583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.659 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.659585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.659 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.659587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.659 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.659645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.659 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.662926+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.662937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.662939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.662 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b1d7a945-cc67-4572-81db-7c7275fe9d6a\"}\n"} +{"Time":"2022-12-07T09:15:37.663306+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.663323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.663329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.663 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.468458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b9963fc0-cc7f-4968-9ef3-4659fa521225\"}\n"} +{"Time":"2022-12-07T09:15:37.673545+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.673573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.673578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.673 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"16.042µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:37.677274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.676 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.677285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.677 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.681244+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.681254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.681256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.680 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:37.681882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.681887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.68189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.681 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"363.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9aa6ce2c-215a-42c0-927c-e48e7af4559f\"}\n"} +{"Time":"2022-12-07T09:15:37.687872+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.687884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.687886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.687 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"960.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f3969c70-25e3-4293-90fd-ff52e92bc29c\"}\n"} +{"Time":"2022-12-07T09:15:37.688774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.688778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.68878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.688 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"653.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62e90721-6b9f-4805-8885-35f0005979fd\"}\n"} +{"Time":"2022-12-07T09:15:37.70723+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.707256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.707259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.707 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"533.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6cbc3178-f8c4-4855-9bf6-72ddecb366cd\"}\n"} +{"Time":"2022-12-07T09:15:37.711503+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.711514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.711517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.711 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.71152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.711 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.711522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.711 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.711524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.711 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.711526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.711 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.71232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.712 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6fbf528d-a3ba-401c-a7b4-639848576288\"}\n"} +{"Time":"2022-12-07T09:15:37.713097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.713101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.713103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.713 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"312.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"700e1800-aca3-404f-b1a5-60efa7ccc5a9\"}\n"} +{"Time":"2022-12-07T09:15:37.728388+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.72841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.728414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.728421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.72843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.728433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.728435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.728436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.728502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.728551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.728561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.730994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.731001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.731003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.730 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.731073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.731 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.731126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.731 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:37.731198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.731 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.731212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.731 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"size_bytes\": 71, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.731217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.731 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"size_bytes\": 71, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.731272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.731 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.731481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.731 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:37.73285+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.732863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.732868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.732 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d04ad3a3-c879-4b39-a1fd-fc2bffd9be4b\"}\n"} +{"Time":"2022-12-07T09:15:37.738097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.738108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.738111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.738 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"307.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"76b1ef83-5273-457a-8e20-a9c5c530494b\"}\n"} +{"Time":"2022-12-07T09:15:37.739278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.739306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.739315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.739 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"359.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c2db6198-3616-4d32-bb6d-e16f69b52959\"}\n"} +{"Time":"2022-12-07T09:15:37.756985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.75701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.757013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.756 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"495µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d61b9d94-ab89-474a-a8c1-341058d6a193\"}\n"} +{"Time":"2022-12-07T09:15:37.761755+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.761765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.761792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.761 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.761894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.761 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.761933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.761 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} +{"Time":"2022-12-07T09:15:37.762268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.762 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"405.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b359d0b-27d3-4bac-bad6-a772f813e626\"}\n"} +{"Time":"2022-12-07T09:15:37.762801+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.762805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.762807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.762 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"681f1230-384d-483d-9bf9-818880828059\"}\n"} +{"Time":"2022-12-07T09:15:37.76454+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:37.764546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.764548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.764 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.709µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"0cbc2016-5f40-4b80-90af-2ad37bea92a8\"}\n"} +{"Time":"2022-12-07T09:15:37.764766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.764 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"35.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7b418345-30a6-4d41-a464-78468dcb0b5d\"}\n"} +{"Time":"2022-12-07T09:15:37.765356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/users/me/workspace/suspicious-sutherland4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a947bde5-bb28-45c7-b067-eebbc6d1f228\"}\n"} +{"Time":"2022-12-07T09:15:37.765936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspaces/45a68c83-70ba-484d-9fa1-9552e91371ff/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b6810f21-1ea3-4540-b8cf-d6892728afc5\"}\n"} +{"Time":"2022-12-07T09:15:37.766036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.766: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:37.76651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.766 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/38bff926-db52-43c9-b706-b39da94a4d02\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"388.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a0345034-daf6-46a7-9d68-153f8e9c8af4\"}\n"} +{"Time":"2022-12-07T09:15:37.779094+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.779111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.779114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.778 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.779225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.779 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.779325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.779 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.779364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.779 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.779367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.779 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.779414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.779 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.780248+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.780261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.780264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.780 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.917µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:37.782821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.782 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.782938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.782 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"92433b54-528d-4ede-bbf7-2ef9194ddc5d\", \"name\": \"agent1\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.784431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.784442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.784445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.784 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b5828227-8851-4597-9304-3cf9bce101d0\"}\n"} +{"Time":"2022-12-07T09:15:37.788793+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.788809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.788813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.788 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8cf43ef5-e2fd-4590-8cab-5bc1257fc887\"}\n"} +{"Time":"2022-12-07T09:15:37.806684+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.806703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.806706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.806 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"359.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c8d7cfb7-527d-40de-8601-beecdccb7e35\"}\n"} +{"Time":"2022-12-07T09:15:37.812982+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.812995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.812998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.812 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"372.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a972f669-16a5-4ad2-bcf4-0935266d1794\"}\n"} +{"Time":"2022-12-07T09:15:37.82958+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.829613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.829619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.829 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.829625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.829 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.829627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.829 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.830797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.830 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} +{"Time":"2022-12-07T09:15:37.833411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.833 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.333708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d0cadfbc-5000-4150-870d-99e6e9f40236\"}\n"} +{"Time":"2022-12-07T09:15:37.835238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/organizations/4a014ca8-2b92-4fb8-b14d-3c289c413d0e/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.1605ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"d7c4e5ce-d294-4a61-be21-69b3a8a9ebe9\"}\n"} +{"Time":"2022-12-07T09:15:37.835257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" gitssh_test.go:195: waiting for workspace build job 9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\n"} +{"Time":"2022-12-07T09:15:37.835837+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.835864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.835871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.835 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.835878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.835 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.835887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.835 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.835898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.835 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.835906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.835 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.836164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.835 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.83617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.836 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.836241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.836 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"92433b54-528d-4ede-bbf7-2ef9194ddc5d\", \"name\": \"agent1\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.836264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.836 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.840419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.840 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"928.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db568649-d1c5-4838-a46a-11c6e9792114\"}\n"} +{"Time":"2022-12-07T09:15:37.860935+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.860951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.860954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.860 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"424.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"38c37514-926f-416b-9a6c-a5dbaddc8251\"}\n"} +{"Time":"2022-12-07T09:15:37.863485+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.863497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.8635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.863 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"834.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"afe31ea1-5528-4e7f-b1bf-7ebe7c4a243a\"}\n"} +{"Time":"2022-12-07T09:15:37.886031+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.886049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.886052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.885 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f632276-f79a-4a1b-a128-bfde998e56ff\"}\n"} +{"Time":"2022-12-07T09:15:37.886358+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.886363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.886366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.886 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.88641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.886 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.886451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.886 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.886484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.886 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.886529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.886 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.8866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.886 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.887713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.887 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b34f294-a21b-438c-b47e-7b2f994672ab\"}\n"} +{"Time":"2022-12-07T09:15:37.91209+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.912106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.91218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.912 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"760.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c017383e-d9aa-4d4a-9475-b269daefa048\"}\n"} +{"Time":"2022-12-07T09:15:37.913975+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.913984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.913986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"503.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a25e6da-d513-40e6-bd62-8bc52857a9f3\"}\n"} +{"Time":"2022-12-07T09:15:37.92818+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.9282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.928203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} +{"Time":"2022-12-07T09:15:37.928212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} +{"Time":"2022-12-07T09:15:37.928218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:37.928527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"size_bytes\": 81, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.928542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.928545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.928547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"workspace_name\": \"my-workspace\", \"parameters\": [{\"destination_scheme\": 1, \"name\": \"region\", \"value\": \"bingo\"}, {\"destination_scheme\": 1, \"name\": \"username\", \"value\": \"boingo\"}]}\n"} +{"Time":"2022-12-07T09:15:37.92855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.928553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} +{"Time":"2022-12-07T09:15:37.936635+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.936653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.936657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.936 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"775.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"651895ba-ea99-4e4b-a053-2a941cac6097\"}\n"} +{"Time":"2022-12-07T09:15:37.937969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.937982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.937985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.937 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.938202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.937 [INFO]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:37.938222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.938 [INFO]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:37.938345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.938349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.938351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"79cd05fc-4cc3-4f21-9b1a-369ceb381fdc\"}\n"} +{"Time":"2022-12-07T09:15:37.938425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.938452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.93846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} +{"Time":"2022-12-07T09:15:37.938468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} +{"Time":"2022-12-07T09:15:37.938475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.938478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.938483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.938 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} +{"Time":"2022-12-07T09:15:37.93849+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.938493+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.938497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:37.938533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.938542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.938569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:37.938574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"workspace_name\": \"my-workspace\", \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:37.938671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:37.938677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} +{"Time":"2022-12-07T09:15:37.961103+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.961135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.96114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"621.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7d9f4ffa-91c7-436f-b8d1-7043e0d8d906\"}\n"} +{"Time":"2022-12-07T09:15:37.964498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.96451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.964684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.964 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"388.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39dee7cd-c4f1-4f9b-9ed4-afe424223ab6\"}\n"} +{"Time":"2022-12-07T09:15:37.96552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.965 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/organizations/917b7d72-8e95-4d5d-8167-471e9718c46c/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"30fdf6cd-b331-43e2-91d1-8dd12e0cfadb\"}\n"} +{"Time":"2022-12-07T09:15:37.966316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.966 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/organizations/917b7d72-8e95-4d5d-8167-471e9718c46c/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"623.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e0b90e2d-a3e0-4ba4-86d5-485ac7ef503b\"}\n"} +{"Time":"2022-12-07T09:15:37.966437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" configssh_test.go:672: waiting for workspace build job 1044911b-3084-4587-b913-51c5f1e98cab\n"} +{"Time":"2022-12-07T09:15:37.978874+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:37.978894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:37.978897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} +{"Time":"2022-12-07T09:15:37.9789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.978911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.978914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} +{"Time":"2022-12-07T09:15:37.978919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} +{"Time":"2022-12-07T09:15:37.97892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:37.97899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:37.979023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"request_id\": \"9c7d4887-49d1-4a97-ac29-c96981393b7d\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:37.979027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.979 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"request_id\": \"9c7d4887-49d1-4a97-ac29-c96981393b7d\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:37.979053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} +{"Time":"2022-12-07T09:15:37.979119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.979: cmd: stdout: \"\\x1b[1A\\r✔ Queued [549ms]\"\n"} +{"Time":"2022-12-07T09:15:37.979124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.979: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:37.979127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.979: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} +{"Time":"2022-12-07T09:15:37.979129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.979: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:37.98777+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:37.987819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:37.987838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.987 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"822.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8ec8f1a8-76d8-42c7-93a4-c06ec84d3a56\"}\n"} +{"Time":"2022-12-07T09:15:37.989593+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:37.989618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:37.989641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.989 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} +{"Time":"2022-12-07T09:15:37.989647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.989 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.989656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.989 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:37.989661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.989 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} +{"Time":"2022-12-07T09:15:37.990019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.989 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} +{"Time":"2022-12-07T09:15:37.990034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.989 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} +{"Time":"2022-12-07T09:15:37.99027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.990 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:37.990285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.990 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:37.990297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.990 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"request_id\": \"58cca5a8-811f-4cf9-8578-7bbed8e3a7b4\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:37.9903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.990 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"request_id\": \"58cca5a8-811f-4cf9-8578-7bbed8e3a7b4\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:37.99272+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:37.992733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:37.992736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.992 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"411.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7f01a02e-c4ef-4512-8cc6-53f7f3c68304\"}\n"} +{"Time":"2022-12-07T09:15:38.011982+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.012002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.012005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.011 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"402.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"45890707-785e-4b68-a0bf-f3add35e1faa\"}\n"} +{"Time":"2022-12-07T09:15:38.018033+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.01805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.018053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.017 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"765.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"51312386-4364-47f8-9c97-31862d9280a7\"}\n"} +{"Time":"2022-12-07T09:15:38.029509+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.02953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.029533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.029 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} +{"Time":"2022-12-07T09:15:38.029535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.029 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} +{"Time":"2022-12-07T09:15:38.029537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.029 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} +{"Time":"2022-12-07T09:15:38.029539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} +{"Time":"2022-12-07T09:15:38.029541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} +{"Time":"2022-12-07T09:15:38.029542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.029 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} +{"Time":"2022-12-07T09:15:38.029757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470/dry-run/f41fff73-c850-48a7-a397-053ca676c68b/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"649.022917ms\", \"status_code\": 101, \"latency_ms\": 649, \"request_id\": \"9c7d4887-49d1-4a97-ac29-c96981393b7d\"}\n"} +{"Time":"2022-12-07T09:15:38.033377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.033 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470/dry-run/f41fff73-c850-48a7-a397-053ca676c68b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.954875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b5d87940-b7c8-417a-a39c-22ee0da6afa3\"}\n"} +{"Time":"2022-12-07T09:15:38.034528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.033: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [101ms]\"\n"} +{"Time":"2022-12-07T09:15:38.034544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.034 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470/dry-run/f41fff73-c850-48a7-a397-053ca676c68b/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"727.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4abec79a-8080-4bd8-ad3c-daf73e3483be\"}\n"} +{"Time":"2022-12-07T09:15:38.035357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.034: cmd: stdout: \"┌──────────────────┐\"\n"} +{"Time":"2022-12-07T09:15:38.035365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.034: cmd: stdout: \"│ Workspace Previe │\"\n"} +{"Time":"2022-12-07T09:15:38.035368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.034: cmd: stdout: \"│ w │\"\n"} +{"Time":"2022-12-07T09:15:38.035369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.034: cmd: stdout: \"├──────────────────┤\"\n"} +{"Time":"2022-12-07T09:15:38.03537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.034: cmd: stdout: \"│ RESOURCE ACCESS │\"\n"} +{"Time":"2022-12-07T09:15:38.035372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.034: cmd: stdout: \"├──────────────────┤\"\n"} +{"Time":"2022-12-07T09:15:38.035373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.034: cmd: stdout: \"└──────────────────┘\"\n"} +{"Time":"2022-12-07T09:15:38.035822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/workspaces/6659ddd9-73cf-448a-be3d-569447fceeae/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"700.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e1ef69af-8daf-4645-bb18-6fa55c750c58\"}\n"} +{"Time":"2022-12-07T09:15:38.036425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.036429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.036432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"21a9fbed-18ab-4751-933f-6159c60c7396\"}\n"} +{"Time":"2022-12-07T09:15:38.0402+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:38.040209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:38.040212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.040 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} +{"Time":"2022-12-07T09:15:38.040215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.040 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} +{"Time":"2022-12-07T09:15:38.040216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.040 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} +{"Time":"2022-12-07T09:15:38.040218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.040 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} +{"Time":"2022-12-07T09:15:38.040566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.040 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} +{"Time":"2022-12-07T09:15:38.040573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.040 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} +{"Time":"2022-12-07T09:15:38.040576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.040 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b/dry-run/d42f2b1d-8054-477f-9d43-2149842dfc9f/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"720.017042ms\", \"status_code\": 101, \"latency_ms\": 720, \"request_id\": \"58cca5a8-811f-4cf9-8578-7bbed8e3a7b4\"}\n"} +{"Time":"2022-12-07T09:15:38.042071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.041 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b/dry-run/d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"661.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ccf5377-5c22-4fb6-bf3c-817e34b8f00d\"}\n"} +{"Time":"2022-12-07T09:15:38.042461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.042464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.042478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.042 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"17770e12-f6c0-46b7-981c-05c103b94c01\"}\n"} +{"Time":"2022-12-07T09:15:38.044549+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:38.044574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:38.04458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.043 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b/dry-run/d42f2b1d-8054-477f-9d43-2149842dfc9f/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.142167ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c7ad14e0-f76d-4559-9df4-45fb805a66ef\"}\n"} +{"Time":"2022-12-07T09:15:38.044587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.043 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/workspaces/34767030-b9eb-47fe-9010-e0d2c608a798/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"445.416µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c5e3a833-954f-4516-840b-6a0af1760a67\"}\n"} +{"Time":"2022-12-07T09:15:38.062008+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.062031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.062034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"405.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db95acca-0cff-4491-a390-3b204a791fb5\"}\n"} +{"Time":"2022-12-07T09:15:38.067532+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.067549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.067553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.067 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"393.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"84c56d30-72b3-4e9c-8eff-769116b342bf\"}\n"} +{"Time":"2022-12-07T09:15:38.088829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.089255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.089262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.087 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a4ba321c-c8b3-41ad-b07b-c6a80d1608b5\"}\n"} +{"Time":"2022-12-07T09:15:38.100844+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.10087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.100874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.092 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2e510967-600a-43be-b7d3-29617204f6b2\"}\n"} +{"Time":"2022-12-07T09:15:38.102221+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:38.102239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.102242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.102245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.102247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:38.102249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.102251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.102253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.102255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"workspace_name\": \"suspicious-sutherland4\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:38.102267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.102268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.129868+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.12998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.129987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.129 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"6.525125ms\", \"status_code\": 200, \"latency_ms\": 6, \"request_id\": \"a0264cb0-06f4-4762-aa8a-a798088044d0\"}\n"} +{"Time":"2022-12-07T09:15:38.139113+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.139131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.139259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.138 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.1532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.140 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.302375ms\", \"status_code\": 200, \"latency_ms\": 20, \"request_id\": \"0423eb62-6051-4d36-ae08-5c125139073b\"}\n"} +{"Time":"2022-12-07T09:15:38.153222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.140 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.153225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.141 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:38.153227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.141 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.15469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"size_bytes\": 71, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.154702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"size_bytes\": 71, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.154705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"workspace_name\": \"vigorous-liskov1\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:38.156017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.155 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.156237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.156 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"92433b54-528d-4ede-bbf7-2ef9194ddc5d\", \"name\": \"agent1\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.156323+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:38.156329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.156398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.155 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.156734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.156 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.158658+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.158667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.15873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"624.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"266eec81-d9af-496f-8760-69e112a34be6\"}\n"} +{"Time":"2022-12-07T09:15:38.159137+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.159144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.159147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.404667ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"ec27e70c-19c9-4ad8-8023-0f5ba1710d5e\"}\n"} +{"Time":"2022-12-07T09:15:38.159284+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:38.159288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.15929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.158 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.159294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.159 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.159356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:38.159366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"request_id\": \"f0791d6c-b44e-4a7d-a69d-f1a7c9a1e3e8\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:38.159658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.159 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.159667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.159 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.159898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.159: cmd: stdout: \"\\x1b[1A\\r✔ Queued [335ms]\"\n"} +{"Time":"2022-12-07T09:15:38.159903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.159: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:38.161538+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.161562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.161569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.161 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"543.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da51a818-4214-4c6b-a24b-308af723f482\"}\n"} +{"Time":"2022-12-07T09:15:38.168957+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.16899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.168994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.168 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a81da908-008b-447c-b4da-401a0276ccb9\"}\n"} +{"Time":"2022-12-07T09:15:38.187141+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.187162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.187165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.186 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.300375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"77d63c84-8090-4d24-a691-870d8e229ccf\"}\n"} +{"Time":"2022-12-07T09:15:38.190949+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:38.190963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:38.190966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"INTERVAL TRANSFER BANDWIDTH \"\n"} +{"Time":"2022-12-07T09:15:38.190969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"0.00-1.01 sec 1107.2963 MBits 1098.7102 Mbits/sec \"\n"} +{"Time":"2022-12-07T09:15:38.19097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"1.01-2.01 sec 1124.0735 MBits 1118.2881 Mbits/sec \"\n"} +{"Time":"2022-12-07T09:15:38.190971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"2.01-3.02 sec 1107.2963 MBits 1104.8458 Mbits/sec \"\n"} +{"Time":"2022-12-07T09:15:38.190973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"3.02-4.02 sec 956.3013 MBits 955.0054 Mbits/sec \"\n"} +{"Time":"2022-12-07T09:15:38.190974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"4.02-5.06 sec 905.9697 MBits 868.1575 Mbits/sec \"\n"} +{"Time":"2022-12-07T09:15:38.190977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"5.06-5.09 sec 16.7772 MBits 667.6558 Mbits/sec \"\n"} +{"Time":"2022-12-07T09:15:38.190978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"-----------------------------------------------------\"\n"} +{"Time":"2022-12-07T09:15:38.190979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"0.00-5.09 sec 5217.7142 MBits 1026.0495 Mbits/sec \"\n"} +{"Time":"2022-12-07T09:15:38.191274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:38.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaceagents/e10ec02a-e8c3-464a-be15-0d9f6d491e0a/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.14794425s\", \"status_code\": 101, \"latency_ms\": 5147, \"request_id\": \"e2f8810c-e657-433e-a652-e8703c2ca632\"}\n"} +{"Time":"2022-12-07T09:15:38.19148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:38.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.198302541s\", \"status_code\": 0, \"latency_ms\": 5198, \"request_id\": \"ad1cb07e-7815-46cd-96b2-e1d8a0de4e2a\"}\n"} +{"Time":"2022-12-07T09:15:38.191613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:38.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.229148917s\", \"status_code\": 0, \"latency_ms\": 5229, \"request_id\": \"9cfaeb92-600d-4733-9dbc-66bcda530e36\"}\n"} +{"Time":"2022-12-07T09:15:38.191747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:38.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.278397584s\", \"status_code\": 101, \"latency_ms\": 5278, \"request_id\": \"b6af8e97-ea4d-407d-be30-82266ade7c98\"}\n"} +{"Time":"2022-12-07T09:15:38.191944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:80: 2022-12-07 08:15:38.191: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:38.192065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:38.192 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:38.192131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.192137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.192168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.192 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"962a382a-7030-465a-9c3c-fad8ba242b17\"}\n"} +{"Time":"2022-12-07T09:15:38.19289+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} +{"Time":"2022-12-07T09:15:38.192895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} +{"Time":"2022-12-07T09:15:38.192897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:38.192902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"--- PASS: TestSpeedtest (6.94s)\n"} +{"Time":"2022-12-07T09:15:38.192904+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Elapsed":6.94} +{"Time":"2022-12-07T09:15:38.192908+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.192909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.19577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.195 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"129.166µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"91261ac0-8429-4656-9200-90167886d77a\"}\n"} +{"Time":"2022-12-07T09:15:38.195966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.195 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"51.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8c8fd2b0-da5b-44ba-a722-afe5788f1877\"}\n"} +{"Time":"2022-12-07T09:15:38.196821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.196 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"621.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9aaf8f2f-ac50-43bf-b249-f85e369f5205\"}\n"} +{"Time":"2022-12-07T09:15:38.197662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.197 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/organizations/6b1c2cf8-990c-4405-ae1d-3d1583b38128/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"613.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c9c63a01-1167-44dc-bca4-65c401df38ee\"}\n"} +{"Time":"2022-12-07T09:15:38.198047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" create_test.go:284: waiting for template version job ec2be823-036d-4d90-88c8-a39e4bad7408\n"} +{"Time":"2022-12-07T09:15:38.206635+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.206646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.206649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.206 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.206651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.206 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.206655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.206 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.206657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.206 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.210202+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:38.21025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.210263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.210274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Destroying workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.210283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.210307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.21034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:38.210348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Destroying workspace\"}\n"} +{"Time":"2022-12-07T09:15:38.210598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"request_id\": \"f0791d6c-b44e-4a7d-a69d-f1a7c9a1e3e8\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:38.21061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"request_id\": \"f0791d6c-b44e-4a7d-a69d-f1a7c9a1e3e8\", \"stage\": \"Destroying workspace\"}\n"} +{"Time":"2022-12-07T09:15:38.210613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.210661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.210: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:38.210666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.210: cmd: stdout: \"✔ Setting up [58ms]\"\n"} +{"Time":"2022-12-07T09:15:38.210668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.210: cmd: stdout: \"⧗ \\x1b[;mDestroying workspace\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:38.211837+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.211844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.211848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.211 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"635µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"81553b80-6a55-45ae-963d-bdf046eaf127\"}\n"} +{"Time":"2022-12-07T09:15:38.218801+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.218819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.218823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.218 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"665.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"205ccd9f-6e21-46b2-8858-1be53ea43b18\"}\n"} +{"Time":"2022-12-07T09:15:38.22424+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.224255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.224257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.224 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"442.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"888ce588-99e8-465a-aa8c-8c2141341938\"}\n"} +{"Time":"2022-12-07T09:15:38.236868+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.236888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.236891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.236 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"438.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9a3db6be-ce66-40a9-9bc3-e0131b6a4111\"}\n"} +{"Time":"2022-12-07T09:15:38.242424+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.242437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.242445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.242 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"427.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"769a893a-332c-43a5-86d2-e1f3530a06ea\"}\n"} +{"Time":"2022-12-07T09:15:38.249435+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.249456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.249461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.249 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"444.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5c9c430b-db44-414d-8315-6e2168c805fd\"}\n"} +{"Time":"2022-12-07T09:15:38.257809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.257826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.257829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.257 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.257915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.257 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.257932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.257 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"92433b54-528d-4ede-bbf7-2ef9194ddc5d\", \"name\": \"agent1\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.260888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:38.2609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.260902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.260 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.260906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.260 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.261217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.260 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.261245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.260 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.261252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Destroying workspace\"}\n"} +{"Time":"2022-12-07T09:15:38.261258+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.261262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.261266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"166e0e02-2376-421a-881f-f950042db070\"}\n"} +{"Time":"2022-12-07T09:15:38.261274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:38.261279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.261282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:38.261305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.261 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.261312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"request_id\": \"f0791d6c-b44e-4a7d-a69d-f1a7c9a1e3e8\", \"stage\": \"Destroying workspace\"}\n"} +{"Time":"2022-12-07T09:15:38.261317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"request_id\": \"f0791d6c-b44e-4a7d-a69d-f1a7c9a1e3e8\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:38.262267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.261: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:38.262282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.261: cmd: stdout: \"✔ Destroying workspace [51ms]\"\n"} +{"Time":"2022-12-07T09:15:38.262285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.261: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:38.262287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" delete_test.go:42: 2022-12-07 08:15:38.261: cmd: matched \"Cleaning Up\" = \"⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [335ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n \\r\\n✔ Setting up [58ms]\\r\\n⧗ \\x1b[;mDestroying workspace\\x1b[0m \\r\\n \\r\\n✔ Destroying workspace [51ms]\\r\\n⧗ \\x1b[;mCleaning Up\"\n"} +{"Time":"2022-12-07T09:15:38.267733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.267746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.267749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"379.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b9f50b74-0612-47c4-b72c-b9e10665fb31\"}\n"} +{"Time":"2022-12-07T09:15:38.274339+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.274352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.274356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.274 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"332.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f2b273c-78cc-48cb-8e24-3f0fb8469540\"}\n"} +{"Time":"2022-12-07T09:15:38.286888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.286904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.286907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.286 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"412µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1c78b051-85f9-4c8f-bee9-5d34e967e87a\"}\n"} +{"Time":"2022-12-07T09:15:38.292693+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.292709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.292713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.292 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f37f3c0b-884f-43b2-b96b-f541ba5e2abe\"}\n"} +{"Time":"2022-12-07T09:15:38.295259+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.295294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.295298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.295 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:38.29902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.298 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6887cc3a-7511-48cc-b124-16b26990239f\"}\n"} +{"Time":"2022-12-07T09:15:38.30886+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.308875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.308878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.308 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.308882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.308 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.308886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.308 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.308909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.308 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.308957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.308 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.311043+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.311051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.311068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1414976b-45bf-45dc-8e6d-02cba32fd9ee\"}\n"} +{"Time":"2022-12-07T09:15:38.311184+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} +{"Time":"2022-12-07T09:15:38.311195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.311198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.311 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.311216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.311 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.311245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.311 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.311272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.311 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.311297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.311 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} +{"Time":"2022-12-07T09:15:38.311438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.311 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/38bff926-db52-43c9-b706-b39da94a4d02/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"543.940167ms\", \"status_code\": 101, \"latency_ms\": 543, \"request_id\": \"f0791d6c-b44e-4a7d-a69d-f1a7c9a1e3e8\"}\n"} +{"Time":"2022-12-07T09:15:38.312795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.312 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/38bff926-db52-43c9-b706-b39da94a4d02\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d9aba017-4aec-4e53-aaa8-c024247d7e86\"}\n"} +{"Time":"2022-12-07T09:15:38.312953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:80: 2022-12-07 08:15:38.312: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:38.312985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.312: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [101ms]\"\n"} +{"Time":"2022-12-07T09:15:38.313011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.312 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:38.313788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:38.313798+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.313801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.316382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.316 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"120.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b3a76491-1666-486e-8dce-4fea3adcbc26\"}\n"} +{"Time":"2022-12-07T09:15:38.316608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.316 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"41.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b8b32441-c9c6-4b88-aff8-55c02037c04c\"}\n"} +{"Time":"2022-12-07T09:15:38.317316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.317 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"483.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"42eff431-4ff1-4655-8bf7-044a00d1de61\"}\n"} +{"Time":"2022-12-07T09:15:38.317666+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.31768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.317684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.317 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"477.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6ca4d242-d28a-4d5d-a1ea-85579f0b4578\"}\n"} +{"Time":"2022-12-07T09:15:38.318074+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.318078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.318093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/organizations/4aaac6c5-017b-4825-bbd6-6f278c5be46f/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"593.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b2e795c9-7f7e-4789-b586-56a03f1fd0fe\"}\n"} +{"Time":"2022-12-07T09:15:38.318225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" create_test.go:235: waiting for template version job 70dca871-c096-4c7f-ad42-777ccd59f81d\n"} +{"Time":"2022-12-07T09:15:38.324907+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.324916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.324918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.324 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"410.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b4379f3-d95c-4e74-b254-38f1b5ee7522\"}\n"} +{"Time":"2022-12-07T09:15:38.337404+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.337419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.337422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.337 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"447.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"161df952-247f-46e6-a206-337e0c52b36c\"}\n"} +{"Time":"2022-12-07T09:15:38.342452+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.342463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.342466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.342 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3309dae9-5e9a-4f10-836d-0683c1de8dbd\"}\n"} +{"Time":"2022-12-07T09:15:38.343783+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.343796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.343799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.343 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"315.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ca862f4f-a3e2-43ce-8e94-b9628d890f8c\"}\n"} +{"Time":"2022-12-07T09:15:38.343897+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:38.343908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:38.343912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.343 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.343979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.343 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.344029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.343 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:38.344048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.344 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.344071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.344 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.344093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.344 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.34411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.344 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:38.344228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.344 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.344234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.344 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.345327+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.345331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.345333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.345 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.345376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.345 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.345445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.345 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"size_bytes\": 2048}\n"} +{"Time":"2022-12-07T09:15:38.345452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.345 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"size_bytes\": 48, \"path\": \"/tmp/TestCreateFailedDryRun950971466/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.345482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.345 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFailedDryRun950971466/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.34552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.345 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.345578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.345 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"parameter_schemas\": [{\"name\": \"echo.exec\", \"description\": \"description 1\", \"default_source\": {\"value\": \"success=\"}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} +{"Time":"2022-12-07T09:15:38.353206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.353 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fb64b019-86d4-44be-98cb-4d6799831143\"}\n"} +{"Time":"2022-12-07T09:15:38.361688+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.361706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.361709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.361 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.361712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.361 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.361714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.361 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.361716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.361 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.361718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.361 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.362835+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.36285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.362854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"418.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"15406ddb-88c4-4fbd-b647-26daa8e445f0\"}\n"} +{"Time":"2022-12-07T09:15:38.367568+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.367597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.367601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.367 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cabcc0da-7eed-4227-9209-21660afa1141\"}\n"} +{"Time":"2022-12-07T09:15:38.368952+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.368961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.368963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.368 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"45d75a10-ebea-4463-b20a-0948f7435705\"}\n"} +{"Time":"2022-12-07T09:15:38.373942+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.373957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.373961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.373 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"379.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"66d55633-977c-42c0-8368-9e7848214adb\"}\n"} +{"Time":"2022-12-07T09:15:38.386878+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.386898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.386902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e3a616ba-1896-44b6-9c51-07ad406bd8d7\"}\n"} +{"Time":"2022-12-07T09:15:38.393025+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.393042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.393045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.392 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"983.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b371977-a253-4bee-958a-9ad52c377ce7\"}\n"} +{"Time":"2022-12-07T09:15:38.393824+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.393831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.393834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.393 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ca4ab56-bd32-455b-8188-f020f72e3cf3\"}\n"} +{"Time":"2022-12-07T09:15:38.39402+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.394023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.394027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.393 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.625µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:38.394969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:38.394994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:38.395001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.394 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.395008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.394 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.395014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.394 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.395019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.394 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.395024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.394 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:38.395029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.394 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"request_id\": \"0ccfc74a-fd75-4a21-aeab-c8631dd08f9f\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:38.395725+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.395736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.395741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.395 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.395845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.395 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.399131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.399 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"381.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e379b45-06e3-4be5-9947-9a86656e3f4a\"}\n"} +{"Time":"2022-12-07T09:15:38.410855+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.410873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.410877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c19c1f5d-3f16-4da1-aef6-28c8483d60ad\"}\n"} +{"Time":"2022-12-07T09:15:38.411917+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.41193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.411934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.411 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.411941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.411 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"1044911b-3084-4587-b913-51c5f1e98cab\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:38.41198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.411 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.412009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.411 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} +{"Time":"2022-12-07T09:15:38.416099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.416104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.416107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.416 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:38.417113+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.417119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.417122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.417 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"413.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e1190c55-eded-479d-baa0-d03860c63839\"}\n"} +{"Time":"2022-12-07T09:15:38.41882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.418831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.418834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.418 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"342.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5597494e-8af3-4073-9706-875146322929\"}\n"} +{"Time":"2022-12-07T09:15:38.419089+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.4191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.419102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.419 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18.792µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"e9388a1f-a547-40a3-b5a4-b5e69ba2a09b\"}\n"} +{"Time":"2022-12-07T09:15:38.419328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.419 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"83649a32-c840-4618-bbb7-3a017063110c\"}\n"} +{"Time":"2022-12-07T09:15:38.424027+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.424041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.424044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.423 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b83625b-2b15-44c5-97f1-b363ff6e733a\"}\n"} +{"Time":"2022-12-07T09:15:38.424737+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} +{"Time":"2022-12-07T09:15:38.424749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} +{"Time":"2022-12-07T09:15:38.424751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.424 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.190042ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"82c20ee1-025c-419f-8599-f4b577dd815e\"}\n"} +{"Time":"2022-12-07T09:15:38.425297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.425 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"427189fc-fdb3-49c7-ae1f-a474a42f6188\"}\n"} +{"Time":"2022-12-07T09:15:38.42545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} +{"Time":"2022-12-07T09:15:38.425457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.42546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:38.425462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.425508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" configssh_test.go:694: 2022-12-07 08:15:38.425: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} +{"Time":"2022-12-07T09:15:38.42552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" configssh_test.go:695: 2022-12-07 08:15:38.425: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:38.425526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:38.425624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.425944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} +{"Time":"2022-12-07T09:15:38.425951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"For example, try running:\"\n"} +{"Time":"2022-12-07T09:15:38.425952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.425954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"\\t$ ssh coder.vigorous-liskov1\"\n"} +{"Time":"2022-12-07T09:15:38.425957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:80: 2022-12-07 08:15:38.425: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:38.426002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.425 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:38.42714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:38.427171+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.427176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.4298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"129.666µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b00f2398-1299-4586-9e4a-fa747814d880\"}\n"} +{"Time":"2022-12-07T09:15:38.429991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"46.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"85d6164d-329a-4235-996f-abcc36b36ca1\"}\n"} +{"Time":"2022-12-07T09:15:38.430595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.430 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.334µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7549db42-dafd-4e1b-b842-ce383d708c57\"}\n"} +{"Time":"2022-12-07T09:15:38.431387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.431 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/organizations/0d9eaf0f-21c1-468a-aefe-4d9034f5d152/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"663.083µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1bb01d42-6d38-4aae-9080-c85988d0f221\"}\n"} +{"Time":"2022-12-07T09:15:38.431477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" create_test.go:193: waiting for template version job 91a5294f-6f72-4f6b-93b7-c6875587a98c\n"} +{"Time":"2022-12-07T09:15:38.436575+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.436586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.436588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.436 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8915c560-9249-45a4-ab5f-d97529d7f992\"}\n"} +{"Time":"2022-12-07T09:15:38.444376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.444382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.444392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.444 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"481.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e1540b6-7716-44cc-a1c6-9797f8c776ef\"}\n"} +{"Time":"2022-12-07T09:15:38.4451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:38.445111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:38.445114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.445189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.445213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.445 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.445918+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.445923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.445925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.445929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.445945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.445957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.44597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.445991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.446004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.446117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.446 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.446122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.446 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.450398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.450 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"610.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e28bcff2-f1be-4e12-8230-2d870e16fefd\"}\n"} +{"Time":"2022-12-07T09:15:38.457251+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.457263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.457266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5c9e387d-4f2e-4086-be37-0aa4d58e43cc\"}\n"} +{"Time":"2022-12-07T09:15:38.461124+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.461239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.461251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.461 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3aa5007b-d76c-463e-9136-f258d107dfef\"}\n"} +{"Time":"2022-12-07T09:15:38.466863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.466878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.466881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.466 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.4669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.466 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.466993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.466 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:38.467022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.466 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"size_bytes\": 81, \"path\": \"/tmp/TestCreateWithParameterFileNotContainingTheValue3759668421/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.467041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.467 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileNotContainingTheValue3759668421/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.467073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.467 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileNotContainingTheValue3759668421/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.46708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.467 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.467209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.467 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description 1\", \"default_source\": {\"value\": \"something\"}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}, {\"name\": \"username\", \"description\": \"description 2\", \"default_source\": {}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} +{"Time":"2022-12-07T09:15:38.468843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.468 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bb437381-d28f-4617-86cb-b130550962ad\"}\n"} +{"Time":"2022-12-07T09:15:38.474015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.474023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.474026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.473 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7176affc-ec6d-4ce8-8116-17865c7f3dc3\"}\n"} +{"Time":"2022-12-07T09:15:38.483176+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.483191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.483194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.483 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"796c9e6d-5deb-4b85-b478-48db146ba9cc\"}\n"} +{"Time":"2022-12-07T09:15:38.485911+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.485925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.485927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.485 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"326.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8f22d98c-8c88-4435-9d87-c669176b1fcf\"}\n"} +{"Time":"2022-12-07T09:15:38.494257+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.494272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.494276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.494 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1061edea-4cbf-4130-9b15-8cffd017ddbc\"}\n"} +{"Time":"2022-12-07T09:15:38.495463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:38.495469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:38.495472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.495482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.495487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.495491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.49555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:38.495585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:38.495632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.495635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"request_id\": \"0ccfc74a-fd75-4a21-aeab-c8631dd08f9f\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:38.495637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"request_id\": \"0ccfc74a-fd75-4a21-aeab-c8631dd08f9f\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:38.496246+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.496252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.496254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.496 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.49626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.496 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.496281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.496 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.4963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.496 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.496318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.496 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.496361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.496 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.498764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.498 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"82b0d949-ac07-4b10-b2a5-cecc38d8289d\"}\n"} +{"Time":"2022-12-07T09:15:38.507884+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.5079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.507904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.507 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39486518-e225-4829-8c1a-ebde48df7d14\"}\n"} +{"Time":"2022-12-07T09:15:38.510926+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.510938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.510941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"333.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6af34c5e-dcff-4f82-8989-b636f8f31c43\"}\n"} +{"Time":"2022-12-07T09:15:38.515393+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.515404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.515406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.515 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"11.542µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:38.517428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.517 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.517579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.517 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.518847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.518 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"307.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6deab245-5cc5-4351-86f2-c663eeeec67f\"}\n"} +{"Time":"2022-12-07T09:15:38.523899+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.52391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.523913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"294.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9b4448c7-45d7-4964-9d5d-0497a3f6c7ea\"}\n"} +{"Time":"2022-12-07T09:15:38.529101+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.529116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.529119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.529 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:38.5323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e04bbe93-be93-4c56-a512-4e603b3dccb2\"}\n"} +{"Time":"2022-12-07T09:15:38.536082+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.536096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.536099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"376.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e36055ad-b460-4423-9367-e5fcee52dff0\"}\n"} +{"Time":"2022-12-07T09:15:38.544195+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.544207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.54421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.544 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d97cf29-f993-418c-b509-cb469911e9a9\"}\n"} +{"Time":"2022-12-07T09:15:38.545877+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:38.545883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:38.545893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.545896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.545912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.545975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.545998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:38.546004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.546007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:38.546021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"request_id\": \"0ccfc74a-fd75-4a21-aeab-c8631dd08f9f\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:38.546087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.546 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"request_id\": \"0ccfc74a-fd75-4a21-aeab-c8631dd08f9f\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:38.54645+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.546455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.546457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.546 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.546469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.546 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.546479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.546 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.546514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.546 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} +{"Time":"2022-12-07T09:15:38.54867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.548 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58ff585a-8b0a-4dc4-a544-953e85f41a95\"}\n"} +{"Time":"2022-12-07T09:15:38.54911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.549 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/organizations/6b1c2cf8-990c-4405-ae1d-3d1583b38128/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"310da640-ab2f-46ce-8901-7db33fd1e28b\"}\n"} +{"Time":"2022-12-07T09:15:38.551094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"db8d4978-0dc5-41ff-a9ab-d390eaa37cbf\"}\n"} +{"Time":"2022-12-07T09:15:38.551249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49c99714-869d-4582-a9c8-ccbe3e1afecd\"}\n"} +{"Time":"2022-12-07T09:15:38.551711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"317.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"068962a9-bdcb-408b-b99f-e0e7735fbdb2\"}\n"} +{"Time":"2022-12-07T09:15:38.551862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/users/me/workspace/test\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"25µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"97c7dda5-9261-4ebd-a3a1-fa42e9b3925c\"}\n"} +{"Time":"2022-12-07T09:15:38.551992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.551: cmd: stdout: \"Select a template below to preview the provisioned infrastructure: \"\n"} +{"Time":"2022-12-07T09:15:38.557191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/organizations/6b1c2cf8-990c-4405-ae1d-3d1583b38128/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.124333ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"222f4975-e7d6-44bf-9070-38ba58168d9a\"}\n"} +{"Time":"2022-12-07T09:15:38.557572+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.557586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.557589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24a54e7d-39b8-4ca8-9558-9abfe7f78e96\"}\n"} +{"Time":"2022-12-07T09:15:38.557793+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.5578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.557802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"35068c09-d2e1-4011-9a9a-99c23080d2f4\"}\n"} +{"Time":"2022-12-07T09:15:38.558325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.558 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"adf9ae5a-8f16-450d-9dbd-cf39f67f479d\"}\n"} +{"Time":"2022-12-07T09:15:38.558459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:38.558495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \" Attempting to read the variables from the parameter file. \\r\"\n"} +{"Time":"2022-12-07T09:15:38.558497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.558501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:38.558504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \" This template has customizable parameters. Values can be \"\n"} +{"Time":"2022-12-07T09:15:38.558506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \" changed after create, but may have unintended side effects\"\n"} +{"Time":"2022-12-07T09:15:38.558508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \" (like data loss). \\r\"\n"} +{"Time":"2022-12-07T09:15:38.55851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.558514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.55912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.559 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"533.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4e17aaa0-b650-4bba-be39-6ad54fc49e60\"}\n"} +{"Time":"2022-12-07T09:15:38.559262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.559: cmd: stdout: \"Planning workspace...\"\n"} +{"Time":"2022-12-07T09:15:38.559267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.559: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:38.55982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.559 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408/dry-run/4def467b-7be9-4b42-984a-c5236507cd43\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"507.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a4c2daa-0f1e-418d-b9cb-a3fb035c7a8f\"}\n"} +{"Time":"2022-12-07T09:15:38.560701+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.560725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.56073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.560 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"331b273c-089c-44c0-8393-fca569229747\"}\n"} +{"Time":"2022-12-07T09:15:38.568382+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.568393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.568396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.5684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.568403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.568498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.568504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.568507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.568509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.568641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.568662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.568943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"433.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e469f946-4957-43f9-abae-80ec15de5715\"}\n"} +{"Time":"2022-12-07T09:15:38.58022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.58023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.580233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.580282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.580337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:38.580368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"size_bytes\": 81, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.580408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.580412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.580419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.580583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description 1\", \"default_source\": {\"value\": \"something\"}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}, {\"name\": \"username\", \"description\": \"description 2\", \"default_source\": {}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} +{"Time":"2022-12-07T09:15:38.582184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.582 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"309.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7c36dd4-ef32-414b-ba56-a1826c3ecdf1\"}\n"} +{"Time":"2022-12-07T09:15:38.586097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.58611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.586113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7854ef12-1fc1-4930-bffe-81dae4c43b99\"}\n"} +{"Time":"2022-12-07T09:15:38.593809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.59382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.593823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.593 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"277e8239-0db9-4795-ac4e-4033dad84922\"}\n"} +{"Time":"2022-12-07T09:15:38.596332+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} +{"Time":"2022-12-07T09:15:38.596337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} +{"Time":"2022-12-07T09:15:38.596339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.596 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.596372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.596 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.596411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.596 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.596424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.596 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.596464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.596 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} +{"Time":"2022-12-07T09:15:38.596675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.596 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/workspacebuilds/bb653152-7c81-4998-ac09-e9841c84c464/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"550.727625ms\", \"status_code\": 101, \"latency_ms\": 550, \"request_id\": \"0ccfc74a-fd75-4a21-aeab-c8631dd08f9f\"}\n"} +{"Time":"2022-12-07T09:15:38.597993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.597 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/users/testuser/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cfcb9f0d-46fe-4ddf-a66e-497f6e0f90a5\"}\n"} +{"Time":"2022-12-07T09:15:38.598115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.598 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:38.598996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:38.599031+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.599036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.601787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.601 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"105.709µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"16f17f16-1cc2-4303-a0ad-399a5d4ecc63\"}\n"} +{"Time":"2022-12-07T09:15:38.602096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.602 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"50.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"fae87bb6-8ea7-47b1-814f-5397faceb2b3\"}\n"} +{"Time":"2022-12-07T09:15:38.602677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.602 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8a70af32-8111-4b5a-9ea0-1c2650f0b624\"}\n"} +{"Time":"2022-12-07T09:15:38.603448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/organizations/b342410a-6ffc-46ec-89b1-7a1f653b07c7/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"529.584µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"10946ff9-a6a1-46e3-b53f-5b894cafa529\"}\n"} +{"Time":"2022-12-07T09:15:38.603538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:152: waiting for template version job cd65d9c1-e474-4155-a0a5-8ee3d958bf82\n"} +{"Time":"2022-12-07T09:15:38.608135+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.608147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.60815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.608 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"425.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e9d8befc-6875-448f-a879-1cec9c54ed4b\"}\n"} +{"Time":"2022-12-07T09:15:38.61172+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.611729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.611732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.611 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"475.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d95baec1-a040-4870-8db6-83c883b16472\"}\n"} +{"Time":"2022-12-07T09:15:38.619073+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.619087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.61909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.619 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.619093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.619 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.619099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.619 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.619131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.619 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.619145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.619 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.619238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.619 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.620384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.620 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"434.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9d50e1d8-88a5-4bda-a174-71ff0735746e\"}\n"} +{"Time":"2022-12-07T09:15:38.629295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.629311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.629314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.629 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"9.25µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:38.629696+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.629701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.629703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.629 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"326.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c783ab0e-2cbd-4fd5-8244-dda8f3ecbaed\"}\n"} +{"Time":"2022-12-07T09:15:38.629959+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.629966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.629968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.629 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.630053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.630073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:38.630109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHLocal_SSH_Keys814253385/003/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.630131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"size_bytes\": 68, \"path\": \"/tmp/TestGitSSHLocal_SSH_Keys814253385/003/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.630152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHLocal_SSH_Keys814253385/003/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.630176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"workspace_name\": \"gracious-northcutt2\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:38.63026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.630273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.630679+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.630684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.630687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.630 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.630802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.630 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.632125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2282f50e-6489-4d0d-8fbb-95c3ddd9962c\"}\n"} +{"Time":"2022-12-07T09:15:38.636053+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.636063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.636066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d2df7efc-81aa-4923-b563-d29bde6b4f90\"}\n"} +{"Time":"2022-12-07T09:15:38.64401+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.64402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.644023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.643 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57bf20f6-d970-4cc4-90db-ed9cc955af11\"}\n"} +{"Time":"2022-12-07T09:15:38.655233+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.655248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.655252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.655 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"365.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ef12d38d-b744-437e-9050-321b0fe40228\"}\n"} +{"Time":"2022-12-07T09:15:38.657083+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.657097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.6571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.657 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"41000ede-76ba-4b66-87d3-e439bdcc1790\"}\n"} +{"Time":"2022-12-07T09:15:38.661162+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.661174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.661177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"369.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f76710aa-54c0-4116-9f2a-b75606175f82\"}\n"} +{"Time":"2022-12-07T09:15:38.669387+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} +{"Time":"2022-12-07T09:15:38.669397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.6694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.669 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.669405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.669 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.669417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.669 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.669485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.669 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} +{"Time":"2022-12-07T09:15:38.669626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.669 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49f4365b-b02c-4a2b-83c9-b1ee50b4f641\"}\n"} +{"Time":"2022-12-07T09:15:38.670107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.670 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/organizations/4aaac6c5-017b-4825-bbd6-6f278c5be46f/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"53bbd75c-988e-49b2-b59c-52973f066efd\"}\n"} +{"Time":"2022-12-07T09:15:38.672137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.672 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.708µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"024341b9-49cf-4e9e-8ab6-53f588a4a1a7\"}\n"} +{"Time":"2022-12-07T09:15:38.672329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.672 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d34e5bf7-a0f3-4161-afe0-f0dcf5ae37c3\"}\n"} +{"Time":"2022-12-07T09:15:38.672799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.672 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"02e0faea-4b11-44b4-8988-87bf8d278bd4\"}\n"} +{"Time":"2022-12-07T09:15:38.672974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.672 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.167µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"013da7a8-9451-4805-8453-237813d6ae4d\"}\n"} +{"Time":"2022-12-07T09:15:38.673505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/organizations/4aaac6c5-017b-4825-bbd6-6f278c5be46f/templates/great-jemison2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"08187549-883e-43d1-8c7e-e07afeb2daa2\"}\n"} +{"Time":"2022-12-07T09:15:38.673953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"748e5c4f-7d56-40e3-b157-f57559ad4468\"}\n"} +{"Time":"2022-12-07T09:15:38.674427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"269.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ac3e7626-c6d2-4084-be32-cf1985b36f3d\"}\n"} +{"Time":"2022-12-07T09:15:38.674659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:38.67467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \" Attempting to read the variables from the parameter file. \\r\"\n"} +{"Time":"2022-12-07T09:15:38.674672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.674674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:38.674676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \" This template has customizable parameters. Values can be \"\n"} +{"Time":"2022-12-07T09:15:38.674678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \" changed after create, but may have unintended side effects\"\n"} +{"Time":"2022-12-07T09:15:38.674679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \" (like data loss). \\r\"\n"} +{"Time":"2022-12-07T09:15:38.674681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.674685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:80: 2022-12-07 08:15:38.674: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:38.674873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.674 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:38.675444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:38.67547+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.675473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.677937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.677 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"95.166µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e7503107-aada-40cd-9420-6b79a9340233\"}\n"} +{"Time":"2022-12-07T09:15:38.678147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.678 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d89808b7-c896-4dbc-868f-1c3882f136c3\"}\n"} +{"Time":"2022-12-07T09:15:38.678733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.678 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"59a8eced-af4d-4153-8737-c0b451c5ebad\"}\n"} +{"Time":"2022-12-07T09:15:38.679476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.679 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/organizations/11c9282c-985b-41b5-841f-d468db51bba6/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"507.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ca590153-d9e3-436c-b3b4-98ace08cb92a\"}\n"} +{"Time":"2022-12-07T09:15:38.67957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" create_test.go:108: waiting for template version job 67fe052d-d643-4f71-a35b-ee3efde22c3c\n"} +{"Time":"2022-12-07T09:15:38.679633+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.679636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.679638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.679 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61565d8b-34c5-487b-86fd-59ecf91e0970\"}\n"} +{"Time":"2022-12-07T09:15:38.68043+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.680435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.680437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.680441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.680456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.680473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.680833+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.680841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.680844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.680847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.680877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.680885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.680899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.680924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.680941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.681083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.681 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.681091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.681 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.683241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.683 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"060b2860-8065-4b79-b123-d4b31101b3bb\"}\n"} +{"Time":"2022-12-07T09:15:38.686659+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.68667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.686673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.686 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"487.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8d973586-9fce-44b3-804d-9527f7541f42\"}\n"} +{"Time":"2022-12-07T09:15:38.701956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.70197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.701972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.701 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:38.704316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.704 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"346.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"edfa8c91-1099-46bb-9176-b41f4bf4be62\"}\n"} +{"Time":"2022-12-07T09:15:38.705082+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.70509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.705093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"336.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"94b1543d-7f76-49d9-b4b3-7c0de6e92597\"}\n"} +{"Time":"2022-12-07T09:15:38.707045+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.707051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.707054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.707 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"279.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0f73ef84-7b19-4050-aee9-c421bf3cc0b5\"}\n"} +{"Time":"2022-12-07T09:15:38.711111+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.711122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.711125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.711 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7f6cb94d-7156-45bf-8926-86d2f0e45ed4\"}\n"} +{"Time":"2022-12-07T09:15:38.730389+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.730406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.730409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"329.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4546a161-4e12-4e5d-9819-4e1293c0bcc4\"}\n"} +{"Time":"2022-12-07T09:15:38.730415+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.730416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.730426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3992b3d0-8952-435e-8615-f211478bfe37\"}\n"} +{"Time":"2022-12-07T09:15:38.730585+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.730597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.7306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.730 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.730705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.730 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.730756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.730 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"Token\": \"12bbf2d0-6240-489e-b3b5-9fdb18a10a40\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.731273+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.731278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.731281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.731 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.731285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.731 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.731351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.731 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.731355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.731 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.731357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.731 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.731404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.731 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.732098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.732 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2873ad80-53e1-4962-829b-a450bab055e9\"}\n"} +{"Time":"2022-12-07T09:15:38.736178+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.736188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.736191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"402.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c29b6e1e-d07c-4e0d-b763-f9dfcad8a604\"}\n"} +{"Time":"2022-12-07T09:15:38.753226+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.753283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.753293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.753305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.753341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:38.75335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"size_bytes\": 81, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.753399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.753405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.75342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.753572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description 1\", \"default_source\": {\"value\": \"something\"}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}, {\"name\": \"username\", \"description\": \"description 2\", \"default_source\": {}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} +{"Time":"2022-12-07T09:15:38.754508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c089eef-1219-4d2e-9fd6-1814503b997b\"}\n"} +{"Time":"2022-12-07T09:15:38.755103+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.755112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.755114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.755 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"288.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"108a7daf-0471-4b25-831a-9330472a928d\"}\n"} +{"Time":"2022-12-07T09:15:38.757207+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.757219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.757222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"312.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f69775e6-d81a-4f75-96ba-664333a7f548\"}\n"} +{"Time":"2022-12-07T09:15:38.760926+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.760936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.760941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a576d771-c889-4816-b40b-e4ab86d392f8\"}\n"} +{"Time":"2022-12-07T09:15:38.77829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.778307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.778311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.778 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:38.779318+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.779332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.779335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.779 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ef1a3151-491a-4c01-9d9e-dba8196678c0\"}\n"} +{"Time":"2022-12-07T09:15:38.780114+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.780122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.780125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.780 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"355.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bdd720bd-08ba-49b6-b1ce-08b93f1f140f\"}\n"} +{"Time":"2022-12-07T09:15:38.780922+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.780929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.780931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.780 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.780936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.780 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.780975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.780 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.780981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.780 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.781024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.780 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.781615+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.781622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.781625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.781 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.78163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.781 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.781632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.781 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.78167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.781 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} +{"Time":"2022-12-07T09:15:38.781884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.781 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eb07d1c8-138d-4747-9e3a-bf490b39700c\"}\n"} +{"Time":"2022-12-07T09:15:38.782564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.782 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/organizations/0d9eaf0f-21c1-468a-aefe-4d9034f5d152/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bfde44c0-7f3c-4e8b-a3e0-563226be43b0\"}\n"} +{"Time":"2022-12-07T09:15:38.784742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.784 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.959µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"78f1ce6a-83eb-47bf-ad0a-19a6dde3f08f\"}\n"} +{"Time":"2022-12-07T09:15:38.784905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.784 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"556c4fd5-bb43-4cbf-a7fd-d466b076874e\"}\n"} +{"Time":"2022-12-07T09:15:38.785466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3c2d41b8-4830-4d4a-9b57-13b93e80db17\"}\n"} +{"Time":"2022-12-07T09:15:38.785596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" create_test.go:218: 2022-12-07 08:15:38.785: cmd: matched \"Specify a name\" = \"\u003e Specify a name\"\n"} +{"Time":"2022-12-07T09:15:38.785604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.785607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.785609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"307.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4aa672ba-5c2e-44e3-9591-d7db3f7d7fed\"}\n"} +{"Time":"2022-12-07T09:15:38.785612+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:38.785613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:38.785628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" create_test.go:219: 2022-12-07 08:15:38.785: cmd: stdin: \"my-workspace\\r\"\n"} +{"Time":"2022-12-07T09:15:38.785699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.785: cmd: stdout: \"\u003e Specify a name for your workspace: my-workspace\"\n"} +{"Time":"2022-12-07T09:15:38.785829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"32.334µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"b3154148-fa19-43af-9b1b-40b63ddba6b5\"}\n"} +{"Time":"2022-12-07T09:15:38.786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"21.708µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"ca14b26a-92e6-405a-a64a-896fc85800f9\"}\n"} +{"Time":"2022-12-07T09:15:38.786091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.786: cmd: stdout: \"Select a template below to preview the provisioned infrastructure: \"\n"} +{"Time":"2022-12-07T09:15:38.791268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.791 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/organizations/0d9eaf0f-21c1-468a-aefe-4d9034f5d152/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.094792ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"1bddbe46-ce6a-4850-bfd8-2bdae067ec45\"}\n"} +{"Time":"2022-12-07T09:15:38.791765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.791 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"307e6386-7fe5-4487-a884-6cf71b6659c2\"}\n"} +{"Time":"2022-12-07T09:15:38.792171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.792 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"250.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"065206b3-63fc-4d35-a046-bf3120558cb2\"}\n"} +{"Time":"2022-12-07T09:15:38.792301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:38.792307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \" Attempting to read the variables from the parameter file. \\r\"\n"} +{"Time":"2022-12-07T09:15:38.792309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.79243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:38.79244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \" This template has customizable parameters. Values can be \"\n"} +{"Time":"2022-12-07T09:15:38.792442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \" changed after create, but may have unintended side effects\"\n"} +{"Time":"2022-12-07T09:15:38.792444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \" (like data loss). \\r\"\n"} +{"Time":"2022-12-07T09:15:38.792446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.792452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.793091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.793 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6709109c-7182-48e9-afc1-fa3acef9b038\"}\n"} +{"Time":"2022-12-07T09:15:38.793247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.793: cmd: stdout: \"Planning workspace...\"\n"} +{"Time":"2022-12-07T09:15:38.793252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.793: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:38.793867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.793 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c/dry-run/67a0ee0e-4df0-409b-a655-d096c176405b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"512.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a38c7e3-8695-41a3-a816-f22764e9df01\"}\n"} +{"Time":"2022-12-07T09:15:38.800431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.800445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.800448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.800 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.209µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:38.804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.803 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.804083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.804 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.804519+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:38.804532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:38.804535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ptytest.go:103: 2022-12-07 08:15:38.804: cmd: stdout: \"\\x1b[1m\\x1b[7m%\\x1b[27m\\x1b[1m\\x1b[0m \\r \\rdirenv: unloading\\r\"\n"} +{"Time":"2022-12-07T09:15:38.804538+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.804539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.804541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"341066e7-5979-4969-a953-956cf5ec16ce\"}\n"} +{"Time":"2022-12-07T09:15:38.805056+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.805061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.805064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.805 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"285.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d31fdcf-97c5-478f-becc-33f18f94e5de\"}\n"} +{"Time":"2022-12-07T09:15:38.810967+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.810982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.810985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.810 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"437.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dca3f74a-5dd5-4998-a81c-d41c608091bb\"}\n"} +{"Time":"2022-12-07T09:15:38.819389+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:38.819406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:38.819409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.819: cmd: stdout: \"\\x1b[1m\\x1b[7m%\\x1b[27m\\x1b[1m\\x1b[0m \\r \\rdirenv: unloading\\r\"\n"} +{"Time":"2022-12-07T09:15:38.821648+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.821655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.821657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.821 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} +{"Time":"2022-12-07T09:15:38.821746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.821 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} +{"Time":"2022-12-07T09:15:38.821779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.821 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"size_bytes\": 2048}\n"} +{"Time":"2022-12-07T09:15:38.821831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.821 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"size_bytes\": 48, \"path\": \"/tmp/TestCreateFailedDryRun950971466/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.821837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.821 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFailedDryRun950971466/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.821849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.821 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"workspace_name\": \"test\", \"parameters\": [{\"destination_scheme\": 1, \"name\": \"echo.exec\", \"value\": \"error=fail\"}]}\n"} +{"Time":"2022-12-07T09:15:38.822018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.821 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} +{"Time":"2022-12-07T09:15:38.82232+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:38.822328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:38.822331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ptytest.go:103: 2022-12-07 08:15:38.822: cmd: stdout: \"\\x1b]2;mtojek@Marcin-Coder:~\\a\\x1b]1;~\\a\\r\\x1b[0m\\x1b[27m\\x1b[24m\\x1b[J\\x1b[01;32m➜ \\x1b[36m~\\x1b[00m \\x1b[K\\x1b[?1h\\x1b=\\x1b[?2004he\\bexit\\x1b[?1l\\x1b\u003e\\x1b[?2004l\\r\\r\"\n"} +{"Time":"2022-12-07T09:15:38.828745+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.828751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.828754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.828 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:38.828792+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.828804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.828807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.828 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:38.828865+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.82887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.828873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.828 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:38.828875+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.828877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.828878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.828 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:38.828882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.828883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.828884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.828 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:38.828905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"size_bytes\": 81, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.828964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.829036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.829041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": [{\"destination_scheme\": 1, \"name\": \"region\", \"value\": \"bingo\"}, {\"destination_scheme\": 1, \"name\": \"username\", \"value\": \"boingo\"}]}\n"} +{"Time":"2022-12-07T09:15:38.829045+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.829046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.829047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.828 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:38.829049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.829052+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.829053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.829054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.829 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:38.829056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.829 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.82906+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.829061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.829063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.829 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.829084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.829 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.829127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.829 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:38.829151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.829 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:38.829202+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.829204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.829205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"359.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"46e1eea0-dba7-4831-8347-8a0d8a53dc6f\"}\n"} +{"Time":"2022-12-07T09:15:38.82976+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:38.829764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:38.829767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:38.829 [INFO]\t(agent.stdlib)\t\u003cgithub.com/coder/coder/pty/pty_other.go:118\u003e\t(*otherPty).Close\tWill close...\n"} +{"Time":"2022-12-07T09:15:38.829771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:38.829 [INFO]\t(agent.stdlib)\t\u003cgithub.com/coder/coder/pty/pty_other.go:125\u003e\t(*otherPty).Close\tClosing...\n"} +{"Time":"2022-12-07T09:15:38.830086+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.830122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.830126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"290.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d3c64238-5ee5-4b5f-9e84-e3690c0da645\"}\n"} +{"Time":"2022-12-07T09:15:38.830171+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:38.830174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:38.830176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:38.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/ef5b0161-dec3-4904-9935-88d7045740b8/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.535978458s\", \"status_code\": 101, \"latency_ms\": 2535, \"request_id\": \"7f967d68-f8e3-4d29-b675-8d11074b01fe\"}\n"} +{"Time":"2022-12-07T09:15:38.830481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:38.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.587281083s\", \"status_code\": 0, \"latency_ms\": 2587, \"request_id\": \"43c9db66-1047-4f70-87a3-b3feaf76cede\"}\n"} +{"Time":"2022-12-07T09:15:38.830548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:38.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.894766542s\", \"status_code\": 101, \"latency_ms\": 2894, \"request_id\": \"10eeb44f-1472-4d31-bea7-ca6d4eaff18c\"}\n"} +{"Time":"2022-12-07T09:15:38.83063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:38.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.841497166s\", \"status_code\": 0, \"latency_ms\": 2841, \"request_id\": \"4dc7fe87-2850-4da1-9357-0b677db7b2f9\"}\n"} +{"Time":"2022-12-07T09:15:38.830748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ptytest.go:80: 2022-12-07 08:15:38.830: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:38.830791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ptytest.go:103: 2022-12-07 08:15:38.830: cmd: stdout: \"\\x1b]2;exit\\a\\x1b]1;exit\\a\"\n"} +{"Time":"2022-12-07T09:15:38.830828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:38.830 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:38.831084+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.831089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.831091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.831 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.831102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.831 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.831141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.831 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.831174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.831 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.831189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.831 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.831631+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} +{"Time":"2022-12-07T09:15:38.831639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} +{"Time":"2022-12-07T09:15:38.831641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:38.831776+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:38.83178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:38.83451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"110.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1c4cecc3-919b-43d2-8293-96ab7cec7faa\"}\n"} +{"Time":"2022-12-07T09:15:38.834735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"47µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a3e2f415-5254-431d-bc14-d2e2a6aa8a58\"}\n"} +{"Time":"2022-12-07T09:15:38.835355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.835 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"405.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"532837c6-4d40-4e25-9ef2-554a16ae527b\"}\n"} +{"Time":"2022-12-07T09:15:38.836056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/organizations/e5f2fc78-d559-42e5-bc7c-cdb358d9574e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"505.666µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"dd710809-7cf2-4ccf-a148-8946e5492855\"}\n"} +{"Time":"2022-12-07T09:15:38.836147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" create_test.go:86: waiting for template version job 9ef331ec-b2af-4b02-8664-c5e676b5f0bd\n"} +{"Time":"2022-12-07T09:15:38.836389+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.836392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.836394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"454.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e277f0f8-d29c-4f8f-8af4-2791709c4670\"}\n"} +{"Time":"2022-12-07T09:15:38.837484+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:38.837496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:38.837499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.837: cmd: stdout: \"\\x1b]2;mtojek@Marcin-Coder:~\\a\\x1b]1;~\\a\\r\\x1b[0m\\x1b[27m\\x1b[24m\\x1b[J\\x1b[01;32m➜ \\x1b[36m~\\x1b[00m \\x1b[K\\x1b[?1h\\x1b=\\x1b[?2004he\\benv\\x1b[?1l\\x1b\u003e\\x1b[?2004l\\r\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"\\x1b]2;env\\a\\x1b]1;env\\aTERM_SESSION_ID=w0t2p0:B8D487E3-BA33-4813-A469-35B11472F7F2\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"LC_TERMINAL_VERSION=3.4.16\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"COLORFGBG=15;0\\r\"\n"} +{"Time":"2022-12-07T09:15:38.84028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"ITERM_PROFILE=Default\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"XPC_FLAGS=0x0\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"SHELL=/bin/zsh\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"__CFBundleIdentifier=com.googlecode.iterm2\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"SECURITYSESSIONID=186b1\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"LC_CTYPE=UTF-8\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"TERM_PROGRAM_VERSION=3.4.16\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"TERM_PROGRAM=iTerm.app\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"LC_TERMINAL=iTerm2\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"COLORTERM=truecolor\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"COMMAND_MODE=unix2003\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"HOME=/Users/mtojek\\r\"\n"} +{"Time":"2022-12-07T09:15:38.84031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"TMPDIR=/var/folders/82/7tbcycl16pz_7rxv981qdqsh0000gn/T/\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"XPC_SERVICE_NAME=0\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"LOGNAME=mtojek\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"LaunchInstanceID=E0761908-A215-465A-96E1-F613C68107A6\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"ITERM_SESSION_ID=w0t2p0:B8D487E3-BA33-4813-A469-35B11472F7F2\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0\\r\"\n"} +{"Time":"2022-12-07T09:15:38.84037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"SHLVL=2\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"OLDPWD=/Users/mtojek\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"HOMEBREW_PREFIX=/opt/homebrew\\r\"\n"} +{"Time":"2022-12-07T09:15:38.84038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"HOMEBREW_CELLAR=/opt/homebrew/Cellar\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"HOMEBREW_REPOSITORY=/opt/homebrew\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"MANPATH=/Users/mtojek/.nvm/versions/node/v14.21.1/share/man:/opt/homebrew/share/man:/usr/share/man:/usr/local/share/man:/Users/mtojek/.nvm/versions/node/v14.21.1/share/man:/opt/homebrew/share/man:\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"INFOPATH=/opt/homebrew/share/info:/opt/homebrew/share/info:\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"NIX_PROFILES=/nix/var/nix/profiles/default /Users/mtojek/.nix-profile\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"NIX_SSL_CERT_FILE=/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"ZSH=/Users/mtojek/.oh-my-zsh\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"PAGER=less\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"LESS=-R\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"LSCOLORS=Gxfxcxdxbxegedabagacad\\r\"\n"} +{"Time":"2022-12-07T09:15:38.8404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"NVM_DIR=/Users/mtojek/.nvm\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"NVM_CD_FLAGS=-q\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"NVM_BIN=/Users/mtojek/.nvm/versions/node/v14.21.1/bin\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"NVM_INC=/Users/mtojek/.nvm/versions/node/v14.21.1/include/node\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"PATH=/Users/mtojek/.nvm/versions/node/v14.21.1/bin:/Users/mtojek/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/munki:/Users/mtojek/go/bin\\r\"\n"} +{"Time":"2022-12-07T09:15:38.84041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"PWD=/Users/mtojek\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"CODER_DONT_PASS=true\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"CODER=true\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"USER=mtojek\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"GIT_SSH_COMMAND=/tmp/go-build2871666910/b001/cli.test gitssh --\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"CODER_AGENT_TOKEN=\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"SSH_CLIENT=0.0.0.0 0 0\\r\"\n"} +{"Time":"2022-12-07T09:15:38.84043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"SSH_CONNECTION=0.0.0.0 0 0.0.0.0 0\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"VSCODE_PROXY_URI=:57062\\r\"\n"} +{"Time":"2022-12-07T09:15:38.84048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"CS_DISABLE_GETTING_STARTED_OVERRIDE=true\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"SSH_AUTH_SOCK=/tmp/auth-agent153830982/listener.sock\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"TERM=xterm-256color\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"SSH_TTY=/dev/ttys006\\r\"\n"} +{"Time":"2022-12-07T09:15:38.840489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"_=/usr/bin/env\\r\"\n"} +{"Time":"2022-12-07T09:15:38.841287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ssh_test.go:273: 2022-12-07 08:15:38.841: cmd: matched \"SSH_AUTH_SOCK=\" = \"env\\r\\n\\x1b[?25l\\r\\x1b[K\\r⠈⠁ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠑ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢀⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\x1b[?25h\\r\\x1b[Kenv\\r\\r\\n\\x1b[1m\\x1b[7m%\\x1b[27m\\x1b[1m\\x1b[0m \\r \\rdirenv: unloading\\r\\r\\n\\x1b]2;mtojek@Marcin-Coder:~\\a\\x1b]1;~\\a\\r\\x1b[0m\\x1b[27m\\x1b[24m\\x1b[J\\x1b[01;32m➜ \\x1b[36m~\\x1b[00m \\x1b[K\\x1b[?1h\\x1b=\\x1b[?2004he\\benv\\x1b[?1l\\x1b\u003e\\x1b[?2004l\\r\\r\\r\\n\\x1b]2;env\\a\\x1b]1;env\\aTERM_SESSION_ID=w0t2p0:B8D487E3-BA33-4813-A469-35B11472F7F2\\r\\r\\nLC_TERMINAL_VERSION=3.4.16\\r\\r\\nCOLORFGBG=15;0\\r\\r\\nITERM_PROFILE=Default\\r\\r\\nXPC_FLAGS=0x0\\r\\r\\nSHELL=/bin/zsh\\r\\r\\n__CFBundleI"} +{"Time":"2022-12-07T09:15:38.841298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"dentifier=com.googlecode.iterm2\\r\\r\\nSECURITYSESSIONID=186b1\\r\\r\\nLC_CTYPE=UTF-8\\r\\r\\nTERM_PROGRAM_VERSION=3.4.16\\r\\r\\nTERM_PROGRAM=iTerm.app\\r\\r\\nLC_TERMINAL=iTerm2\\r\\r\\nCOLORTERM=truecolor\\r\\r\\nCOMMAND_MODE=unix2003\\r\\r\\nHOME=/Users/mtojek\\r\\r\\nTMPDIR=/var/folders/82/7tbcycl16pz_7rxv981qdqsh0000gn/T/\\r\\r\\nXPC_SERVICE_NAME=0\\r\\r\\nLOGNAME=mtojek\\r\\r\\nLaunchInstanceID=E0761908-A215-465A-96E1-F613C68107A6\\r\\r\\nITERM_SESSION_ID=w0t2p0:B8D487E3-BA33-4813-A469-35B11472F7F2\\r\\r\\n__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0\\r\\r\\nSHLVL=2\\r\\r\\nOLDPWD=/Users/mtojek\\r\\r\\nHOMEBREW_PREFIX=/opt/homebrew\\r\\r\\nHOMEBREW_CELLAR=/opt/homebrew/Cellar\\r\\r\\nHOMEBREW_REPOSITORY=/opt/homebrew\\r\\r\\nMANPATH=/Users/mtojek/.nvm/versions/node/v14.21.1/share/man:/opt/homebrew/share/man:/usr/share/man:/usr/local/share/man:/Users/mtojek/.nvm/versions/node/v14.21.1/share/man:/opt/homebrew/share/man:\\r\\r\\nINFOPATH=/opt/homebrew/share/info:/opt/homebrew/share/info:\\r\\r\\nNIX_PROFILES=/nix/var/nix/profiles/default /Users/mtojek/.nix-profile\\r\\r\\nNIX_SS"} +{"Time":"2022-12-07T09:15:38.841308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"L_CERT_FILE=/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt\\r\\r\\nZSH=/Users/mtojek/.oh-my-zsh\\r\\r\\nPAGER=less\\r\\r\\nLESS=-R\\r\\r\\nLSCOLORS=Gxfxcxdxbxegedabagacad\\r\\r\\nNVM_DIR=/Users/mtojek/.nvm\\r\\r\\nNVM_CD_FLAGS=-q\\r\\r\\nNVM_BIN=/Users/mtojek/.nvm/versions/node/v14.21.1/bin\\r\\r\\nNVM_INC=/Users/mtojek/.nvm/versions/node/v14.21.1/include/node\\r\\r\\nPATH=/Users/mtojek/.nvm/versions/node/v14.21.1/bin:/Users/mtojek/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/munki:/Users/mtojek/go/bin\\r\\r\\nPWD=/Users/mtojek\\r\\r\\nCODER_DONT_PASS=true\\r\\r\\nCODER=true\\r\\r\\nUSER=mtojek\\r\\r\\nGIT_SSH_COMMAND=/tmp/go-build2871666910/b001/cli.test gitssh --\\r\\r\\nCODER_AGENT_TOKEN=\\r\\r\\nSSH_CLIENT=0.0.0.0 0 0\\r\\r\\nSSH_CONNECTION=0.0.0.0 0 0.0.0.0 0\\r\\r\\nVSCODE_PROXY_URI=:57062\\r\\r\\nCS_DISABLE_GETTING_STARTED_OVERRIDE=true\\r\\r\\nSSH_AUTH_SOCK=\"\n"} +{"Time":"2022-12-07T09:15:38.841315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ssh_test.go:275: 2022-12-07 08:15:38.841: cmd: stdin: \"ssh-add -L\\r\"\n"} +{"Time":"2022-12-07T09:15:38.841333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.841: cmd: stdout: \"\\x1b[1m\\x1b[7m%\\x1b[27m\\x1b[1m\\x1b[0m \\r \\rssh-add -L\"\n"} +{"Time":"2022-12-07T09:15:38.841577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.841: cmd: stdout: \"ssh-add -L\\r\"\n"} +{"Time":"2022-12-07T09:15:38.854687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.854703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.854706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.854709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.854711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.854714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.854727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.854743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.854774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.854924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.854932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.856111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.856 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"441.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e36d1072-9b0d-4594-adaa-404293858817\"}\n"} +{"Time":"2022-12-07T09:15:38.856309+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.856313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.856315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.856 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"638.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9fea0ff8-ac8d-438c-9081-0b31ac91f1ed\"}\n"} +{"Time":"2022-12-07T09:15:38.858623+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:38.858632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:38.858634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.858: cmd: stdout: \"\\x1b]2;mtojek@Marcin-Coder:~\\a\\x1b]1;~\\a\\r\\x1b[0m\\x1b[27m\\x1b[24m\\x1b[J\\x1b[01;32m➜ \\x1b[36m~\\x1b[00m \\x1b[K\\x1b[?1h\\x1b=\\x1b[?2004hs\\bssh-add -L\\x1b[?1l\\x1b\u003e\\x1b[?2004l\\r\\r\"\n"} +{"Time":"2022-12-07T09:15:38.86089+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.860899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.860902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.860 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d86794e2-84a3-41ef-bbfa-6a8bfd93a3bd\"}\n"} +{"Time":"2022-12-07T09:15:38.86156+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:38.861565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:38.86157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.861 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"254.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c79c7ea-8178-48aa-ae8c-ff8f6f3e1d85\"}\n"} +{"Time":"2022-12-07T09:15:38.869581+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:38.869592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:38.869594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.869: cmd: stdout: \"\\x1b]2;ssh-add -L\\a\\x1b]1;ssh-add\\aecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBTE5FW4g90uZ6mSS/6UJxx62ECLKhzSKz1N4Oa1XEJGP010kX3NNWdvAT7c5joojTVlOFsDHK80Q1bfrHYdZ9w= \\r\"\n"} +{"Time":"2022-12-07T09:15:38.869674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ssh_test.go:278: 2022-12-07 08:15:38.869: cmd: matched \"ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBTE5FW4g90uZ6mSS/6UJxx62ECLKhzSKz1N4Oa1XEJGP010kX3NNWdvAT7c5joojTVlOFsDHK80Q1bfrHYdZ9w=\" = \"/tmp/auth-agent153830982/listener.sock\\r\\r\\nTERM=xterm-256color\\r\\r\\nSSH_TTY=/dev/ttys006\\r\\r\\n_=/usr/bin/env\\r\\r\\n\\x1b[1m\\x1b[7m%\\x1b[27m\\x1b[1m\\x1b[0m \\r \\rssh-add -L\\r\\nssh-add -L\\r\\r\\n\\x1b]2;mtojek@Marcin-Coder:~\\a\\x1b]1;~\\a\\r\\x1b[0m\\x1b[27m\\x1b[24m\\x1b[J\\x1b[01;32m➜ \\x1b[36m~\\x1b[00m \\x1b[K\\x1b[?1h\\x1b=\\x1b[?2004hs\\bssh-add -L\\x1b[?1l\\x1b\u003e\\x1b[?2004l\\r\\r\\r\\n\\x1b]2;ssh-add -L\\a\\x1b]1;ssh-add\\aecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBTE5FW4g90uZ6mSS/6UJxx62ECLKhzSKz1N4Oa1XEJGP010kX3NNWdvAT7c5joojTVlOFsDHK80Q1bfrHYdZ9w=\"\n"} +{"Time":"2022-12-07T09:15:38.869686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ssh_test.go:281: 2022-12-07 08:15:38.869: cmd: stdin: \"exit\\r\"\n"} +{"Time":"2022-12-07T09:15:38.86969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.869: cmd: stdout: \"exit\"\n"} +{"Time":"2022-12-07T09:15:38.869945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.869: cmd: stdout: \"\\x1b[1m\\x1b[7m%\\x1b[27m\\x1b[1m\\x1b[0m \\r \\rexit\\r\"\n"} +{"Time":"2022-12-07T09:15:38.872323+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.87233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.872332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} +{"Time":"2022-12-07T09:15:38.872335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.872352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.872367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} +{"Time":"2022-12-07T09:15:38.872394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} +{"Time":"2022-12-07T09:15:38.872438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:38.872449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:186\u003e\t(*Runner).Run\tsending FailedJob\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} +{"Time":"2022-12-07T09:15:38.872457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:38.872475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"request_id\": \"c88549bc-23de-49ca-ae42-7357d09101b2\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:38.872546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"request_id\": \"c88549bc-23de-49ca-ae42-7357d09101b2\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:38.872621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.872: cmd: stdout: \"\\x1b[1A\\r✔ Queued [261ms]\"\n"} +{"Time":"2022-12-07T09:15:38.872626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.872: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:38.872641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.872: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} +{"Time":"2022-12-07T09:15:38.872645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.872: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:38.876786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.876791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.876793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.876 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.167µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:38.879157+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.87916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.879162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:38.879167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.879202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:38.879206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:38.87924+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.879243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.879246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:38.879249+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.87925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.879252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:38.879278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"request_id\": \"10ad1626-1c6d-4a6f-8e43-48f0ddf342b3\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:38.879333+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.879336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.879338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"333.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5bccecff-6978-4d1d-949e-1b1d65d24765\"}\n"} +{"Time":"2022-12-07T09:15:38.879343+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.879344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.879347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.879 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.879383+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.879394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.879397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.879: cmd: stdout: \"Output: \"\n"} +{"Time":"2022-12-07T09:15:38.880044+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.880049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.880051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"df18bace-16df-40af-9c52-8bde45920862\"}\n"} +{"Time":"2022-12-07T09:15:38.881412+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.881417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.881419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.881 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.881437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.881 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:38.881464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.881 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.881513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.881 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} +{"Time":"2022-12-07T09:15:38.886182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd03a17a-ff8d-4c53-b175-0771efd444d1\"}\n"} +{"Time":"2022-12-07T09:15:38.886687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:38.886692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:38.886695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"267.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ffcabfc5-9672-4c75-85bc-3f4048d68310\"}\n"} +{"Time":"2022-12-07T09:15:38.887811+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:38.887818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:38.88782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.887: cmd: stdout: \"\\x1b]2;mtojek@Marcin-Coder:~\\a\\x1b]1;~\\a\\r\\x1b[0m\\x1b[27m\\x1b[24m\\x1b[J\\x1b[01;32m➜ \\x1b[36m~\\x1b[00m \\x1b[K\\x1b[?1h\\x1b=\\x1b[?2004he\\bexit\\x1b[?1l\\x1b\u003e\\x1b[?2004l\\r\\r\"\n"} +{"Time":"2022-12-07T09:15:38.887927+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.887934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.887942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" gitssh_test.go:195: waiting for workspace agents (workspace e792d320-526b-4f68-a2a4-e4bd1a20fa11)\n"} +{"Time":"2022-12-07T09:15:38.894827+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} +{"Time":"2022-12-07T09:15:38.894835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} +{"Time":"2022-12-07T09:15:38.894837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:38.894 [INFO]\t(agent.stdlib)\t\u003cgithub.com/coder/coder/pty/pty_other.go:118\u003e\t(*otherPty).Close\tWill close...\n"} +{"Time":"2022-12-07T09:15:38.89484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:38.894 [INFO]\t(agent.stdlib)\t\u003cgithub.com/coder/coder/pty/pty_other.go:125\u003e\t(*otherPty).Close\tClosing...\n"} +{"Time":"2022-12-07T09:15:38.895432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:38.895 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/3a36b48a-7949-4a41-850d-2539afa4849c/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.751718417s\", \"status_code\": 101, \"latency_ms\": 2751, \"request_id\": \"fbfb2137-aa89-4974-b633-216dd52518aa\"}\n"} +{"Time":"2022-12-07T09:15:38.895601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:38.895 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.7973115s\", \"status_code\": 0, \"latency_ms\": 2797, \"request_id\": \"32b48672-fb3e-4680-a978-96b7f5df75e9\"}\n"} +{"Time":"2022-12-07T09:15:38.895712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:80: 2022-12-07 08:15:38.895: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:38.89572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:38.895 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.153823667s\", \"status_code\": 101, \"latency_ms\": 3153, \"request_id\": \"deab664b-c2df-48e1-bb69-5d50acea7f3c\"}\n"} +{"Time":"2022-12-07T09:15:38.895752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:38.895 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.103880167s\", \"status_code\": 0, \"latency_ms\": 3103, \"request_id\": \"6cc06ccf-23be-42a5-8636-792dcf26c326\"}\n"} +{"Time":"2022-12-07T09:15:38.89576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.895: cmd: stdout: \"\\x1b]2;exit\\a\\x1b]1;exit\\a\"\n"} +{"Time":"2022-12-07T09:15:38.895799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:38.895 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:38.89642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:38.896443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH","Output":"--- PASS: TestSSH (0.00s)\n"} +{"Time":"2022-12-07T09:15:38.896447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" --- PASS: TestSSH/Stdio (1.71s)\n"} +{"Time":"2022-12-07T09:15:38.896449+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Elapsed":1.71} +{"Time":"2022-12-07T09:15:38.896453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" --- PASS: TestSSH/ShowTroubleshootingURLAfterTimeout (1.82s)\n"} +{"Time":"2022-12-07T09:15:38.896455+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Elapsed":1.82} +{"Time":"2022-12-07T09:15:38.896456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" --- PASS: TestSSH/ImmediateExit (4.23s)\n"} +{"Time":"2022-12-07T09:15:38.896458+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Elapsed":4.23} +{"Time":"2022-12-07T09:15:38.89646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" --- PASS: TestSSH/ForwardAgent (4.19s)\n"} +{"Time":"2022-12-07T09:15:38.896462+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Elapsed":4.19} +{"Time":"2022-12-07T09:15:38.896463+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestSSH","Elapsed":0} +{"Time":"2022-12-07T09:15:38.896464+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier"} +{"Time":"2022-12-07T09:15:38.896466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Output":"=== CONT TestDelete/InvalidWorkspaceIdentifier\n"} +{"Time":"2022-12-07T09:15:38.900483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Output":" t.go:81: 2022-12-07 08:15:38.900 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57381\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.125µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"e8b66ed3-1fd4-42fd-bcfd-afbfa7df7971\"}\n"} +{"Time":"2022-12-07T09:15:38.900499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Output":" t.go:81: 2022-12-07 08:15:38.900 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57381\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"24.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"532e0e43-87fa-45e5-87f2-e968db52ba17\"}\n"} +{"Time":"2022-12-07T09:15:38.90105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:38.901059+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:38.901061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:38.90388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.903 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"84.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"beff6c89-44a4-4666-8b22-c60c7f23705a\"}\n"} +{"Time":"2022-12-07T09:15:38.90412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.904 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"47µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0b612221-be1d-4a09-afa6-c319fc2363d2\"}\n"} +{"Time":"2022-12-07T09:15:38.904884+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.90489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.904892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.904 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"434.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c7819d1b-3d16-4534-831a-de9cc32bc91f\"}\n"} +{"Time":"2022-12-07T09:15:38.904946+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:38.904951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:38.904959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.904 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"656.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9a01fe99-8882-4120-a52d-d23b4b229d6e\"}\n"} +{"Time":"2022-12-07T09:15:38.905244+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.905252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.905253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.905 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.905362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.905 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.905366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.905 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.905369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.905 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.90537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.905 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.905373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.905 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.90547+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:38.905476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:38.905478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.905 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"134.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4b0bc87f-9738-41f6-8ebe-4476f98484a1\"}\n"} +{"Time":"2022-12-07T09:15:38.906237+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.906244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.906246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.906 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"546.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8766ccf4-4455-46b3-be55-dafbdcbf10bb\"}\n"} +{"Time":"2022-12-07T09:15:38.906249+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:38.906251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:38.906253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.906 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"464.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3513f880-4fa5-4040-9557-73da8782a529\"}\n"} +{"Time":"2022-12-07T09:15:38.906908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.906 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"be20f311-cc75-4b4d-b37b-1713bfdf679c\"}\n"} +{"Time":"2022-12-07T09:15:38.907784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.907 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/organizations/96028bb4-e824-4dd2-98ef-89bc8d228673/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"708.083µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bf425036-0755-4107-b92d-4e35e5a23d25\"}\n"} +{"Time":"2022-12-07T09:15:38.907912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" delete_test.go:85: waiting for template version job c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\n"} +{"Time":"2022-12-07T09:15:38.913256+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:38.913265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:38.913268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"427.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ff33550-d6ca-4bb0-b507-9c1d59b93241\"}\n"} +{"Time":"2022-12-07T09:15:38.914007+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.914018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.914028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"376.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5fc6e2c8-8495-4bf0-85b9-94ee714b8f26\"}\n"} +{"Time":"2022-12-07T09:15:38.914116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:38.923044+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} +{"Time":"2022-12-07T09:15:38.923048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} +{"Time":"2022-12-07T09:15:38.92305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.922 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:470\u003e\t(*Server).FailJob\tFailJob starting\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} +{"Time":"2022-12-07T09:15:38.923056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.923 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} +{"Time":"2022-12-07T09:15:38.923084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.923 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} +{"Time":"2022-12-07T09:15:38.923101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.923 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:191\u003e\t(*Runner).Run\tsent FailedJob\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} +{"Time":"2022-12-07T09:15:38.923358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.923 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408/dry-run/4def467b-7be9-4b42-984a-c5236507cd43/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.712292ms\", \"status_code\": 101, \"latency_ms\": 362, \"request_id\": \"c88549bc-23de-49ca-ae42-7357d09101b2\"}\n"} +{"Time":"2022-12-07T09:15:38.92463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.924 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408/dry-run/4def467b-7be9-4b42-984a-c5236507cd43\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"616.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0f9eb635-5bbb-4096-b262-976b9fbf03b7\"}\n"} +{"Time":"2022-12-07T09:15:38.924769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.924: cmd: stdout: \"\\x1b[1A\\r✘ Cleaning Up [102ms]\"\n"} +{"Time":"2022-12-07T09:15:38.924823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:80: 2022-12-07 08:15:38.924: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:38.924884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.924 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:38.925544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:38.925562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:38.925565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:38.927775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:38.927 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"84µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"676deef6-da25-4c20-9488-cb8b5cfaa5b5\"}\n"} +{"Time":"2022-12-07T09:15:38.927969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:38.927 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"33.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4cf0708c-99fa-49d5-8f55-fa2cd388f394\"}\n"} +{"Time":"2022-12-07T09:15:38.928527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:38.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c80eb9d7-602a-4e1f-9484-4bee884ab1f7\"}\n"} +{"Time":"2022-12-07T09:15:38.929178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/organizations/89879752-0350-4103-8858-5ceacf36bf8c/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"477.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e25499d6-fec2-456c-9e7c-5e6455c7f92e\"}\n"} +{"Time":"2022-12-07T09:15:38.929293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" delete_test.go:51: waiting for template version job d1e0b52c-22d6-45cb-8b51-7891efed1a0e\n"} +{"Time":"2022-12-07T09:15:38.929332+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.929338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.929339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:38.929341+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.929343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.929344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:38.929347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.929385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.929421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.929435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.929438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:38.92944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:38.929442+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.929443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.929444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:38.929447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.929 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.929519+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.92952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.929522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c047f87f-0dd3-42d3-9ae8-3fbf1281434d\"}\n"} +{"Time":"2022-12-07T09:15:38.929567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.929575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.929579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:38.929582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:38.93035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.930 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a4945f61-390e-4e52-8a81-d33295b1d0f7\"}\n"} +{"Time":"2022-12-07T09:15:38.933454+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:38.93346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:38.933462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.933 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:38.934046+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:38.934053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:38.934055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.934 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e4fded7-fef5-4757-b7b9-beb58dc70ada\"}\n"} +{"Time":"2022-12-07T09:15:38.937493+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:38.937497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:38.9375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"52de0ed1-b083-4804-b820-61e30db841d4\"}\n"} +{"Time":"2022-12-07T09:15:38.938992+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.938999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.939001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.938 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5e86e84f-50f8-45f2-99ae-43b250b8e29d\"}\n"} +{"Time":"2022-12-07T09:15:38.939107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:38.955081+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:38.955086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:38.955087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:38.955 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8b361909-1614-43b6-b872-efb9a42d6648\"}\n"} +{"Time":"2022-12-07T09:15:38.955109+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.955111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.955113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.955 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"315.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db509f6c-518d-4d98-ab19-e773069f4f2c\"}\n"} +{"Time":"2022-12-07T09:15:38.955138+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.955154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.955157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.955 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cecedcb9-a39f-4b5a-89cb-ce44ed26f1eb\"}\n"} +{"Time":"2022-12-07T09:15:38.955525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.955 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.955545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.955 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.955553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.955 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.9556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.955 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} +{"Time":"2022-12-07T09:15:38.958588+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:38.958592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:38.958594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.958 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e9f3d0f8-ac6c-4c40-a5c8-65b920e0b0f4\"}\n"} +{"Time":"2022-12-07T09:15:38.961881+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:38.961888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:38.96189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"246.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1bbc37eb-da96-4696-b5b7-b87b6c3c4954\"}\n"} +{"Time":"2022-12-07T09:15:38.963523+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.963528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.96353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.963 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5854cf5a-366a-444f-bd47-0e4eb6bf836b\"}\n"} +{"Time":"2022-12-07T09:15:38.963598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:38.979643+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.97965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.979652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:38.979655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.97968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:38.979687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:38.979759+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.979763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.979766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:38.979768+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.979769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.979771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:38.979773+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.979781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.979783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.979785+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.979786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.979788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:38.979789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:38.979791+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.979792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.979793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:38.979797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:38.979799+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.9798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.979801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"request_id\": \"10ad1626-1c6d-4a6f-8e43-48f0ddf342b3\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:38.979803+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.979804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.979806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:38.979809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.979811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.979812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"request_id\": \"10ad1626-1c6d-4a6f-8e43-48f0ddf342b3\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:38.979814+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.979815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.979817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:38.979918+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:38.979922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.979924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.979: cmd: stdout: \"Output: \"\n"} +{"Time":"2022-12-07T09:15:38.979926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.979: cmd: stdout: \"Output: \"\n"} +{"Time":"2022-12-07T09:15:38.98007+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:38.980074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:38.980075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.980 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"286.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06dfb8e4-d773-4300-b3cc-a426c353f9be\"}\n"} +{"Time":"2022-12-07T09:15:38.980133+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:38.980139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:38.980141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:38.980 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"316.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c12674a-2af6-4638-8da5-76e0d5fcaf30\"}\n"} +{"Time":"2022-12-07T09:15:38.980146+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.980147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.980148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.980 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"264.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"465c054c-6e43-40f5-98f1-5cc28db019e0\"}\n"} +{"Time":"2022-12-07T09:15:38.980614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.980 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/organizations/b342410a-6ffc-46ec-89b1-7a1f653b07c7/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c0d1e2c7-dbc7-4596-9ae7-543f625d67f8\"}\n"} +{"Time":"2022-12-07T09:15:38.982699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.291µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"c190a8f0-0b50-46eb-bd6d-b91efe3b69aa\"}\n"} +{"Time":"2022-12-07T09:15:38.982881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"28ac3e78-4adb-4b55-8c4d-3267382837bf\"}\n"} +{"Time":"2022-12-07T09:15:38.983282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:38.983288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:38.98329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da5e2e36-0070-49d7-9250-e4e85bb8abc2\"}\n"} +{"Time":"2022-12-07T09:15:38.983328+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.983334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.983336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6445d338-fa9e-4286-8a09-018597326d6d\"}\n"} +{"Time":"2022-12-07T09:15:38.983446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:175: 2022-12-07 08:15:38.983: cmd: matched \"Specify a name\" = \"\u003e Specify a name\"\n"} +{"Time":"2022-12-07T09:15:38.983457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:176: 2022-12-07 08:15:38.983: cmd: stdin: \"my-workspace\\r\"\n"} +{"Time":"2022-12-07T09:15:38.983487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.983: cmd: stdout: \"\u003e Specify a name for your workspace: my-workspace\"\n"} +{"Time":"2022-12-07T09:15:38.983584+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:38.983589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:38.983591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:38.983602+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.983607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.983608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"81d1fb99-a7e4-47b4-ad81-0e0cc640ac17\"}\n"} +{"Time":"2022-12-07T09:15:38.983648+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:38.983652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:38.983653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:38.983686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:38.983725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.98375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.983796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:38.983805+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.983807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.983809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.625µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"dd7f8b63-88c4-47b1-8b3e-282bef25f6b9\"}\n"} +{"Time":"2022-12-07T09:15:38.983811+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:38.983813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:38.983815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:38.983865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:38.983904+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.983907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.983908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.983: cmd: stdout: \"Select a template below to preview the provisioned infrastructure: \"\n"} +{"Time":"2022-12-07T09:15:38.986865+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:38.986869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:38.986874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.986 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06b9c088-254b-4c61-944f-aba05e3e1710\"}\n"} +{"Time":"2022-12-07T09:15:38.988476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:38.98848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:38.988482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.988 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"304.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8f375808-25d8-437b-a0a7-c5a8e6512571\"}\n"} +{"Time":"2022-12-07T09:15:38.988552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:38.98898+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:38.988984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:38.988986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.988 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/organizations/b342410a-6ffc-46ec-89b1-7a1f653b07c7/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"4.997084ms\", \"status_code\": 200, \"latency_ms\": 4, \"request_id\": \"7dff9b43-9fd1-4e22-bbdb-f84cc4593e72\"}\n"} +{"Time":"2022-12-07T09:15:38.989408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.989 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"256.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e121140-9e60-4cab-8e42-d5d08d068384\"}\n"} +{"Time":"2022-12-07T09:15:38.989853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.989 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"246.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7fd8fc4e-3ab0-4370-bc8c-f12b345eb431\"}\n"} +{"Time":"2022-12-07T09:15:38.989985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.989: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:38.989992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.989: cmd: stdout: \" This template has customizable parameters. Values can be \"\n"} +{"Time":"2022-12-07T09:15:38.989995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.989: cmd: stdout: \" changed after create, but may have unintended side effects\"\n"} +{"Time":"2022-12-07T09:15:38.989996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.989: cmd: stdout: \" (like data loss). \\r\"\n"} +{"Time":"2022-12-07T09:15:38.989999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.989: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.990001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.989: cmd: stdout: \"\\x1b[1mvar.region\\x1b[0m\"\n"} +{"Time":"2022-12-07T09:15:38.990003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \" description 1\"\n"} +{"Time":"2022-12-07T09:15:38.990007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.990072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:175: 2022-12-07 08:15:38.990: cmd: matched \"Enter a value (default: \\\"something\\\"):\" = \" for your workspace: my-workspace\\r\\nSelect a template below to preview the provisioned infrastructure: \\r\\n \\r\\n This template has customizable parameters. Values can be \\r\\n changed after create, but may have unintended side effects\\r\\n (like data loss). \\r\\r\\n\\r\\n\\x1b[1mvar.region\\x1b[0m\\r\\n description 1\\r\\n\\r\\n\u003e \\x1b[1mEnter a value (default: \\\"something\\\"):\"\n"} +{"Time":"2022-12-07T09:15:38.990079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:176: 2022-12-07 08:15:38.990: cmd: stdin: \"bingo\\r\"\n"} +{"Time":"2022-12-07T09:15:38.9901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"\u003e \\x1b[1mEnter a value (default: \\\"something\\\"):\\x1b[0m bingo\"\n"} +{"Time":"2022-12-07T09:15:38.99011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"\\x1b[1mvar.username\\x1b[0m\"\n"} +{"Time":"2022-12-07T09:15:38.990113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \" description 2\"\n"} +{"Time":"2022-12-07T09:15:38.990115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.990137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:175: 2022-12-07 08:15:38.990: cmd: matched \"Enter a value:\" = \"\\x1b[0m bingo\\r\\n\\x1b[1mvar.username\\x1b[0m\\r\\n description 2\\r\\n\\r\\n\u003e \\x1b[1mEnter a value:\"\n"} +{"Time":"2022-12-07T09:15:38.990146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:176: 2022-12-07 08:15:38.990: cmd: stdin: \"boingo\\r\"\n"} +{"Time":"2022-12-07T09:15:38.990178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"\u003e \\x1b[1mEnter a value:\\x1b[0m boingo\"\n"} +{"Time":"2022-12-07T09:15:38.990182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:38.990752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.990 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"477.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"38f7a38f-c52e-4fda-82f4-2a1ad7f29bb5\"}\n"} +{"Time":"2022-12-07T09:15:38.990826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"Planning workspace...\"\n"} +{"Time":"2022-12-07T09:15:38.990834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:38.991393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.991 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82/dry-run/5e934427-70eb-4d40-b29a-c23088905098\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"469.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7c70f5e5-94c6-41b4-a28f-e8ea3c4ae365\"}\n"} +{"Time":"2022-12-07T09:15:39.00338+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.003384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.003386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.003 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:39.004774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.004779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.004781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.004 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"238.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d21dce15-e64b-4c2c-bc28-184544f1daba\"}\n"} +{"Time":"2022-12-07T09:15:39.004989+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.004993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.004994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.004 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"240.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"509c2b08-6951-4d59-92f2-cf9da72a5600\"}\n"} +{"Time":"2022-12-07T09:15:39.008282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.008286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.008288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.008 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"233.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b2da013c-b019-4823-9168-cdacda4d2232\"}\n"} +{"Time":"2022-12-07T09:15:39.011913+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.011918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.01192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.011 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"226.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ec3eefaf-6516-4e05-8b5b-6d92b5eb1444\"}\n"} +{"Time":"2022-12-07T09:15:39.013479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.013484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.013486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.013 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f234a548-f8c4-48e9-90c8-d93e935294f9\"}\n"} +{"Time":"2022-12-07T09:15:39.013583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:39.028084+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.028088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.028091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.028 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:39.029833+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:39.029838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.02984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:39.029857+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.029859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.029862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"257.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0530a00f-d9bd-4e4c-9a97-950f49d8de31\"}\n"} +{"Time":"2022-12-07T09:15:39.029932+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:39.029935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.029936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.029939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:39.029941+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.029942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.029943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33f99960-dc7a-4079-a0b0-a071fa7ad9fb\"}\n"} +{"Time":"2022-12-07T09:15:39.029946+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:39.029947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.029948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:39.029952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:39.029953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:39.029984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:39.02999+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.029992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.029993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:39.029996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:39.029998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.030006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"request_id\": \"10ad1626-1c6d-4a6f-8e43-48f0ddf342b3\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:39.03001+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.030011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.030013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:39.030016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.030 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:39.030054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:39.030065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.030067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.030 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"request_id\": \"10ad1626-1c6d-4a6f-8e43-48f0ddf342b3\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:39.030071+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.030072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.030074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.030 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} +{"Time":"2022-12-07T09:15:39.030136+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:39.030138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.03014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.030: cmd: stdout: \"Output: \"\n"} +{"Time":"2022-12-07T09:15:39.030141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.030: cmd: stdout: \"Output: \"\n"} +{"Time":"2022-12-07T09:15:39.033155+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.03316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.033163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.033 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.083µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:39.033514+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.03352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.033522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.033 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"245.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a618ab98-2337-4c82-b7f5-13d763bed215\"}\n"} +{"Time":"2022-12-07T09:15:39.033919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.033923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.033925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.033 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:39.034025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.033 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.036882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"243.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"67db1dc5-fdd0-4592-a666-35da0937c7d9\"}\n"} +{"Time":"2022-12-07T09:15:39.038451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.038458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.03846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.038 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a7a81ab7-eff7-42a6-9a41-7335051bd7ac\"}\n"} +{"Time":"2022-12-07T09:15:39.038559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:39.054513+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.054534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.054539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.054546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.054573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:39.054614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.054619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.054645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.054651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.054708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:39.054858+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.054863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.054865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.054 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"375698bd-f0ac-4034-8fee-7da5c27718e3\"}\n"} +{"Time":"2022-12-07T09:15:39.055022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.055027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.055029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.054 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd2fd091-fb81-48aa-acd4-708802818bd0\"}\n"} +{"Time":"2022-12-07T09:15:39.055457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.055 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/organizations/11c9282c-985b-41b5-841f-d468db51bba6/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"074814c0-8205-43c9-99e9-e9b75dc46fd6\"}\n"} +{"Time":"2022-12-07T09:15:39.057303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.958µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"cc7d97db-2b7f-49fe-b9c2-bc9118ca8367\"}\n"} +{"Time":"2022-12-07T09:15:39.05744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"715aaed2-ad2a-4c6d-a2df-c08b9e8fdf71\"}\n"} +{"Time":"2022-12-07T09:15:39.057856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"252.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3c01db0-73a1-4021-b363-012d268ba721\"}\n"} +{"Time":"2022-12-07T09:15:39.057962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" create_test.go:128: 2022-12-07 08:15:39.057: cmd: matched \"Specify a name\" = \"\u003e Specify a name\"\n"} +{"Time":"2022-12-07T09:15:39.057968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" create_test.go:129: 2022-12-07 08:15:39.057: cmd: stdin: \"my-workspace\\r\"\n"} +{"Time":"2022-12-07T09:15:39.058044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.058: cmd: stdout: \"\u003e Specify a name for your workspace: my-workspace\"\n"} +{"Time":"2022-12-07T09:15:39.05813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.375µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"a40506f6-5267-4892-8803-e52b7c1e519b\"}\n"} +{"Time":"2022-12-07T09:15:39.058312+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.058318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.05832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ca78302-ead0-4034-b51e-800bea01845e\"}\n"} +{"Time":"2022-12-07T09:15:39.058346+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.058351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.058353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.5µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"57e87aa3-9ea2-4adc-8e4f-449f47e4f467\"}\n"} +{"Time":"2022-12-07T09:15:39.05845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.058: cmd: stdout: \"Select a template below to preview the provisioned infrastructure: \"\n"} +{"Time":"2022-12-07T09:15:39.061823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.061827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.061829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"255.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b9d02814-e322-43e8-a344-ed4b643be013\"}\n"} +{"Time":"2022-12-07T09:15:39.063354+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.063358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.06336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.063 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/organizations/11c9282c-985b-41b5-841f-d468db51bba6/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"4.838667ms\", \"status_code\": 200, \"latency_ms\": 4, \"request_id\": \"a3877544-0bb5-4c9f-8bc4-d8187d2653d2\"}\n"} +{"Time":"2022-12-07T09:15:39.063427+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.063434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.063437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.063 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f63c269-a4cf-4bb8-a278-19de25bddb12\"}\n"} +{"Time":"2022-12-07T09:15:39.063533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:39.063774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.063779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.063784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.063 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"264µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"303fbdde-041b-45d9-877a-0d02cab5107a\"}\n"} +{"Time":"2022-12-07T09:15:39.064147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.064 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"230.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c7a7a84b-bd9d-4ea4-89cb-3da44f5f70df\"}\n"} +{"Time":"2022-12-07T09:15:39.064226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.064: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:39.06471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.064 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"425.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ff29b921-98b0-4c67-aa03-69654fdc0e10\"}\n"} +{"Time":"2022-12-07T09:15:39.064813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.064: cmd: stdout: \"Planning workspace...\"\n"} +{"Time":"2022-12-07T09:15:39.064817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.064: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:39.065344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.065 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c/dry-run/f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3d3d170b-8dd6-425b-9eb3-434b61a94fbc\"}\n"} +{"Time":"2022-12-07T09:15:39.079193+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.079197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.079199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.079246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.079298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:39.079325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.079369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.079376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.07938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.079441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:39.079655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"228.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b3f46f88-2f4d-463a-8446-03559e20cc51\"}\n"} +{"Time":"2022-12-07T09:15:39.080078+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} +{"Time":"2022-12-07T09:15:39.080081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.080083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.080 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:39.08011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.080 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:39.080128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.080 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:39.080154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.080 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:39.080178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.080 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} +{"Time":"2022-12-07T09:15:39.08031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:80: 2022-12-07 08:15:39.080: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:39.080344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.080 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/workspacebuilds/d1a3d23d-ef39-477e-a036-414c8eacac65/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.043133125s\", \"status_code\": 101, \"latency_ms\": 1043, \"request_id\": \"10ad1626-1c6d-4a6f-8e43-48f0ddf342b3\"}\n"} +{"Time":"2022-12-07T09:15:39.080351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.080 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:39.08106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:39.081104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate","Output":"--- PASS: TestUpdate (0.00s)\n"} +{"Time":"2022-12-07T09:15:39.081107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs","Output":" --- PASS: TestUpdate/NoArgs (0.00s)\n"} +{"Time":"2022-12-07T09:15:39.081111+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs","Elapsed":0} +{"Time":"2022-12-07T09:15:39.081113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" --- PASS: TestUpdate/OK (3.66s)\n"} +{"Time":"2022-12-07T09:15:39.081115+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Elapsed":3.66} +{"Time":"2022-12-07T09:15:39.081118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" --- PASS: TestUpdate/WithParameter (4.15s)\n"} +{"Time":"2022-12-07T09:15:39.081126+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Elapsed":4.15} +{"Time":"2022-12-07T09:15:39.081127+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUpdate","Elapsed":0} +{"Time":"2022-12-07T09:15:39.081129+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.08113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.083339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"95.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4c61effc-7a48-4e6e-bffb-c3af7badd50c\"}\n"} +{"Time":"2022-12-07T09:15:39.083579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7d808145-b7ef-4c70-b003-a55a1b164103\"}\n"} +{"Time":"2022-12-07T09:15:39.084023+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.08403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.084031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"365.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bfb9a4e1-5913-4898-9eee-17edc0fbde75\"}\n"} +{"Time":"2022-12-07T09:15:39.084073+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.084079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.084081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:39.084083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.084087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.084091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.084108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.084124+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.084127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.084129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"379.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"de329812-8539-4ce1-976b-7cbe4d6006ca\"}\n"} +{"Time":"2022-12-07T09:15:39.084132+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.084134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.084135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:39.084148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:39.084236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.084257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:39.084743+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.084747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.084755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/organizations/9bb32d6f-8a82-418b-a77a-831720885c3e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3c19524c-e66b-4b20-82b8-5f60a6bc9918\"}\n"} +{"Time":"2022-12-07T09:15:39.08482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" configssh_test.go:669: waiting for template version job 99c7b150-83e5-4c52-9b93-dc2cf0382e89\n"} +{"Time":"2022-12-07T09:15:39.087226+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.08723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.087232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.087 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d34efea9-156c-4f7d-b6df-67b17d9b62be\"}\n"} +{"Time":"2022-12-07T09:15:39.088927+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.088932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.088933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.088 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"365.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c843a461-6d65-4d12-9887-846c3f6e2616\"}\n"} +{"Time":"2022-12-07T09:15:39.08902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:39.102237+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.102243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.102245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.102 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"5.666µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:39.104778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.104 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.104885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.104 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.105837+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.105841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.105843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5aeb8def-6098-4916-bb0b-48ec2bcf3b32\"}\n"} +{"Time":"2022-12-07T09:15:39.108528+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.108534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.108536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.108 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"234.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"34b410c0-b4d5-4590-8a09-ac7c44320057\"}\n"} +{"Time":"2022-12-07T09:15:39.110329+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.110333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.110337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.110 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"227.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"68d36a73-b1b8-41a4-b959-6b2628d21893\"}\n"} +{"Time":"2022-12-07T09:15:39.111623+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.111627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.111628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"213.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0f5b54c9-ac6e-49c4-92c8-da4ed5d6db86\"}\n"} +{"Time":"2022-12-07T09:15:39.113481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.113485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.113487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.113 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"260.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f278646-a1d5-4381-94d4-13e1729e0f42\"}\n"} +{"Time":"2022-12-07T09:15:39.11359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:39.12641+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.126416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.126418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.126 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"3.667µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:39.129716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.129 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.129857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.129 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.130123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.130 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"269.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2a681295-4275-4245-8ef2-09280deb2f54\"}\n"} +{"Time":"2022-12-07T09:15:39.133729+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.133734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.133736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.133 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"283.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b08d36d4-c711-4f8d-a6f2-6703788dff68\"}\n"} +{"Time":"2022-12-07T09:15:39.134368+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.134371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.134373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.134 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:39.134391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.134 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.134395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.134 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.134423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.134 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:39.134465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.134 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:39.134524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.134 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:39.135236+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.135241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.135243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.135 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"240.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96ed48a0-1820-4721-ad14-d5d7e47fb748\"}\n"} +{"Time":"2022-12-07T09:15:39.136643+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.136647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.136649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"244.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"297ba363-d213-4744-9dac-9d146ebc4513\"}\n"} +{"Time":"2022-12-07T09:15:39.138484+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.138487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.138494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.138 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"275.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"285b336c-6cb4-47ac-a216-6d888c70fb9e\"}\n"} +{"Time":"2022-12-07T09:15:39.138587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:39.155422+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.155429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.155431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.155511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.155516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.155519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.155521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.155524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.155538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.155638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.155652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.155851+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.155855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.155857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31558757-5ebb-435c-bfcc-d5f4f9b3cd9d\"}\n"} +{"Time":"2022-12-07T09:15:39.158533+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.158536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.158538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"237.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39b1d6de-a86e-4b5d-823c-5c4445a76362\"}\n"} +{"Time":"2022-12-07T09:15:39.16038+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.160384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.160386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.160 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"264.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e1c057a5-9886-4ee7-b1e7-caceb035b83a\"}\n"} +{"Time":"2022-12-07T09:15:39.161634+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.161638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.16164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.161 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"253.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cf7af371-492f-42a5-861a-0dd8437c6a0e\"}\n"} +{"Time":"2022-12-07T09:15:39.163551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.163557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.163559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.163 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a6b14046-4c13-4bfd-b42d-a3eb9a9b622e\"}\n"} +{"Time":"2022-12-07T09:15:39.163683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:39.180463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.180468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.18047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.18051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.180534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.180551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.180562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.180567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.180603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.180666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.180682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.180898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8bb43ec7-6e77-407b-b1b6-762adf12b4e1\"}\n"} +{"Time":"2022-12-07T09:15:39.182893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.182903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.182906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.182 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:39.183371+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.183376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.183378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.183 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"282.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"19f03f84-801d-4ff8-9f76-8fcebe0e41e4\"}\n"} +{"Time":"2022-12-07T09:15:39.184735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.184739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.184741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.184 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:39.184745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.184 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:39.184762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.184 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:39.184789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.184 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} +{"Time":"2022-12-07T09:15:39.185272+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.185277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.185279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6f4e6737-fb48-4c99-a0ce-b7a5ba617973\"}\n"} +{"Time":"2022-12-07T09:15:39.186657+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.186662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.186664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.186 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"267.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae158c38-4363-4233-bf95-d3f83644eb1c\"}\n"} +{"Time":"2022-12-07T09:15:39.187147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.187 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/organizations/e5f2fc78-d559-42e5-bc7c-cdb358d9574e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b7d8832b-4ac2-4acd-8638-34b986a53916\"}\n"} +{"Time":"2022-12-07T09:15:39.188452+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.188457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.188459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.188 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"316.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f0c73c2b-cba0-4a08-9855-8a50a44df72c\"}\n"} +{"Time":"2022-12-07T09:15:39.188595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:39.189556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.189561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.189569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.189 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"553.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8dd838e4-0f2e-4f1d-816c-b7aade63abd1\"}\n"} +{"Time":"2022-12-07T09:15:39.189796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.189 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"35.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d328c9e3-b5ef-48e8-8e7b-5139f39b3858\"}\n"} +{"Time":"2022-12-07T09:15:39.190365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.190 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.291µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"4303d32c-b951-432a-81f7-1d1c9d071bd1\"}\n"} +{"Time":"2022-12-07T09:15:39.190631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.190 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad4ec996-00c4-48e8-af62-d13a7938c034\"}\n"} +{"Time":"2022-12-07T09:15:39.191114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a7b8e9f-1cfd-41d4-8871-90b44495e10e\"}\n"} +{"Time":"2022-12-07T09:15:39.191576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"25.833µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"e738fdae-f48a-4849-9d50-1cd59853a80e\"}\n"} +{"Time":"2022-12-07T09:15:39.198323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.198 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/organizations/e5f2fc78-d559-42e5-bc7c-cdb358d9574e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"6.516458ms\", \"status_code\": 200, \"latency_ms\": 6, \"request_id\": \"f8b4758b-1011-4a98-9f43-a92a04574977\"}\n"} +{"Time":"2022-12-07T09:15:39.198856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.198 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"278.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11f21b60-0b00-47b6-b231-d516a74e902f\"}\n"} +{"Time":"2022-12-07T09:15:39.199432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.199 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d98341f-eb62-4576-a3b7-bab290375485\"}\n"} +{"Time":"2022-12-07T09:15:39.200157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.200 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"441.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"01801c43-48bc-4801-889e-46a2a62b61d4\"}\n"} +{"Time":"2022-12-07T09:15:39.200829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.200 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd/dry-run/c07a20c6-affc-4662-8d25-f8c526a3f148\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9dc86e8a-2018-4783-9686-19f0a7160bd6\"}\n"} +{"Time":"2022-12-07T09:15:39.204716+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.204724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.204727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.204 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f128d8d9-a131-4117-8823-619ecf2916b9\"}\n"} +{"Time":"2022-12-07T09:15:39.205846+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.205852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.205862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.205 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.205882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.205 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.205885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.205 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.205896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.205 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.205919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.205 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.205978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.205 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.20859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3deef944-f800-4b34-8043-7df590ff6e93\"}\n"} +{"Time":"2022-12-07T09:15:39.21034+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.210345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.210347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e6eddd2b-c9a1-41f2-941b-f6232fbda08c\"}\n"} +{"Time":"2022-12-07T09:15:39.213741+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.213744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.213746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.213 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"19b36353-16f8-4f50-820f-df1d1bf6dab6\"}\n"} +{"Time":"2022-12-07T09:15:39.213848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:39.230871+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.230894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.230897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.230 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.2309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.230 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.230905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.230 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.230908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.230 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"410.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d0d9d588-9cd9-459b-acd7-2021bd990c9b\"}\n"} +{"Time":"2022-12-07T09:15:39.230934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.230 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.230952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.230 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.231012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.230 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.233221+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.233229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.233233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.233283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.233341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:39.233366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.233386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"size_bytes\": 141, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.233414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"size_bytes\": 141, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.233431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.233502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:39.23365+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.233655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.233658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.233 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"66bb59f2-163b-4ab5-ae32-104432b63e22\"}\n"} +{"Time":"2022-12-07T09:15:39.235367+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.235372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.235374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40b23eae-0ec0-4438-b417-f91654ae09eb\"}\n"} +{"Time":"2022-12-07T09:15:39.238717+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.238728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.23873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.238 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"331.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ee99c5b1-13e9-4301-9a62-db825f0ee294\"}\n"} +{"Time":"2022-12-07T09:15:39.23894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:39.255302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.255307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.25531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.255 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"312.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf2d45ea-2465-4e3e-a5d2-f45f03dd1e3f\"}\n"} +{"Time":"2022-12-07T09:15:39.256173+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.256179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.256182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.256 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.256222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.256 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.256252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.256 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.25627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.256 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} +{"Time":"2022-12-07T09:15:39.258619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.258 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd373121-8d02-49ed-9934-38d7aafac47e\"}\n"} +{"Time":"2022-12-07T09:15:39.259154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/organizations/96028bb4-e824-4dd2-98ef-89bc8d228673/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"081ac78c-3850-418e-8629-5de5bdc9b847\"}\n"} +{"Time":"2022-12-07T09:15:39.260031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/organizations/96028bb4-e824-4dd2-98ef-89bc8d228673/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"662.041µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c3fc38d9-5729-4f3c-80fc-bc44131a719c\"}\n"} +{"Time":"2022-12-07T09:15:39.260122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" delete_test.go:88: waiting for workspace build job b89a2166-1223-402d-8951-d86254b72931\n"} +{"Time":"2022-12-07T09:15:39.260359+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.260365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.260368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d5ddcad-6c6f-4738-91ba-124badb5801c\"}\n"} +{"Time":"2022-12-07T09:15:39.263754+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.26376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.263762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.263 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24a4ee80-2724-4f7c-9e71-5dbbc3571f36\"}\n"} +{"Time":"2022-12-07T09:15:39.263861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:39.280833+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.280838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.280841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.280 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11437dec-bbc4-49a2-bcae-917076f50371\"}\n"} +{"Time":"2022-12-07T09:15:39.281083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.281 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.281103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.281 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.281124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.281 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.281171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.281 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} +{"Time":"2022-12-07T09:15:39.282182+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.282189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.282192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.282 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"12.375µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:39.283575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.283 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.283779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.283 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33f51cad-45a7-43bd-bb00-e683120ed489\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"b29b9c1f-b052-4fbf-9580-0908365c535d\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.285571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06e9e306-ca38-406c-9e81-fd0dfa7e4371\"}\n"} +{"Time":"2022-12-07T09:15:39.285666+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.285675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.285679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"45e14baa-17c3-4a61-b0a1-c2d052eb73f9\"}\n"} +{"Time":"2022-12-07T09:15:39.288839+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.288848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.288851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.288 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"442.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f2f68abe-6497-4b35-9e13-5401533059fa\"}\n"} +{"Time":"2022-12-07T09:15:39.288973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:39.306089+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.306096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.306099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.306 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"441.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d7097ba-e9c0-4919-b313-b72088370778\"}\n"} +{"Time":"2022-12-07T09:15:39.306826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.306 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/organizations/89879752-0350-4103-8858-5ceacf36bf8c/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"462.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"83d6af47-4bdc-4e8d-9d8d-a0efe3ac3a90\"}\n"} +{"Time":"2022-12-07T09:15:39.308008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.307 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/organizations/89879752-0350-4103-8858-5ceacf36bf8c/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"927.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"631a2da1-4fad-49bc-abf0-6bc357cba27f\"}\n"} +{"Time":"2022-12-07T09:15:39.308124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" delete_test.go:54: waiting for workspace build job abcf2554-1e17-4270-870a-55505d6887ca\n"} +{"Time":"2022-12-07T09:15:39.310624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.310634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.310639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dd00922b-0eb6-447f-9522-44217708e986\"}\n"} +{"Time":"2022-12-07T09:15:39.310669+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.310675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.31068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"95572bcf-e80d-4da3-b878-1e0c945737f6\"}\n"} +{"Time":"2022-12-07T09:15:39.313823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.313832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.313837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"442.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d830d63-aab6-49ca-9ccd-5dd26ae7b3bf\"}\n"} +{"Time":"2022-12-07T09:15:39.313974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:39.327647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.327 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"54.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f955c56-26f1-4cf2-8034-7b65f35f8e17\"}\n"} +{"Time":"2022-12-07T09:15:39.327983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.327 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"caf96922-68b1-4569-8482-caa535d0f9b9\", \"agent_id\": \"effff068-4a00-4305-9d32-7c115f5bf88b\", \"agent_version\": \"v0.0.0-devel\"}\n"} +{"Time":"2022-12-07T09:15:39.328029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.327 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"114.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"caf96922-68b1-4569-8482-caa535d0f9b9\"}\n"} +{"Time":"2022-12-07T09:15:39.328424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.328 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"41.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e34a3d0-cc16-4fdf-95b5-f6b454fb9765\"}\n"} +{"Time":"2022-12-07T09:15:39.332483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.332 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"a10350e2-16b6-431b-85d0-502a0138ad97\", \"agent\": {\"id\": \"effff068-4a00-4305-9d32-7c115f5bf88b\", \"created_at\": \"2022-12-07T08:15:38.881416Z\", \"updated_at\": \"2022-12-07T08:15:38.881416Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"6b4347a0-24fc-41fb-8822-472ffa733c4b\", \"auth_token\": \"12bbf2d0-6240-489e-b3b5-9fdb18a10a40\", \"auth_instance_id\": {\"String\": \"\", \"Valid\": false}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"directory\": \"\","} +{"Time":"2022-12-07T09:15:39.332499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} +{"Time":"2022-12-07T09:15:39.333863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.333874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.33388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.333886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.333891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.333897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.333908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.33395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.333988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.334015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.334019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.334022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"590.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"23fb05c0-eedf-42aa-a810-f92b0e0f6902\"}\n"} +{"Time":"2022-12-07T09:15:39.334261+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.334273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.334278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.334 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33f51cad-45a7-43bd-bb00-e683120ed489\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"b29b9c1f-b052-4fbf-9580-0908365c535d\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.334287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.334 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.335646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"514.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"80f96acd-a94c-424d-86a8-c5c56612359d\"}\n"} +{"Time":"2022-12-07T09:15:39.33579+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.335799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.335803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"479.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7d67f686-9ae6-4e5f-a317-aaa9b78d2010\"}\n"} +{"Time":"2022-12-07T09:15:39.338923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.338932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.338937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"525.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c3d8ad3-12f1-4578-b148-5890fc895aea\"}\n"} +{"Time":"2022-12-07T09:15:39.35667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.356 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaceagents/me/gitsshkey\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"222.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"838a9bd2-766a-4c6f-818a-b201c44c3a2d\"}\n"} +{"Time":"2022-12-07T09:15:39.361923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.36193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.361933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"874.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e64e5bdd-09fb-460d-b7cb-2498a7b3452f\"}\n"} +{"Time":"2022-12-07T09:15:39.361937+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.361939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.361941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"622.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d3478a1-bc88-40dd-8993-2f9d52f39314\"}\n"} +{"Time":"2022-12-07T09:15:39.361954+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.361957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.361959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"463.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31ad0759-6c95-4178-b504-0275b522cb15\"}\n"} +{"Time":"2022-12-07T09:15:39.365351+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.365363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.365366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" ptytest.go:103: 2022-12-07 08:15:39.365: cmd: stdout: \"Pseudo-terminal will not be allocated because stdin is not a terminal.\\r\"\n"} +{"Time":"2022-12-07T09:15:39.383616+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.383622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.383625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.383 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3a087a7f-687d-42db-88d5-04b63e9e94b9\"}\n"} +{"Time":"2022-12-07T09:15:39.384494+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.384498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.384501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.384 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.384512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.384 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.384529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.384 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.384555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.384 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.384574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.384 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.384654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.384 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.385308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.385 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57d30cf0-1b49-4c87-a6b1-cc5f15d7b6d4\"}\n"} +{"Time":"2022-12-07T09:15:39.385523+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.385532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.385535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.385 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"266.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a9a71726-a75b-4a1f-a86d-20bb9c16088b\"}\n"} +{"Time":"2022-12-07T09:15:39.409097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.409121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.409132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.409 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"56df88b3-e8b4-4885-99ff-7c84c3ebdefc\"}\n"} +{"Time":"2022-12-07T09:15:39.410315+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.410321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.410323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"255.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"294eea05-0a27-4a6a-a27f-f23002ef9ec6\"}\n"} +{"Time":"2022-12-07T09:15:39.410536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.410541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.410543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ed6dc68e-d172-4dd8-84a6-e34fcf453f5f\"}\n"} +{"Time":"2022-12-07T09:15:39.421016+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.42102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.421022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.420 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} +{"Time":"2022-12-07T09:15:39.421049+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.421063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.421065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} +{"Time":"2022-12-07T09:15:39.421128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.421131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.421132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} +{"Time":"2022-12-07T09:15:39.421135+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.421136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.421138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"competent-jang4\", \"provisioner\": \"echo\", \"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} +{"Time":"2022-12-07T09:15:39.421169+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.421173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.421176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:39.421186+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.421188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.42119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:39.421221+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.421229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.421231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.421235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.421237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.421239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.421258+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.421261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.421262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.421266+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.421267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.421269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.421298+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.421301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.421303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.421317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"workspace_name\": \"my-workspace\", \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:39.421321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.421329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.421331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.421343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"workspace_name\": \"my-workspace\", \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:39.421516+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.421522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.421525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.421527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.42153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.421537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.421539+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.42154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.421542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} +{"Time":"2022-12-07T09:15:39.421545+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.421546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.421548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} +{"Time":"2022-12-07T09:15:39.433635+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.433639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.433641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.433 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62115575-9563-43b9-81bf-f82d3415733a\"}\n"} +{"Time":"2022-12-07T09:15:39.434863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.434868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.434871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.434 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.434875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.434 [INFO]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:39.434934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.434 [INFO]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"resource_name\": \"bar\", \"resource_type\": \"aws_instance\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:39.434937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.434 [INFO]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:39.435005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.434 [INFO]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"resource_name\": \"bar\", \"resource_type\": \"aws_instance\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:39.435028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.435 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.435046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.435 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.43509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.435 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} +{"Time":"2022-12-07T09:15:39.435297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a198a24b-7045-493e-9506-3581022996ce\"}\n"} +{"Time":"2022-12-07T09:15:39.435627+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.435633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.435635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"332.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6dfa77f3-f364-4d3b-bff3-a4fbd7b0a648\"}\n"} +{"Time":"2022-12-07T09:15:39.435864+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.43587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.435872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/organizations/9bb32d6f-8a82-418b-a77a-831720885c3e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"840f4d44-2a0a-4ecb-84ce-f6d842e20148\"}\n"} +{"Time":"2022-12-07T09:15:39.436645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.436 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/organizations/9bb32d6f-8a82-418b-a77a-831720885c3e/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"594.291µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0131d2af-ffab-4a30-88a2-bcf81c85e2b1\"}\n"} +{"Time":"2022-12-07T09:15:39.436721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" configssh_test.go:672: waiting for workspace build job 396668ad-81e0-4aa9-9aea-cc038eb638fe\n"} +{"Time":"2022-12-07T09:15:39.45968+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.459689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.459691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.459 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"335.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1fd0b131-3eb5-45e5-81ea-7a8ade1ad97c\"}\n"} +{"Time":"2022-12-07T09:15:39.460551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.460555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.460558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58aab2ef-50d8-49ca-83e6-1c297f323b7e\"}\n"} +{"Time":"2022-12-07T09:15:39.462276+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.462281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.462283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.462 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"288.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6eeaf2c3-e732-44c8-a2f7-c09c73342d8c\"}\n"} +{"Time":"2022-12-07T09:15:39.466039+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.466045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.466047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" ptytest.go:103: 2022-12-07 08:15:39.466: cmd: stdout: \"Warning: Permanently added '[127.0.0.1]:57431' (RSA) to the list of known hosts.\\r\"\n"} +{"Time":"2022-12-07T09:15:39.469676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" gitssh_test.go:199: authenticated with: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBbDqjY6weDEUT8aTAxTW9847XChexEtXqZsMaw4Z51u78yUBTpc4BEZLz6/TPhZ1Sg2Z+pXPwjVibJKP5bD/Us=\n"} +{"Time":"2022-12-07T09:15:39.47168+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.471684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.471686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} +{"Time":"2022-12-07T09:15:39.471689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.471692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.471695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} +{"Time":"2022-12-07T09:15:39.471728+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.471731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.471732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} +{"Time":"2022-12-07T09:15:39.471734+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.471735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.471738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} +{"Time":"2022-12-07T09:15:39.471741+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.47177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.471775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.47178+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.471782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.471785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} +{"Time":"2022-12-07T09:15:39.471788+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.471789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.471791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.471794+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.471796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.471797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:39.471821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"request_id\": \"61387a1b-740c-42e3-b168-af7d04389c6c\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:39.471828+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.47183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.471832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} +{"Time":"2022-12-07T09:15:39.47184+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.471841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.471843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:39.471845+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.471847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.471848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} +{"Time":"2022-12-07T09:15:39.471889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.471894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.471896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"request_id\": \"61387a1b-740c-42e3-b168-af7d04389c6c\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:39.471899+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.471901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.471903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} +{"Time":"2022-12-07T09:15:39.471906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:39.471927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"request_id\": \"13df5581-f47c-40f1-b190-3e516cba9a6b\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:39.471942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:39.472016+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.472019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.472021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.471: cmd: stdout: \"\\x1b[1A\\r✔ Queued [356ms]\"\n"} +{"Time":"2022-12-07T09:15:39.472023+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.472024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.472026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"request_id\": \"13df5581-f47c-40f1-b190-3e516cba9a6b\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:39.47203+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.472031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.472039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.472: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:39.472055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.472: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} +{"Time":"2022-12-07T09:15:39.472058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.472: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:39.480815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.480825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.480827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.480 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaceagents/me/gitsshkey\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"61.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f42e523c-7207-4623-87aa-71acf7917c02\"}\n"} +{"Time":"2022-12-07T09:15:39.485792+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.4858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.485806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.485 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"712.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f4d451b9-a1f8-4681-9e89-f2de172dbb34\"}\n"} +{"Time":"2022-12-07T09:15:39.486079+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.486083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.486085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.486 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"540.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6419442c-45cc-4f43-b32b-14c05ea8ee62\"}\n"} +{"Time":"2022-12-07T09:15:39.486505+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:39.486509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.486511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.486 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} +{"Time":"2022-12-07T09:15:39.486651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.486 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} +{"Time":"2022-12-07T09:15:39.486737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.486 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:39.48681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.486 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"size_bytes\": 81, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.486832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.486 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.486854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.486 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.48688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.486 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"workspace_name\": \"my-workspace\", \"parameters\": [{\"destination_scheme\": 1, \"name\": \"region\", \"value\": \"bingo\"}, {\"destination_scheme\": 1, \"name\": \"username\", \"value\": \"boingo\"}]}\n"} +{"Time":"2022-12-07T09:15:39.487082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.487 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.487111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.487 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} +{"Time":"2022-12-07T09:15:39.487407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.487412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.487415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.487 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7f8c5b6e-fa95-403c-bb72-7f680e1e144f\"}\n"} +{"Time":"2022-12-07T09:15:39.48797+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} +{"Time":"2022-12-07T09:15:39.487973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} +{"Time":"2022-12-07T09:15:39.487975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" ptytest.go:103: 2022-12-07 08:15:39.487: cmd: stdout: \"Pseudo-terminal will not be allocated because stdin is not a terminal.\\r\"\n"} +{"Time":"2022-12-07T09:15:39.492567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" gitssh_test.go:199: authenticated with: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDks9zssCUQuXQKVHtlCnpQ+SSxqIqKMVKVdUSvoWyPq\n"} +{"Time":"2022-12-07T09:15:39.493152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" ptytest.go:80: 2022-12-07 08:15:39.493: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:39.493468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.493 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"110.924375ms\", \"status_code\": 0, \"latency_ms\": 110, \"request_id\": \"9de431fd-387e-4e4e-b8f0-2fe77edffca6\"}\n"} +{"Time":"2022-12-07T09:15:39.493478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.493 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"161.209167ms\", \"status_code\": 101, \"latency_ms\": 161, \"request_id\": \"a10350e2-16b6-431b-85d0-502a0138ad97\"}\n"} +{"Time":"2022-12-07T09:15:39.493705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.493 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:39.493906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:39.494892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH","Output":"--- PASS: TestGitSSH (0.00s)\n"} +{"Time":"2022-12-07T09:15:39.4949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" --- PASS: TestGitSSH/Dial (1.84s)\n"} +{"Time":"2022-12-07T09:15:39.494903+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Elapsed":1.84} +{"Time":"2022-12-07T09:15:39.494907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" --- PASS: TestGitSSH/Local_SSH_Keys (2.02s)\n"} +{"Time":"2022-12-07T09:15:39.49491+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Elapsed":2.02} +{"Time":"2022-12-07T09:15:39.494912+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestGitSSH","Elapsed":0} +{"Time":"2022-12-07T09:15:39.494914+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.494915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.497967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.497 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"114.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9e1bf956-d48f-434e-8004-48cf2763eee7\"}\n"} +{"Time":"2022-12-07T09:15:39.498163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.498 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"36.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"078f9fd2-d62f-4f62-ace7-0e00e94e4475\"}\n"} +{"Time":"2022-12-07T09:15:39.498767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.498 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0b38e9f4-e562-428c-8c6b-e5b0cf85185a\"}\n"} +{"Time":"2022-12-07T09:15:39.499494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.499 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/organizations/b620295d-6d4f-4bcb-bd02-fa6ccee9bfe5/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"542.959µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f8ce57c9-741d-4a2b-8e2f-426ef367710b\"}\n"} +{"Time":"2022-12-07T09:15:39.499591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" configssh_test.go:669: waiting for template version job 2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\n"} +{"Time":"2022-12-07T09:15:39.510476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.510481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.510483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"52a198a5-d5d8-4f30-96db-f4504a1ac68c\"}\n"} +{"Time":"2022-12-07T09:15:39.511145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.511148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.511149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.511 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0beb54a3-439f-4b8e-a58f-eaa5e0b929b6\"}\n"} +{"Time":"2022-12-07T09:15:39.512739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.512742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.512744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.512 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"547241ac-ce81-44e5-8dc3-60452d7a482f\"}\n"} +{"Time":"2022-12-07T09:15:39.523012+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.523029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.523031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.522 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} +{"Time":"2022-12-07T09:15:39.523037+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.523039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.523041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.522 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} +{"Time":"2022-12-07T09:15:39.523048+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.523059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.523066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.522 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} +{"Time":"2022-12-07T09:15:39.523098+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.523102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.523104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} +{"Time":"2022-12-07T09:15:39.523144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} +{"Time":"2022-12-07T09:15:39.523149+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.52315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.523152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} +{"Time":"2022-12-07T09:15:39.523182+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.523185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.523196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} +{"Time":"2022-12-07T09:15:39.523199+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.5232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.523202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} +{"Time":"2022-12-07T09:15:39.523204+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.523206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.523208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.523 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} +{"Time":"2022-12-07T09:15:39.52321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.523212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.523213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.523 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} +{"Time":"2022-12-07T09:15:39.523216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} +{"Time":"2022-12-07T09:15:39.52322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.523222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.523225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} +{"Time":"2022-12-07T09:15:39.523463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.52347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.523472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd/dry-run/c07a20c6-affc-4662-8d25-f8c526a3f148/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.105125ms\", \"status_code\": 101, \"latency_ms\": 320, \"request_id\": \"13df5581-f47c-40f1-b190-3e516cba9a6b\"}\n"} +{"Time":"2022-12-07T09:15:39.523476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.523494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.523499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c/dry-run/f2e8a249-ce1d-4037-8fb0-6039a528bf31/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.338291ms\", \"status_code\": 101, \"latency_ms\": 457, \"request_id\": \"61387a1b-740c-42e3-b168-af7d04389c6c\"}\n"} +{"Time":"2022-12-07T09:15:39.524666+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.52467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.524672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.524 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd/dry-run/c07a20c6-affc-4662-8d25-f8c526a3f148\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"620.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"013145b6-9ad0-4975-9d42-c3bb9e03a2ef\"}\n"} +{"Time":"2022-12-07T09:15:39.524829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.524834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.524836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.524 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c/dry-run/f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"753.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e2391ce-7c86-46c3-a75e-efd07fe463f1\"}\n"} +{"Time":"2022-12-07T09:15:39.524984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.524: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [102ms]\"\n"} +{"Time":"2022-12-07T09:15:39.524991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.524993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.524998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.524 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1eb9e5e6-51d5-4b9c-89fa-7dd715aafe73\"}\n"} +{"Time":"2022-12-07T09:15:39.525337+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.525342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.525344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.525 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd/dry-run/c07a20c6-affc-4662-8d25-f8c526a3f148/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"493.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e819ff09-2851-4101-90dd-f674c97422c3\"}\n"} +{"Time":"2022-12-07T09:15:39.525636+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.525639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.525642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.525 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c/dry-run/f2e8a249-ce1d-4037-8fb0-6039a528bf31/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"572.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e83f473c-9f00-41dc-af06-36763a4e75ef\"}\n"} +{"Time":"2022-12-07T09:15:39.525735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"┌──────────────────┐\"\n"} +{"Time":"2022-12-07T09:15:39.525746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"│ Workspace Previe │\"\n"} +{"Time":"2022-12-07T09:15:39.525749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"│ w │\"\n"} +{"Time":"2022-12-07T09:15:39.52575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"├──────────────────┤\"\n"} +{"Time":"2022-12-07T09:15:39.525752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"│ RESOURCE ACCESS │\"\n"} +{"Time":"2022-12-07T09:15:39.525754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"├──────────────────┤\"\n"} +{"Time":"2022-12-07T09:15:39.525756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"└──────────────────┘\"\n"} +{"Time":"2022-12-07T09:15:39.525836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" create_test.go:128: 2022-12-07 08:15:39.525: cmd: matched \"Confirm create?\" = \" for your workspace: my-workspace\\r\\nSelect a template below to preview the provisioned infrastructure: \\r\\n\\r\\nPlanning workspace...\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [356ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [0ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Cleaning Up [102ms]\\r\\n┌──────────────────┐\\r\\n│ Workspace Previe │\\r\\n│ w │\\r\\n├──────────────────┤\\r\\n│ RESOURCE ACCESS │\\r\\n├──────────────────┤\\r\\n└──────────────────┘\\r\\n\u003e Confirm create?\"\n"} +{"Time":"2022-12-07T09:15:39.525843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" create_test.go:129: 2022-12-07 08:15:39.525: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:39.525883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"\u003e Confirm create? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:39.526046+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.526049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.52605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.526 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/organizations/e5f2fc78-d559-42e5-bc7c-cdb358d9574e/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"527.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"707d53be-80cc-4b64-98c5-2fd070a85a95\"}\n"} +{"Time":"2022-12-07T09:15:39.526485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.526 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/workspacebuilds/835d4c3e-f06a-4134-a812-5a89b1441592\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"250.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e1a2349b-cf7e-45b0-bd3c-3451cb876da3\"}\n"} +{"Time":"2022-12-07T09:15:39.52649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:39.526492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:39.526494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.526 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/organizations/11c9282c-985b-41b5-841f-d468db51bba6/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"540.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c7710b6a-a186-4d45-8887-8bc18c993ff7\"}\n"} +{"Time":"2022-12-07T09:15:39.526575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.526: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:39.526921+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.526 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/workspacebuilds/a693fe94-96b6-4e0f-9ca0-835aa85a3def\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"253e73d1-d24d-45fc-843a-9204b6ddbe4d\"}\n"} +{"Time":"2022-12-07T09:15:39.534203+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.534207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.534209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.534 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"268.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b1000fb-e4b8-4d86-8ab2-9e8d6013690a\"}\n"} +{"Time":"2022-12-07T09:15:39.535654+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.535657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.535658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3357abbc-3114-436b-86e2-05263e9e3cbf\"}\n"} +{"Time":"2022-12-07T09:15:39.537227+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:39.537229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.537231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} +{"Time":"2022-12-07T09:15:39.53727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.537275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.537277+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.537278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.53728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ba73250d-e376-400a-8329-c13d119c3992\"}\n"} +{"Time":"2022-12-07T09:15:39.537284+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:39.537286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.537287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} +{"Time":"2022-12-07T09:15:39.537343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} +{"Time":"2022-12-07T09:15:39.537347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:39.53735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:39.537356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} +{"Time":"2022-12-07T09:15:39.537395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"request_id\": \"4be908f6-dc1c-4e93-84cf-968ed847ef71\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:39.537433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"request_id\": \"4be908f6-dc1c-4e93-84cf-968ed847ef71\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:39.537537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.537: cmd: stdout: \"\\x1b[1A\\r✔ Queued [495ms]\"\n"} +{"Time":"2022-12-07T09:15:39.537551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.537: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:39.537555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.537: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [1ms]\"\n"} +{"Time":"2022-12-07T09:15:39.537557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.537: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:39.551183+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.551187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.551189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aaf23bfa-9261-4a43-bfa5-66a56bdaa3f6\"}\n"} +{"Time":"2022-12-07T09:15:39.559487+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.55949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.559492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.559 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"83d38cdb-6483-437f-ac80-648c6a3a76a0\"}\n"} +{"Time":"2022-12-07T09:15:39.560672+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.560675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.560677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.560 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd8c7776-9174-49d3-8153-da320253068f\"}\n"} +{"Time":"2022-12-07T09:15:39.562341+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.562345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.562353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.562 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b327a580-182a-4d2a-89e2-7b35db1f4fd4\"}\n"} +{"Time":"2022-12-07T09:15:39.57624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.576244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.576246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.576 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"68a8e2f4-1b40-4761-8a03-30c04f92c04c\"}\n"} +{"Time":"2022-12-07T09:15:39.58449+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.584494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.584496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.584 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"22979472-0db8-466a-92d4-27646e845534\"}\n"} +{"Time":"2022-12-07T09:15:39.585633+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.585637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.585639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1df8cb6c-e4f1-4935-9d16-86e4dec9452d\"}\n"} +{"Time":"2022-12-07T09:15:39.587363+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.587367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.587369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5925617f-bca9-4358-adfd-2c4f80d96854\"}\n"} +{"Time":"2022-12-07T09:15:39.587457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:39.587462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.587465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.587 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} +{"Time":"2022-12-07T09:15:39.587476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.587 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} +{"Time":"2022-12-07T09:15:39.587512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.587 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} +{"Time":"2022-12-07T09:15:39.587518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} +{"Time":"2022-12-07T09:15:39.58754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.587 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} +{"Time":"2022-12-07T09:15:39.587549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} +{"Time":"2022-12-07T09:15:39.587764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82/dry-run/5e934427-70eb-4d40-b29a-c23088905098/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"595.411625ms\", \"status_code\": 101, \"latency_ms\": 595, \"request_id\": \"4be908f6-dc1c-4e93-84cf-968ed847ef71\"}\n"} +{"Time":"2022-12-07T09:15:39.589542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82/dry-run/5e934427-70eb-4d40-b29a-c23088905098\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"828.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b2ba90b4-d4af-4254-8700-48dff59edd2b\"}\n"} +{"Time":"2022-12-07T09:15:39.589668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.589: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [100ms]\"\n"} +{"Time":"2022-12-07T09:15:39.59046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82/dry-run/5e934427-70eb-4d40-b29a-c23088905098/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"670.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c7dd6746-c0bf-4345-9d73-95d25fb68fdd\"}\n"} +{"Time":"2022-12-07T09:15:39.590576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"┌──────────────────┐\"\n"} +{"Time":"2022-12-07T09:15:39.590582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"│ Workspace Previe │\"\n"} +{"Time":"2022-12-07T09:15:39.590586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"│ w │\"\n"} +{"Time":"2022-12-07T09:15:39.590588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"├──────────────────┤\"\n"} +{"Time":"2022-12-07T09:15:39.590591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"│ RESOURCE ACCESS │\"\n"} +{"Time":"2022-12-07T09:15:39.590608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"├──────────────────┤\"\n"} +{"Time":"2022-12-07T09:15:39.590611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"└──────────────────┘\"\n"} +{"Time":"2022-12-07T09:15:39.59069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:175: 2022-12-07 08:15:39.590: cmd: matched \"Confirm create?\" = \"\\x1b[0m boingo\\r\\n\\r\\nPlanning workspace...\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [495ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [1ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Cleaning Up [100ms]\\r\\n┌──────────────────┐\\r\\n│ Workspace Previe │\\r\\n│ w │\\r\\n├──────────────────┤\\r\\n│ RESOURCE ACCESS │\\r\\n├──────────────────┤\\r\\n└──────────────────┘\\r\\n\u003e Confirm create?\"\n"} +{"Time":"2022-12-07T09:15:39.590699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:176: 2022-12-07 08:15:39.590: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:39.590719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"\u003e Confirm create? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:39.591531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.591 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/organizations/b342410a-6ffc-46ec-89b1-7a1f653b07c7/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"687.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7256d746-57b3-4e4b-a0c7-62a0761c83e4\"}\n"} +{"Time":"2022-12-07T09:15:39.591672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.591: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:39.592099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.592 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/workspacebuilds/aad3e414-9393-4643-a752-ee47896a525e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d94e1fd7-1b35-4ff8-8d28-a2e0904f0800\"}\n"} +{"Time":"2022-12-07T09:15:39.597539+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.597544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.597547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.597 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:39.600464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.600 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"43074188-8d2f-46fb-ba5d-ff3e9af521e9\"}\n"} +{"Time":"2022-12-07T09:15:39.609631+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.609635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.609637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.609 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"02699b4a-9042-4ff4-82dc-892743fc519b\"}\n"} +{"Time":"2022-12-07T09:15:39.610661+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.610666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.610668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.610 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0fb0331a-a243-44bf-9172-8f0366a3eff1\"}\n"} +{"Time":"2022-12-07T09:15:39.612387+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.612392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.612394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.612 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"371.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d148403-5158-4633-9f02-f7976a630b2c\"}\n"} +{"Time":"2022-12-07T09:15:39.621033+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:39.621038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:39.621041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.620 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} +{"Time":"2022-12-07T09:15:39.621203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} +{"Time":"2022-12-07T09:15:39.621265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:39.621325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"size_bytes\": 81, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.621366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.621397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.621447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"workspace_name\": \"my-workspace\", \"parameters\": [{\"destination_scheme\": 1, \"name\": \"region\", \"value\": \"bingo\"}, {\"destination_scheme\": 1, \"name\": \"username\", \"value\": \"boingo\"}]}\n"} +{"Time":"2022-12-07T09:15:39.621598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.621636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} +{"Time":"2022-12-07T09:15:39.625645+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.62565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.625653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.625 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"410.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ecd07fd-6499-40bb-9e12-f32fc80d8377\"}\n"} +{"Time":"2022-12-07T09:15:39.634739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.634749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.634753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"459.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"55500f4f-43c9-41e5-bacc-33297537f19d\"}\n"} +{"Time":"2022-12-07T09:15:39.635758+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.635765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.635768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ced6a6b8-0853-4a5a-8814-f785a520821e\"}\n"} +{"Time":"2022-12-07T09:15:39.637505+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.63751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.637513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"487.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2848f314-a06d-4bc8-95d2-baf32b0753de\"}\n"} +{"Time":"2022-12-07T09:15:39.648728+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.648737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.64874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.648 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.648857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.648 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.648915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.648 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:39.648966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.648 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.649008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.648 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"size_bytes\": 92, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.649043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.649 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"size_bytes\": 92, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.649062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.649 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.649193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.649 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:39.650324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.650 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"416.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b51455f-7a23-4cc2-a09e-fa540d15ae44\"}\n"} +{"Time":"2022-12-07T09:15:39.659814+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.659819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.659822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.659 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"500.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d7aa2cc9-b139-4deb-a001-ca59356812b5\"}\n"} +{"Time":"2022-12-07T09:15:39.660787+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.660793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.660797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ab5eb6c0-bcb6-4037-9e89-0692ad5a2994\"}\n"} +{"Time":"2022-12-07T09:15:39.662528+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.662536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.66254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.662 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"494.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49fba901-74c6-4a28-ad81-dbfb8a74fe30\"}\n"} +{"Time":"2022-12-07T09:15:39.672855+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:39.672863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:39.672867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.672 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} +{"Time":"2022-12-07T09:15:39.672906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.672 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.67292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.672 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.672959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.672 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} +{"Time":"2022-12-07T09:15:39.673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.672 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} +{"Time":"2022-12-07T09:15:39.673074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:39.673091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.673 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} +{"Time":"2022-12-07T09:15:39.673097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:39.673141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"request_id\": \"dd16ead4-97ad-42a8-9d6e-bf227f775445\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:39.673231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"request_id\": \"dd16ead4-97ad-42a8-9d6e-bf227f775445\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:39.673426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.673: cmd: stdout: \"\\x1b[1A\\r✔ Queued [827ms]\"\n"} +{"Time":"2022-12-07T09:15:39.673468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.673: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:39.673479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.673: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} +{"Time":"2022-12-07T09:15:39.673483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.673: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:39.675413+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.67542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.675423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.675 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"465.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7478f8a3-1c9f-48c3-93c6-0508c8fc5cca\"}\n"} +{"Time":"2022-12-07T09:15:39.684925+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.684937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.68494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.684 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"615.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a7725217-f027-4592-9515-5ab879b4a0f1\"}\n"} +{"Time":"2022-12-07T09:15:39.685899+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.685908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.685911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.685 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"548.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4cc2c879-12c7-4da5-a5ed-1045c04cb59c\"}\n"} +{"Time":"2022-12-07T09:15:39.687616+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.687627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.687631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.687 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"603.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d7f7588-9a99-4689-94e2-f026e1db09dd\"}\n"} +{"Time":"2022-12-07T09:15:39.697113+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.697122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.697126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.697 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"20.792µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:39.699495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.699 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.699938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.699 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33c80784-4057-45fa-9c62-59866e771ed6\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\"}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.700597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.700 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"760.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58892c33-087b-4498-bd8f-0816fc706750\"}\n"} +{"Time":"2022-12-07T09:15:39.709392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.709407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.709413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.709 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.709555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.709 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"hopeful-edison0\", \"provisioner\": \"echo\", \"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.709669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.709 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:39.709724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.709 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.709831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.709 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.70989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.709 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.709917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.709 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"workspace_name\": \"compassionate-torvalds9\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:39.710157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.710 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.710195+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.710201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.710206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.710 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"828.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ed80a5b6-9e8d-47b5-bb65-3d9c9d01e5df\"}\n"} +{"Time":"2022-12-07T09:15:39.710218+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.710224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.710229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.710 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.711208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.711 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"714.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7aa9e6ed-1f72-40ec-ae50-5bea0147a162\"}\n"} +{"Time":"2022-12-07T09:15:39.712823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.712837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.712843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.712 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"772.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eb0d2d0c-4ba4-46e5-853a-342ba86b0e7d\"}\n"} +{"Time":"2022-12-07T09:15:39.714793+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.714802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.714806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.714 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.714944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.714 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.715049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.714 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:39.715102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.715 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.715171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.715 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.715224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.715 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.715288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.715 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"workspace_name\": \"intelligent-gagarin9\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:39.715596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.715 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.715628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.715 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.725283+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:39.725293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:39.725299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.724 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} +{"Time":"2022-12-07T09:15:39.725305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.724 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} +{"Time":"2022-12-07T09:15:39.72531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.725 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} +{"Time":"2022-12-07T09:15:39.725315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.725 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} +{"Time":"2022-12-07T09:15:39.725402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.725 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} +{"Time":"2022-12-07T09:15:39.725498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.725 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} +{"Time":"2022-12-07T09:15:39.726349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.725 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c/dry-run/67a0ee0e-4df0-409b-a655-d096c176405b/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"930.90025ms\", \"status_code\": 101, \"latency_ms\": 930, \"request_id\": \"dd16ead4-97ad-42a8-9d6e-bf227f775445\"}\n"} +{"Time":"2022-12-07T09:15:39.726883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.726893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.726898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.726 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.400542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e6cf6a1b-ed60-49cc-b556-24b6814920bb\"}\n"} +{"Time":"2022-12-07T09:15:39.732267+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:39.732282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:39.732286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.732 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c/dry-run/67a0ee0e-4df0-409b-a655-d096c176405b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.696833ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"28ac44b6-b1d3-4ecb-9847-6dbe40903adc\"}\n"} +{"Time":"2022-12-07T09:15:39.732896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.732: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [103ms]\"\n"} +{"Time":"2022-12-07T09:15:39.734892+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.734912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.734919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.734 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.139416ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"7aac310e-3529-4e9a-8fbb-36eb774a45ab\"}\n"} +{"Time":"2022-12-07T09:15:39.734928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:39.734931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:39.734935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.734 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c/dry-run/67a0ee0e-4df0-409b-a655-d096c176405b/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.781291ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"157f5a4f-3c10-4661-887a-d9ee325b387a\"}\n"} +{"Time":"2022-12-07T09:15:39.73541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"┌──────────────────┐\"\n"} +{"Time":"2022-12-07T09:15:39.735421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"│ Workspace Previe │\"\n"} +{"Time":"2022-12-07T09:15:39.735426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"│ w │\"\n"} +{"Time":"2022-12-07T09:15:39.735429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"├──────────────────┤\"\n"} +{"Time":"2022-12-07T09:15:39.735433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"│ RESOURCE ACCESS │\"\n"} +{"Time":"2022-12-07T09:15:39.735436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"├──────────────────┤\"\n"} +{"Time":"2022-12-07T09:15:39.735449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"└──────────────────┘\"\n"} +{"Time":"2022-12-07T09:15:39.735881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" create_test.go:218: 2022-12-07 08:15:39.735: cmd: matched \"Confirm create?\" = \" for your workspace: my-workspace\\r\\nSelect a template below to preview the provisioned infrastructure: \\r\\n \\r\\n Attempting to read the variables from the parameter file. \\r\\r\\n\\r\\n \\r\\n This template has customizable parameters. Values can be \\r\\n changed after create, but may have unintended side effects\\r\\n (like data loss). \\r\\r\\n\\r\\n\\r\\nPlanning workspace...\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [827ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [0ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Cleaning Up [103ms]\\r\\n┌──────────────────┐\\r\\n│ Workspace Previe │\\r\\n│ w │\\r\\n├──────────────────┤\\r\\n│ RESOURCE"} +{"Time":"2022-12-07T09:15:39.735906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ACCESS │\\r\\n├──────────────────┤\\r\\n└──────────────────┘\\r\\n\u003e Confirm create?\"\n"} +{"Time":"2022-12-07T09:15:39.735912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" create_test.go:219: 2022-12-07 08:15:39.735: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:39.735918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"\u003e Confirm create? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:39.736622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.73663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.736634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"962.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dd16b869-d551-4655-b3fa-acd9c9a916b4\"}\n"} +{"Time":"2022-12-07T09:15:39.73843+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:39.73844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:39.738453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.738 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/organizations/0d9eaf0f-21c1-468a-aefe-4d9034f5d152/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.10025ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"b1663adf-49a6-4b49-ba7c-aecfd42138ce\"}\n"} +{"Time":"2022-12-07T09:15:39.738781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.738: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:39.738796+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.7388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.738804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.738 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.796916ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0a24a3a1-8dee-4f05-9cc0-be9eaf6fd31a\"}\n"} +{"Time":"2022-12-07T09:15:39.739618+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:39.739629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:39.739634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.739 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/workspacebuilds/0424bef1-25f5-4ff1-b055-890ba8ca6334\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"699.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d3f80f6c-9640-46ed-b8f6-09767f629d0e\"}\n"} +{"Time":"2022-12-07T09:15:39.750832+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.750842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.750851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.750 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.750866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.750 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.750901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.750 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.750937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.750 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.750957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.750 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.750989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.750 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.751026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.750 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.751282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.751 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33c80784-4057-45fa-9c62-59866e771ed6\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\"}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.7513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.75151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.751 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"625.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a5dbcf5a-db0f-4cee-88d4-a69470c426fe\"}\n"} +{"Time":"2022-12-07T09:15:39.759989+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.759996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.76+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"716µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e84e64e-fd72-415c-9a45-6332d00e84f0\"}\n"} +{"Time":"2022-12-07T09:15:39.760369+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.760378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.760382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.760 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.760388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.760 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.760416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.760 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.760457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.760 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.761049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"675.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"50bebf78-bb6e-4ad7-974b-087cd0af9e06\"}\n"} +{"Time":"2022-12-07T09:15:39.762719+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.762727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.762732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.762 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"685.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2e671234-d161-42be-9dd0-f643b3a25f18\"}\n"} +{"Time":"2022-12-07T09:15:39.765853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.765861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.765865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.765 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.765872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.765 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.765901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.765 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.765936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.765 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.775752+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.775759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.775763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.775 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"636.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d503dbfb-e94d-446a-9a7a-876e147b6319\"}\n"} +{"Time":"2022-12-07T09:15:39.784507+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.784513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.784517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.784 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"635.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cc5ab1ef-b916-4aa0-82cb-398e197dadec\"}\n"} +{"Time":"2022-12-07T09:15:39.786117+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.786125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.786129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.786 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"716.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f13bd30f-d316-4693-9d4c-69804ecba710\"}\n"} +{"Time":"2022-12-07T09:15:39.787691+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.787698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.787702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.787 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"659.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8b4d1a9-3bf1-4dec-9b1c-ee2d61c7b97c\"}\n"} +{"Time":"2022-12-07T09:15:39.801536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.801546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.80155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.801 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.801559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.801 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.801595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.801 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.801642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.801 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.801691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.801 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.801711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.801 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"714.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b62edf43-2098-4955-91b9-3832a9ab9bf1\"}\n"} +{"Time":"2022-12-07T09:15:39.801756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.801 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.810459+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.810491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.810498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.810 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.06725ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"27196806-9461-44b8-afde-ee5daf0795c7\"}\n"} +{"Time":"2022-12-07T09:15:39.811332+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.811344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.81135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.810 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.811356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.811 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"793.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e042a1c-3b6e-4a09-bec5-24e920bca027\"}\n"} +{"Time":"2022-12-07T09:15:39.811364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.811 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.811368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.811 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.812805+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.812835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.812842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.812 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"802.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd9d473f-e7eb-4c1a-824e-ecc4bf115f5f\"}\n"} +{"Time":"2022-12-07T09:15:39.816596+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.816604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.816609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.816 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.816778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.816 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.816834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.816 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.826888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.826915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.826921+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.826 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"962.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f764efd-ea85-4203-ae94-68a0a29ffe49\"}\n"} +{"Time":"2022-12-07T09:15:39.835563+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.835584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.835592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.835 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.225ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"dab8bca5-563a-4cb2-ba47-9f20701a3174\"}\n"} +{"Time":"2022-12-07T09:15:39.836642+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.836656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.836663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.135042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1b24fb18-3060-4bd7-a234-2366afecb50a\"}\n"} +{"Time":"2022-12-07T09:15:39.838333+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.838343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.83835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.838 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.180708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"644eac73-37b5-4b8d-af63-34a6539946f0\"}\n"} +{"Time":"2022-12-07T09:15:39.852197+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.852215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.852222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.851 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.16525ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"86173557-0532-4db3-a7b0-d745477b22ae\"}\n"} +{"Time":"2022-12-07T09:15:39.852232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.851 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.85224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.852 [INFO]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:39.852257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.852 [INFO]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"resource_name\": \"bar\", \"resource_type\": \"aws_instance\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:39.852551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.852 [INFO]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:39.852563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.852 [INFO]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"resource_name\": \"bar\", \"resource_type\": \"aws_instance\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:39.852571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.852 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.852578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.852 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.852688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.852 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} +{"Time":"2022-12-07T09:15:39.861475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.861506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.861517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.860 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.810833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"02a58680-a178-4d5c-a03f-dad612004d47\"}\n"} +{"Time":"2022-12-07T09:15:39.862598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.862615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.862626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.862 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.862637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.862 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.862648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.862 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.862701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.862 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.862717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.862 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.626ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d16005ee-85bd-4267-a4c2-04a92eda89d8\"}\n"} +{"Time":"2022-12-07T09:15:39.863153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.862 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.86461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.864621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.864628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.864 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.419542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"26844159-2061-4f38-b82f-8394a3bc0ab8\"}\n"} +{"Time":"2022-12-07T09:15:39.865308+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:39.865318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.865324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.865 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:39.865639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.865 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:39.865799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.865 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:39.865945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.865 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"size_bytes\": 81, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.86604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.865 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.866133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.866 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.866234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.866 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": [{\"destination_scheme\": 1, \"name\": \"region\", \"value\": \"bingo\"}, {\"destination_scheme\": 1, \"name\": \"username\", \"value\": \"boingo\"}]}\n"} +{"Time":"2022-12-07T09:15:39.866526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.866 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:39.866683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.866 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.86726+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.867268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.867273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.867 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.867374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.867 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.867383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.867 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.867481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.867 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.86752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.867 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.876807+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.876825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.876854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.876 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.449ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"caf8f4a1-48e0-4805-a53b-34ee2aa0e595\"}\n"} +{"Time":"2022-12-07T09:15:39.878708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.878 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/organizations/b620295d-6d4f-4bcb-bd02-fa6ccee9bfe5/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.329791ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"3f67bcf2-269e-415c-ba0b-6eb1b0c38486\"}\n"} +{"Time":"2022-12-07T09:15:39.881711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.881 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/organizations/b620295d-6d4f-4bcb-bd02-fa6ccee9bfe5/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.455666ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"ef301e66-3798-49bc-9fa0-ea064281e0fa\"}\n"} +{"Time":"2022-12-07T09:15:39.881974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" configssh_test.go:672: waiting for workspace build job 34d85424-cdd9-498a-b3ab-6134bcd4697d\n"} +{"Time":"2022-12-07T09:15:39.884862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.884881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.884889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.884 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.196625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4f132f58-b600-4414-a37e-6ec5dc19d5f4\"}\n"} +{"Time":"2022-12-07T09:15:39.886501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.886529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.886536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.087041ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4a90c21c-bbe9-4c73-9f7c-0dc7f389bdca\"}\n"} +{"Time":"2022-12-07T09:15:39.888075+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.888103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.888111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.887 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.089042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a064f003-55f8-40a0-8213-014fdb11fe59\"}\n"} +{"Time":"2022-12-07T09:15:39.903743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.903 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:39.904103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.903 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:39.904478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.904 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:39.90449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.904 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.904499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.904 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"size_bytes\": 141, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.904787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.904 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"size_bytes\": 141, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.904799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.904 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"workspace_name\": \"festive-williamson7\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:39.904968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.904 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:39.905148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.904 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33f51cad-45a7-43bd-bb00-e683120ed489\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"b29b9c1f-b052-4fbf-9580-0908365c535d\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.90995+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.909985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.909994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.868166ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f6aea295-5007-46d0-9ec2-3f3e0a16133d\"}\n"} +{"Time":"2022-12-07T09:15:39.910272+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.910283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.910292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.351334ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"cf198c53-1595-4a08-8b20-998765cd77cb\"}\n"} +{"Time":"2022-12-07T09:15:39.911981+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.91201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.912017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.911 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.264375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"8053fdf3-16d4-47ed-a8c7-56979719e2fe\"}\n"} +{"Time":"2022-12-07T09:15:39.913517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.913 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.913534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.913 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.913543+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.913548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.913569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.115375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0c408208-cdaa-4f88-a849-e3899b6c935f\"}\n"} +{"Time":"2022-12-07T09:15:39.913578+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.913583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.913587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.913 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.913596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.913 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.913605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.913 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.917198+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:39.917208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.917215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:39.917326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.917335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:39.917427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:39.91795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:39.917961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"request_id\": \"d94fc8f1-36df-4fbf-845a-bd724712cc2b\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:39.917972+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.917977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.917982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.917989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.917995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.918012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.918245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.918 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.91836+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:39.918368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.918376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.918: cmd: stdout: \"\\x1b[1A\\r✔ Queued [273ms]\"\n"} +{"Time":"2022-12-07T09:15:39.918383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.918: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:39.93623+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.936277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.936289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.935 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.796666ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"7ad17310-563f-4e62-ab9a-7bb8cb9c76be\"}\n"} +{"Time":"2022-12-07T09:15:39.936304+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.936312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.936322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.935 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.748875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9381e39e-6820-40ad-8238-4d23536f9a3e\"}\n"} +{"Time":"2022-12-07T09:15:39.938194+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.938215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.938228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.583416ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"be5456bf-4a41-4c06-a57c-8bdcb9084085\"}\n"} +{"Time":"2022-12-07T09:15:39.939167+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.93918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.939191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.939 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.698958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4c227b28-226d-444e-b3b0-3d29bc06a047\"}\n"} +{"Time":"2022-12-07T09:15:39.943893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.943908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.943918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.943 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:39.94424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.944 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"competent-jang4\", \"provisioner\": \"echo\", \"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:39.944425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.944 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:39.94459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.944 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.944721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.944 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.944882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.944 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.945009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.944 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:39.945322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.945 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:39.945436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.945 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.957811+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.957835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.957843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.957 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:39.957849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.957 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.957856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.957 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:39.957861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.957 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:39.959557+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.959591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.959598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"907.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6ff59d47-4702-4626-afae-ed7deb92fab1\"}\n"} +{"Time":"2022-12-07T09:15:39.959609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.959614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.959618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"849.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a9a7d67c-e61d-44c0-ae61-9f49ea92e3e0\"}\n"} +{"Time":"2022-12-07T09:15:39.962038+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.962068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.962075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.034667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0cbca207-4478-4212-8450-c7cd956db1cc\"}\n"} +{"Time":"2022-12-07T09:15:39.963295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.963304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.963311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.963 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"980.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ccfcae96-1a64-430f-9f3b-359d31dd7397\"}\n"} +{"Time":"2022-12-07T09:15:39.963985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.963994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.964032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.963 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.964037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.963 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.964044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.963 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} +{"Time":"2022-12-07T09:15:39.968637+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:39.968649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:39.968654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.967 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:39.968661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.968 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:39.968666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.968 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.968863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.96887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.968874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.968 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.968979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.968 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.968989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.968 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} +{"Time":"2022-12-07T09:15:39.971939+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:39.971954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:39.971965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.971 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:39.972247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.972 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:39.972422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.972 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:39.972619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.972 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.972738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.972 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"size_bytes\": 92, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.972889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.972 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"size_bytes\": 92, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:39.973008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.972 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"workspace_name\": \"unruffled-tharp3\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:39.973314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.973 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:39.973541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.973 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33c80784-4057-45fa-9c62-59866e771ed6\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\"}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:39.994237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.985 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.991875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"39d5dff0-d5d5-4550-af72-c52b4a12b1b7\"}\n"} +{"Time":"2022-12-07T09:15:39.994292+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.994299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.994306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.985 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.9995ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"168e0dc1-0f0a-4c26-ac1e-1199f8e5f5a9\"}\n"} +{"Time":"2022-12-07T09:15:39.994316+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.994326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.994333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.987 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.61125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ea8236ba-d764-41a6-acb5-7369fd67cdd9\"}\n"} +{"Time":"2022-12-07T09:15:39.996647+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:39.996661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:39.996666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.996 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:39.996682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.996 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:39.99672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.996 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:39.996804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.996 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:39.996936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.996 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:39.997049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.996 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"request_id\": \"bc8132bf-6dde-42ba-9d49-2fa26efd497d\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:39.997104+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.997109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.997119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.997 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"42.041µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"195c1e0b-53cb-4bab-bb08-4600c93e2bb2\"}\n"} +{"Time":"2022-12-07T09:15:39.99747+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:39.997482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:39.997488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.997 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"852.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cc528354-2419-4342-9d1f-7475546de477\"}\n"} +{"Time":"2022-12-07T09:15:39.997552+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.997558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.997564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.997 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"48.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"68bfc0e3-60d7-4f12-ab93-dd88bc139918\"}\n"} +{"Time":"2022-12-07T09:15:39.997719+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.997733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.997738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.997 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"44.709µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"6f3c6480-565b-4852-a055-a44ca12825d9\"}\n"} +{"Time":"2022-12-07T09:15:39.99802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.997 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"25.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e8fac886-1a5b-42d3-9090-91e0814e94aa\"}\n"} +{"Time":"2022-12-07T09:15:39.998658+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:39.998667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:39.998671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.998 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/users/me/workspace/intelligent-gagarin9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"764.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"82e906ea-1fd4-411e-b930-f16cded0c950\"}\n"} +{"Time":"2022-12-07T09:15:39.998922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:39.998: cmd: stdout: \"\\x1b[1mOrphaning workspace requires template edit permission\\x1b[0m\\r\"\n"} +{"Time":"2022-12-07T09:15:39.999014+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:39.999023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:39.999037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.998 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/users/hopeful-edison0/workspace/compassionate-torvalds9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"645.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8823aa94-38bd-4419-b7a5-8696822507be\"}\n"} +{"Time":"2022-12-07T09:15:39.999992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.999 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspaces/629a3c33-528c-4ca5-a3fa-31b1d8c74a58/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"619.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f3e17f4f-8f76-40dc-a4da-71cf68d883ab\"}\n"} +{"Time":"2022-12-07T09:15:40.000263+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.000277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.000282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.000 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspaces/da7b87d6-0523-4102-8348-4b8f838150d4/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.189875ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"c1fc05fb-acc0-4ebb-a5ac-22220bd532c2\"}\n"} +{"Time":"2022-12-07T09:15:40.000291+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.000294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.000299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.000: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.000541+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.000571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.000576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.000: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.001185+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.001194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.001199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.001 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/ed2629ac-006d-401b-a492-f360ebfcf962\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"818.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"225b23f4-e8f4-45c4-b6f7-d53e1f3fd56b\"}\n"} +{"Time":"2022-12-07T09:15:40.001536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.001548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.001553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.001 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/a6e99207-972b-4128-9ecd-03617f78e6ba\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"798.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f20c1499-e92f-44f1-84c6-27382b3f95b7\"}\n"} +{"Time":"2022-12-07T09:15:40.008278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:40.008317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.008326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.008 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:40.008711+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.008722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.008728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.008 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"902.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c6ae4f0b-9718-46a8-91af-4db1f46caea6\"}\n"} +{"Time":"2022-12-07T09:15:40.008738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:40.008742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.008747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.008 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:40.00903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.008 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33f51cad-45a7-43bd-bb00-e683120ed489\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"b29b9c1f-b052-4fbf-9580-0908365c535d\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.013885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.013 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.415042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"31f4ac3f-63cc-4db5-8a25-4cb52d1f571a\"}\n"} +{"Time":"2022-12-07T09:15:40.019423+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:40.019434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:40.019443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:40.019587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.019601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:40.019907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:40.019918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.019926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.019933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:40.020154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"request_id\": \"d94fc8f1-36df-4fbf-845a-bd724712cc2b\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.020166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.020 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"request_id\": \"d94fc8f1-36df-4fbf-845a-bd724712cc2b\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.020412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.020: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:40.020427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.020: cmd: stdout: \"✔ Setting up [103ms]\"\n"} +{"Time":"2022-12-07T09:15:40.02047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.020: cmd: stdout: \"⧗ \\x1b[;mStarting workspace\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.024303+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.024315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.024322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.024 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.024457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.024 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.024469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.024 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.02459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.024 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.03519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.034 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.345833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e99bf09f-4cb9-47dc-a24f-c7490861e618\"}\n"} +{"Time":"2022-12-07T09:15:40.044501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:40.044526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.04455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.038 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.320625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"539a8150-20b7-4c26-8cff-68d8d2346620\"}\n"} +{"Time":"2022-12-07T09:15:40.047412+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:40.047428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:40.047433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.047 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.047696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.047 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.047732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.047 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.060032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.060059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.060065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.059 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"871.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"56fd4cbf-ad1f-47bd-9edc-b07823031b06\"}\n"} +{"Time":"2022-12-07T09:15:40.060073+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:40.060077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.060092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.059 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:40.060098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.059 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.060103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.059 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:40.060108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.059 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:40.060112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.059 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:40.063046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.062 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"840.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"284c3c45-2081-478d-a182-86b6f60923ab\"}\n"} +{"Time":"2022-12-07T09:15:40.07107+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:40.07109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:40.071101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.070 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:40.071325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.07134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:40.071354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:40.071818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.071847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.071858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:40.071867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"request_id\": \"d94fc8f1-36df-4fbf-845a-bd724712cc2b\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.072134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"request_id\": \"d94fc8f1-36df-4fbf-845a-bd724712cc2b\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.072329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.072: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:40.072344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.072: cmd: stdout: \"✔ Starting workspace [51ms]\"\n"} +{"Time":"2022-12-07T09:15:40.072353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.072: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.075181+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.075198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.075209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.075 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.075546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.075 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.075679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.075 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33c80784-4057-45fa-9c62-59866e771ed6\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\"}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.085365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.085 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.923333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"34610512-8bed-458d-8149-ea5e58b5e8b2\"}\n"} +{"Time":"2022-12-07T09:15:40.089118+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:40.089145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.089158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.088 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.744708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9e211686-4992-46d7-a5cd-7a2d6fcb0b00\"}\n"} +{"Time":"2022-12-07T09:15:40.098343+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:40.098391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:40.098404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.098713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.09873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.098741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.099263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.099283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.099294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.099304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"request_id\": \"bc8132bf-6dde-42ba-9d49-2fa26efd497d\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.099679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"request_id\": \"bc8132bf-6dde-42ba-9d49-2fa26efd497d\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.110383+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:40.110413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.110427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.110 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:40.110444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.110 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.110983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.110997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.111007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.110 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.857334ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"af52b955-9de4-462c-955b-3b8bd02ad359\"}\n"} +{"Time":"2022-12-07T09:15:40.11102+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:40.111027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.111043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.110 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:40.111053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.110 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:40.111064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.110 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:40.113805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.113 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.559792ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"331dae16-6b99-423e-ba9d-1bec98daa465\"}\n"} +{"Time":"2022-12-07T09:15:40.12264+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:40.122664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:40.122673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.122 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:40.123179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.122 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:40.123199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.122 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:40.12321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.122 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:40.123223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.123 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} +{"Time":"2022-12-07T09:15:40.123963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.123 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/workspacebuilds/aad3e414-9393-4643-a752-ee47896a525e/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"530.735166ms\", \"status_code\": 101, \"latency_ms\": 530, \"request_id\": \"d94fc8f1-36df-4fbf-845a-bd724712cc2b\"}\n"} +{"Time":"2022-12-07T09:15:40.127297+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.127327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.127339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.126 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.127367+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:40.127375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:40.127383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.126 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/workspacebuilds/aad3e414-9393-4643-a752-ee47896a525e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.785417ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"4633e5ec-1307-4dda-bc96-9f192b055364\"}\n"} +{"Time":"2022-12-07T09:15:40.127396+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.127403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.127411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.126 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.127422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.126 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.127431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.126 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.127441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.127 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.127455+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} +{"Time":"2022-12-07T09:15:40.127462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} +{"Time":"2022-12-07T09:15:40.127469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:80: 2022-12-07 08:15:40.127: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:40.128306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.127 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:40.131313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:40.131429+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.131439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.135264+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.135287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.135294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.134 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.079959ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"421781ce-78a1-44a9-93e8-58bee1b68f56\"}\n"} +{"Time":"2022-12-07T09:15:40.139208+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.13923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.139237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.137 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.084µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2b49cee7-0c7c-47a6-8eef-14759d3f99e4\"}\n"} +{"Time":"2022-12-07T09:15:40.139247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.138 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"100.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d73d908f-a3fb-46ba-a55b-433e1de0cfdf\"}\n"} +{"Time":"2022-12-07T09:15:40.139254+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:40.139258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.139282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.138 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.24375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0a8b07d3-40b8-4b56-ae56-02a106c3b4d0\"}\n"} +{"Time":"2022-12-07T09:15:40.139596+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.139603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.13961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.139 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.057042ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"158a3503-8fde-453c-b69d-1bc2e06e2dc8\"}\n"} +{"Time":"2022-12-07T09:15:40.141924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.141 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/organizations/695a5fc6-59e6-4c3d-9ae1-eb7dc0d4e95e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.618208ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"610bf243-3f47-4e23-947e-293b959e1eab\"}\n"} +{"Time":"2022-12-07T09:15:40.142199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" configssh_test.go:669: waiting for template version job 222b2aa4-e22d-42b9-aefd-79ef56044ada\n"} +{"Time":"2022-12-07T09:15:40.15006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:40.150069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:40.150075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.149 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.150203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.150212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.150219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.150503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.150512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.150518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.150524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"request_id\": \"bc8132bf-6dde-42ba-9d49-2fa26efd497d\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.150663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"request_id\": \"bc8132bf-6dde-42ba-9d49-2fa26efd497d\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.15893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.158983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.158993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.164917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"08e0fbf1-b98a-4329-8bfb-4fe69647dfa6\"}\n"} +{"Time":"2022-12-07T09:15:40.161448+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:40.161459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.161466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.161 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:40.161601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.161 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:40.161716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.161 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:40.161728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.161 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} +{"Time":"2022-12-07T09:15:40.163306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.163 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.192667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ef0a6e13-c3cd-4a7d-92ad-68573c31708f\"}\n"} +{"Time":"2022-12-07T09:15:40.169105+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.169126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.169133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.168 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.06325ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"488b4866-5354-43b8-b02c-b1301f72fa19\"}\n"} +{"Time":"2022-12-07T09:15:40.171629+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:40.171648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.171675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.170 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"55.709µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"defa9080-42ae-4bd8-a6b2-65d0c833d3fd\"}\n"} +{"Time":"2022-12-07T09:15:40.171685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.171 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"42µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"210fdc16-df91-4ae5-81ec-9915fc8e4303\"}\n"} +{"Time":"2022-12-07T09:15:40.178256+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.178266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.178276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.178 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.178278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.178 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.17828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.178 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.178282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.178 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.178284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.178 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.184454+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:40.184467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.18447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.94275ms\", \"status_code\": 200, \"latency_ms\": 11, \"request_id\": \"e1824c4a-dfea-4cf0-bd8e-c844775b4c40\"}\n"} +{"Time":"2022-12-07T09:15:40.185573+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.185591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.185596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"811.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8efa6ad2-c644-4c7c-a4b0-9c3c7178def5\"}\n"} +{"Time":"2022-12-07T09:15:40.185606+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} +{"Time":"2022-12-07T09:15:40.185611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.185615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"568.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"48f06499-b7fa-4b3c-bb9e-5cf26c5336ae\"}\n"} +{"Time":"2022-12-07T09:15:40.18585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.185: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} +{"Time":"2022-12-07T09:15:40.185856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.185: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:40.185859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.185: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:40.185861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.185: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:40.185934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" configssh_test.go:694: 2022-12-07 08:15:40.185: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} +{"Time":"2022-12-07T09:15:40.185939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" configssh_test.go:695: 2022-12-07 08:15:40.185: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:40.185998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.185: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:40.186033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.186: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:40.186284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.186: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} +{"Time":"2022-12-07T09:15:40.186291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.186: cmd: stdout: \"For example, try running:\"\n"} +{"Time":"2022-12-07T09:15:40.186294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.186: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:40.186295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.186: cmd: stdout: \"\\t$ ssh coder.festive-williamson7\"\n"} +{"Time":"2022-12-07T09:15:40.18641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:80: 2022-12-07 08:15:40.186: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:40.186423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.186 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:40.187678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:40.187735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.18774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.190516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.190 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"91.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1eb9074b-b990-4c77-934c-43624bfd95eb\"}\n"} +{"Time":"2022-12-07T09:15:40.190683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.190 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"33.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8269a498-8197-45a9-af43-657ba1a5735a\"}\n"} +{"Time":"2022-12-07T09:15:40.191202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"359.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9a10f6e6-558a-4801-9585-1fd68929824d\"}\n"} +{"Time":"2022-12-07T09:15:40.19187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"499.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9dccdde6-4000-4455-a125-a8cf47641119\"}\n"} +{"Time":"2022-12-07T09:15:40.191948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" templatepush_test.go:38: waiting for template version job ddc53f1a-a846-498e-b19d-7ce91474c633\n"} +{"Time":"2022-12-07T09:15:40.193077+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.193085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.193087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.193 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"330.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ab6f7ac-16ab-4a85-8be3-ca759dc1c807\"}\n"} +{"Time":"2022-12-07T09:15:40.201179+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} +{"Time":"2022-12-07T09:15:40.20119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} +{"Time":"2022-12-07T09:15:40.201195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.201 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.201202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.201 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.201237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.201 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.201257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.201 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.2013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.201 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} +{"Time":"2022-12-07T09:15:40.201552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.201 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/workspacebuilds/835d4c3e-f06a-4134-a812-5a89b1441592/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"674.329708ms\", \"status_code\": 101, \"latency_ms\": 674, \"request_id\": \"bc8132bf-6dde-42ba-9d49-2fa26efd497d\"}\n"} +{"Time":"2022-12-07T09:15:40.2028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.202 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/workspacebuilds/835d4c3e-f06a-4134-a812-5a89b1441592\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bdf16fd2-a2a9-4da3-9d0a-d9d530b96cbd\"}\n"} +{"Time":"2022-12-07T09:15:40.202928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.202 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:40.203505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:40.203544+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.203556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.206019+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.206025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.206027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.205 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.206048+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.206056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.206062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.205 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"80.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f7bad595-ba1e-4029-a5ec-4d8e24cae413\"}\n"} +{"Time":"2022-12-07T09:15:40.206188+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.206193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.206194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.206275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:40.206319+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.206324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.206326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.206 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"46.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b6de1313-63af-4ac2-86ce-3e8ea85c7574\"}\n"} +{"Time":"2022-12-07T09:15:40.206332+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.206336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.206337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.206381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.206427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.206465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"workspace_name\": \"intelligent-gagarin9\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:40.206572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.206584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.206921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.206926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.206928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.206 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"71ecf637-f5b3-44e3-a471-d3793dc48e54\"}\n"} +{"Time":"2022-12-07T09:15:40.207852+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.207863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.207864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"407.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cbe37e36-5fe9-445b-930f-b914d1f34f6f\"}\n"} +{"Time":"2022-12-07T09:15:40.208297+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.208301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.208302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/organizations/33fd8505-9aa5-4c83-9346-728ee006063c/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.156959ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"cad9bddf-65ec-4af8-8b14-87a0bc988bbc\"}\n"} +{"Time":"2022-12-07T09:15:40.208399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" templatepush_test.go:164: waiting for template version job df256d05-38e8-45b9-a635-872e93f45d23\n"} +{"Time":"2022-12-07T09:15:40.218833+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.218838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.21884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.218 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"439d9782-c630-44c7-ae5a-2caddcbf6823\"}\n"} +{"Time":"2022-12-07T09:15:40.219504+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.219508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.219511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.219 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"973.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db713816-d526-4e9e-aa78-45e2e8c0c900\"}\n"} +{"Time":"2022-12-07T09:15:40.229016+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.229019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.229021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.228 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.229067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.229 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:40.229094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.229 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.229128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.229 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} +{"Time":"2022-12-07T09:15:40.232789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.232 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad76c233-9ea0-4f74-9eef-20ebf666e427\"}\n"} +{"Time":"2022-12-07T09:15:40.233884+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.233888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.233889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.233 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"250.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"22271d15-c9d8-432b-91f3-946133c5ff02\"}\n"} +{"Time":"2022-12-07T09:15:40.234877+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.234881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.234883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.234 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"c10645b6-7a26-4c9b-a501-96dd0bf74da2\"}\n"} +{"Time":"2022-12-07T09:15:40.235073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"46cbcc4b-db10-416e-8735-f4ce5dffc9eb\"}\n"} +{"Time":"2022-12-07T09:15:40.236376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.236384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.236386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.236 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:40.243148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.243 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"288.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0fd307d5-aa0a-4eb3-a368-423e244faf6a\"}\n"} +{"Time":"2022-12-07T09:15:40.243209+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.243211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.243214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.243 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a74c4cdf-59ba-4a66-8b41-5b841fee551f\"}\n"} +{"Time":"2022-12-07T09:15:40.246587+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} +{"Time":"2022-12-07T09:15:40.246592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} +{"Time":"2022-12-07T09:15:40.246594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.246 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.312708ms\", \"status_code\": 200, \"latency_ms\": 11, \"request_id\": \"adcf93d0-abb6-49c7-856b-c5e3405ccdef\"}\n"} +{"Time":"2022-12-07T09:15:40.24709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.247 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6cb103dd-46e2-46ee-8718-3b3b5823e9e0\"}\n"} +{"Time":"2022-12-07T09:15:40.24728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} +{"Time":"2022-12-07T09:15:40.247285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:40.247288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:40.24729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:40.247395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" configssh_test.go:694: 2022-12-07 08:15:40.247: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} +{"Time":"2022-12-07T09:15:40.247421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" configssh_test.go:695: 2022-12-07 08:15:40.247: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:40.247456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:40.247561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:40.24773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} +{"Time":"2022-12-07T09:15:40.247736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"For example, try running:\"\n"} +{"Time":"2022-12-07T09:15:40.247738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:40.24774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"\\t$ ssh coder.unruffled-tharp3\"\n"} +{"Time":"2022-12-07T09:15:40.247802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:80: 2022-12-07 08:15:40.247: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:40.247824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.247 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:40.248476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:40.248503+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.248507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.252631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.252 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"90.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5be82717-719d-43ef-bb52-4091b4b6f4ea\"}\n"} +{"Time":"2022-12-07T09:15:40.252815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.252 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2f6b51de-64cc-4457-a866-b4effbce72e3\"}\n"} +{"Time":"2022-12-07T09:15:40.253371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.253 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"454cfb30-ebee-44db-ab49-5c134c30a231\"}\n"} +{"Time":"2022-12-07T09:15:40.25401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.253 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/organizations/e1d0cad4-8acb-4f32-a70d-dac8dc55c512/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"467.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6e03a4e5-55e3-410a-ad91-140e16123cb4\"}\n"} +{"Time":"2022-12-07T09:15:40.254097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" templatepush_test.go:116: waiting for template version job 5caa0ef9-f2ac-42c5-a777-663fb4c6525d\n"} +{"Time":"2022-12-07T09:15:40.256996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.257002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.256 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.257025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.256 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.257039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.257 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.257054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.257 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.257129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.257 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.257138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.257 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"request_id\": \"6326e00e-1251-4eb2-9c7c-311eda6b432e\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.25725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.257 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.257283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.257: cmd: stdout: \"\\x1b[1A\\r✔ Queued [205ms]\"\n"} +{"Time":"2022-12-07T09:15:40.257315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.257 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.257346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.257: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.259859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.259863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.259866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"350.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"45c38223-b75c-4676-a4ef-5f7c61494838\"}\n"} +{"Time":"2022-12-07T09:15:40.269057+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.269061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.269064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.269 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"365.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"801ab054-d485-4c0e-a9b7-84d12fcc289c\"}\n"} +{"Time":"2022-12-07T09:15:40.269525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.26953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.269532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.269 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"782.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31339c9f-9862-432c-98d4-8744e6e0c593\"}\n"} +{"Time":"2022-12-07T09:15:40.269778+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:40.269781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:40.269783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.269 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.269854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.269 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.269898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.269 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:40.269915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.269 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.269945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.269 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.269959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.269 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.269979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.269 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:40.270114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.270 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.270152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.270 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.280564+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.280574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.280584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.280 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"286.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1dc871c2-fa7c-40ce-bb95-0a7be56222b3\"}\n"} +{"Time":"2022-12-07T09:15:40.284175+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.284181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.284183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.284 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"252.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"148de1c2-3e57-4a20-a211-093ba6b91825\"}\n"} +{"Time":"2022-12-07T09:15:40.286721+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.286725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.286728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.28679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.286829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:40.286855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.286879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"size_bytes\": 119, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.286898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"size_bytes\": 119, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.286908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.28698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:40.290015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.290027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.290033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.289 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:40.292606+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.292643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.292652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.292 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f9a7f89f-9737-4e7d-9ada-0f8b0f411bce\"}\n"} +{"Time":"2022-12-07T09:15:40.292664+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.292669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.292673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.292 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"257.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aa62f9cb-1fef-4ff1-8376-c95226e2e0a2\"}\n"} +{"Time":"2022-12-07T09:15:40.307118+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.307147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.307154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.306 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:40.308556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.308574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.308581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.307 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.308588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.307 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Destroying workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.308594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.307 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.3086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.307 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.308605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.307 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.308611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.307 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Destroying workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.308616+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.308 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"request_id\": \"6326e00e-1251-4eb2-9c7c-311eda6b432e\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.308622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.308 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"request_id\": \"6326e00e-1251-4eb2-9c7c-311eda6b432e\", \"stage\": \"Destroying workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.308628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.308 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.309449+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.309458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.309463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.308 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.491333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d9ba6b8f-7fcc-4cf5-a0e7-b53009cb1a7c\"}\n"} +{"Time":"2022-12-07T09:15:40.309471+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.309475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.3095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.308: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:40.309505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.308: cmd: stdout: \"✔ Setting up [51ms]\"\n"} +{"Time":"2022-12-07T09:15:40.309511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.308: cmd: stdout: \"⧗ \\x1b[;mDestroying workspace\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.309765+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.309774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.30978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.309 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"766.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b1d93f82-7eb4-46a1-88cc-7b75080d1d79\"}\n"} +{"Time":"2022-12-07T09:15:40.311788+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:40.311807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:40.311814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.310 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.311821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.310 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.311828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.310 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:40.311834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.310 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"size_bytes\": 81, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.311841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.310 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.311847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.311 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.311853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.311 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": [{\"destination_scheme\": 1, \"name\": \"region\", \"value\": \"bingo\"}, {\"destination_scheme\": 1, \"name\": \"username\", \"value\": \"boingo\"}]}\n"} +{"Time":"2022-12-07T09:15:40.311861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.311 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.311866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.311 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.31905+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.31907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.319077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"875.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8849f2d3-e976-4a44-b4b3-ef3957937265\"}\n"} +{"Time":"2022-12-07T09:15:40.319086+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.319091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.319096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.019875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d4609603-1071-4580-bb6b-2df28511bc18\"}\n"} +{"Time":"2022-12-07T09:15:40.323587+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:40.323607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:40.323614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.322 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.323625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.322 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.323632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.322 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.323645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.322 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.32365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.323 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.323655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.323 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"request_id\": \"9a433cb6-9c9a-4653-b77d-a7522493e86f\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.323752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.323: cmd: stdout: \"\\x1b[1A\\r✔ Queued [742ms]\"\n"} +{"Time":"2022-12-07T09:15:40.32376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.323: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.332356+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.332376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.332382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.332 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"822.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c6d5303d-b4b2-400a-b197-ffeaf2160d98\"}\n"} +{"Time":"2022-12-07T09:15:40.334608+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.334622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.334627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"735.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c78ecfd-579b-42f4-b6c2-c7a0f20efc0e\"}\n"} +{"Time":"2022-12-07T09:15:40.335527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.335537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.335544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.335 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"16.209µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:40.338531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.338 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.338554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.338 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"071b1431-dae4-4cb7-8813-e8755d14cd3d\", \"name\": \"agent1\", \"Auth\": null}, {\"id\": \"ca9f2437-218b-4cb2-88d8-80a1345751b9\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.340347+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.340357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.340363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.340494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.340595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:40.340659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.340724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.340784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.340793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.340925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:40.343501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.343 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"686.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"92a4f2e2-0d88-464f-b25f-bbf5998fc322\"}\n"} +{"Time":"2022-12-07T09:15:40.343525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.343529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.343537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.343 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"726.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6906b8aa-5e07-47ce-8e70-67983e908bde\"}\n"} +{"Time":"2022-12-07T09:15:40.350504+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.350533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.350539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.350 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:40.355632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.355 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"978.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b95b6ccd-10ff-42da-ba4e-e4d6d7f74853\"}\n"} +{"Time":"2022-12-07T09:15:40.357526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.357548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.357556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.357 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.357732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.357 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.357886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.357 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:40.358043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.357 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushUseWorkingDir2330205981/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.358201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.357 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushUseWorkingDir2330205981/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.35833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.358 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushUseWorkingDir2330205981/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.358344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.358 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.358734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.358 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:40.36344+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.363466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.363476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.358 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.363497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.358 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.363508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.358 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.363518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.359 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.363527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.359 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Destroying workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.363537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.359 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.363547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.359 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"request_id\": \"6326e00e-1251-4eb2-9c7c-311eda6b432e\", \"stage\": \"Destroying workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.363558+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.363565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.363573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.360 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.464666ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0c8882bd-7fe9-422d-935d-8b5ed6f74120\"}\n"} +{"Time":"2022-12-07T09:15:40.363586+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.363593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.3636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"request_id\": \"6326e00e-1251-4eb2-9c7c-311eda6b432e\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.36361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.362 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.364734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.363: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:40.364749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.363: cmd: stdout: \"✔ Destroying workspace [51ms]\"\n"} +{"Time":"2022-12-07T09:15:40.364754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.363: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.36476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:40.364764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:40.364769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.363 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.364775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.364 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.364781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.364 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.364787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.364 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.364792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.364 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.364798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.364 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"request_id\": \"b87d5685-49b1-4b79-a192-43e09c7b9da3\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.364804+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.364808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.364812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" delete_test.go:71: 2022-12-07 08:15:40.364: cmd: matched \"Cleaning Up\" = \"\\x1b[1mOrphaning workspace requires template edit permission\\x1b[0m\\r\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [205ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n \\r\\n✔ Setting up [51ms]\\r\\n⧗ \\x1b[;mDestroying workspace\\x1b[0m \\r\\n \\r\\n✔ Destroying workspace [51ms]\\r\\n⧗ \\x1b[;mCleaning Up\"\n"} +{"Time":"2022-12-07T09:15:40.364921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:40.364927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:40.364931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.364: cmd: stdout: \"\\x1b[1A\\r✔ Queued [571ms]\"\n"} +{"Time":"2022-12-07T09:15:40.364936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.364: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.370445+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.370468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.370477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.369 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.49625ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"ea5c214b-bd74-4d02-855c-8b7432814661\"}\n"} +{"Time":"2022-12-07T09:15:40.370488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.370494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.3705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.370 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.702917ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"c4abe63a-2647-4bff-8870-6614d24141b6\"}\n"} +{"Time":"2022-12-07T09:15:40.373629+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:40.373648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:40.373658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.373 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.373985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.373 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.374112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.373 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.38108+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.381125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.381133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.380 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"864.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90c7ab0d-425f-47bd-9313-dd453f1c02c1\"}\n"} +{"Time":"2022-12-07T09:15:40.386515+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.38654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.386549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.35375ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"d46543d0-d3cd-488a-8aa2-14391dba5ae8\"}\n"} +{"Time":"2022-12-07T09:15:40.388945+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.388988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.388999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.388 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.389015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.388 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.389519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.389 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.389535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.389 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.389547+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.389554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.389563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.389 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"25.291µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:40.389574+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.389581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.389589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.389 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.389599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.389 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.389609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.389 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.390021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.389 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"071b1431-dae4-4cb7-8813-e8755d14cd3d\", \"name\": \"agent1\", \"Auth\": null}, {\"id\": \"ca9f2437-218b-4cb2-88d8-80a1345751b9\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.390046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.389 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.39152+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.391537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.391552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.391 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.396094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.391 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.396119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.395 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.023709ms\", \"status_code\": 200, \"latency_ms\": 3, \"request_id\": \"ac965e41-6200-4683-beeb-302c1d590e82\"}\n"} +{"Time":"2022-12-07T09:15:40.396862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.396872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.396878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"866.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a120cd7-6f48-49a1-b012-3e2c9b4d63c0\"}\n"} +{"Time":"2022-12-07T09:15:40.401829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.401853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.401861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.401 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.402228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.401 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.40224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.402 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:40.416756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.402 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushOK123133992/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.416782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.416786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.416788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.414 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"23.334µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:40.416792+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.416794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.416797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.402 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushOK123133992/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.416802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.414 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushOK123133992/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.416816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.414 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.416819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.414 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:40.416825+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:40.416828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:40.41683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.415 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.416833+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.416834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.416836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.415 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.416839+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.41684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.416842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.416 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.416845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.416 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.41685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.416 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.417032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.416 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.41704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.416 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} +{"Time":"2022-12-07T09:15:40.417385+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:40.417388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:40.417391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.417 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.417394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.417 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.417396+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.417398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.4174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.417 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.417403+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.417405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.417407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.417 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/a6e99207-972b-4128-9ecd-03617f78e6ba/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"414.04825ms\", \"status_code\": 101, \"latency_ms\": 414, \"request_id\": \"6326e00e-1251-4eb2-9c7c-311eda6b432e\"}\n"} +{"Time":"2022-12-07T09:15:40.417753+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.417765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.417769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.417 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"802.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"47d3d363-ddec-4261-ab83-72d2a3d3d18d\"}\n"} +{"Time":"2022-12-07T09:15:40.417775+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.417777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.417779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.417 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"849.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"315a472b-09ee-4a98-8428-e9f381016e8d\"}\n"} +{"Time":"2022-12-07T09:15:40.418377+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.418384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.418388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.418 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"621.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d4d612f6-868a-4d9a-b990-062546f68976\"}\n"} +{"Time":"2022-12-07T09:15:40.418393+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.418396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.418398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.418 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"618.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d81ff290-4476-4c63-82f7-df6736d0d939\"}\n"} +{"Time":"2022-12-07T09:15:40.419308+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} +{"Time":"2022-12-07T09:15:40.419317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} +{"Time":"2022-12-07T09:15:40.419321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.419 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/a6e99207-972b-4128-9ecd-03617f78e6ba\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"736.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cfb16d04-98af-453e-ac4c-c1f4a1f3b1d5\"}\n"} +{"Time":"2022-12-07T09:15:40.419525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:80: 2022-12-07 08:15:40.419: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:40.419533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.419: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [108ms]\"\n"} +{"Time":"2022-12-07T09:15:40.41961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.419: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:40.419634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.419: cmd: stdout: \"The intelligent-gagarin9 workspace has been deleted at Dec 7 09:15:40!\"\n"} +{"Time":"2022-12-07T09:15:40.419652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.419 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:40.420329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:40.420414+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.420422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.423734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.423 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"116.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e22c6249-f076-44c6-b85f-d9430ab8a53e\"}\n"} +{"Time":"2022-12-07T09:15:40.423921+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.423 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"03288c1e-cc2d-4cce-afb4-9881aabbb71a\"}\n"} +{"Time":"2022-12-07T09:15:40.424295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:40.424303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:40.424308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.424353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.424375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.42439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.424454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.424461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.424487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.424523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"request_id\": \"9a433cb6-9c9a-4653-b77d-a7522493e86f\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.424587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"request_id\": \"9a433cb6-9c9a-4653-b77d-a7522493e86f\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.424622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.424631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.424634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"510.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b7aec473-3867-4a1b-8ef0-fb0797853a1d\"}\n"} +{"Time":"2022-12-07T09:15:40.424641+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:40.424643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:40.424645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.424: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:40.42469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.424: cmd: stdout: \"✔ Setting up [104ms]\"\n"} +{"Time":"2022-12-07T09:15:40.424709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.424: cmd: stdout: \"⧗ \\x1b[;mStarting workspace\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.425467+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.425474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.425497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.425 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/organizations/d54c4ffe-ed2e-44b3-8ae6-61efc0b41369/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"651.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"365872ac-4499-47f2-a883-6cf5d73720bb\"}\n"} +{"Time":"2022-12-07T09:15:40.425579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" configssh_test.go:542: waiting for template version job 1b412497-1a7d-448f-bd29-9d7095591adc\n"} +{"Time":"2022-12-07T09:15:40.430956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.430961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.430963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.430 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"435.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"428c6032-f9d6-400b-b5fe-2495f625ea88\"}\n"} +{"Time":"2022-12-07T09:15:40.435373+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.435383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.435386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"454.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6a2d79d-3547-43fd-91dc-9172c804ef80\"}\n"} +{"Time":"2022-12-07T09:15:40.440704+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.44071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.440714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.440 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.440722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.440 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.440746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.440 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.44076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.440 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.44079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.440 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.440851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.440 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.441882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.441888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.441891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.441 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.441908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.441 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.441931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.441 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.441954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.441 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.44198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.441 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.442009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.441 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.442043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.442 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.442209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.442 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.442264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.442 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.443465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.443 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"497.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"88a85c93-15a8-4fd8-8a8a-fedb97d0fe5c\"}\n"} +{"Time":"2022-12-07T09:15:40.443582+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.443589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.443592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.443 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"583.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7059f02d-af7a-4d30-b6ae-8347932b54b3\"}\n"} +{"Time":"2022-12-07T09:15:40.449695+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.449703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.449707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.449 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"11.917µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:40.451638+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.451647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.451652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.451 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"581.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4be1961a-3ce3-41cb-b90b-33140429c0ff\"}\n"} +{"Time":"2022-12-07T09:15:40.455182+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.455192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.455196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.455 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"587.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a82766e9-fc4b-4f3d-9fd9-f6addabff8a0\"}\n"} +{"Time":"2022-12-07T09:15:40.459732+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.459743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.459748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.459 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"646.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"00f17740-5f1c-4ecb-8068-10ef40e8a879\"}\n"} +{"Time":"2022-12-07T09:15:40.465936+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.465967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.465974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.465 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.466259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.466 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.467734+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.467746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.467751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.467757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.467763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.467767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.467772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.467777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.467781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.467786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.467791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.468844+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.468857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.468862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.468 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.194416ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d1446da7-91d7-427a-aa57-dd43bd415cc0\"}\n"} +{"Time":"2022-12-07T09:15:40.469061+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.469067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.469072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.468 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"688.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c40cf6d2-c353-40f1-9346-79b1e5d44451\"}\n"} +{"Time":"2022-12-07T09:15:40.469268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:40.469568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:40.469575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.469582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.469588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.469594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.470032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.47004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.470045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.470049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"request_id\": \"b87d5685-49b1-4b79-a192-43e09c7b9da3\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.470054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"request_id\": \"b87d5685-49b1-4b79-a192-43e09c7b9da3\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.470136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.470: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:40.470143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.470: cmd: stdout: \"✔ Setting up [106ms]\"\n"} +{"Time":"2022-12-07T09:15:40.470149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.470: cmd: stdout: \"⧗ \\x1b[;mStarting workspace\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.475383+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:40.475404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:40.47541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.475417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.475646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.475656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.475661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.476077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.476085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.47609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"request_id\": \"9a433cb6-9c9a-4653-b77d-a7522493e86f\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.476095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"request_id\": \"9a433cb6-9c9a-4653-b77d-a7522493e86f\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.476275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.476: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:40.476282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.476: cmd: stdout: \"✔ Starting workspace [51ms]\"\n"} +{"Time":"2022-12-07T09:15:40.476286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.476: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.477078+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.477088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.477093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.476 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"845µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33f3b9b6-ef53-4339-8b93-4b96f748c7ce\"}\n"} +{"Time":"2022-12-07T09:15:40.482924+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.482953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.482959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.482 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.268125ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"2028f01e-7e69-4f0a-a9c3-99e69f384f10\"}\n"} +{"Time":"2022-12-07T09:15:40.484441+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.48447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.484477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.484 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"751.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"514bcb92-9820-4026-a787-652eb652fb9d\"}\n"} +{"Time":"2022-12-07T09:15:40.492432+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.492453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.492459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.491 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.492465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.492 [INFO]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:40.492471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.492 [INFO]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:40.492477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.492481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.492486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.492 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} +{"Time":"2022-12-07T09:15:40.493216+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.493222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.493228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.493232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.493239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.493244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.493249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.493254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.493258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.493 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"812.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"556139b6-1fe6-47b2-b514-410906566a9b\"}\n"} +{"Time":"2022-12-07T09:15:40.49829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.498339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.498349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.498 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"4.673375ms\", \"status_code\": 200, \"latency_ms\": 4, \"request_id\": \"6edff73f-194a-410e-a3bf-1aed7eb1ef27\"}\n"} +{"Time":"2022-12-07T09:15:40.499647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.499 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/organizations/695a5fc6-59e6-4c3d-9ae1-eb7dc0d4e95e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"897.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6bfdfe5a-ffc3-4812-ad34-5edfe6cb1d8e\"}\n"} +{"Time":"2022-12-07T09:15:40.501768+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.501787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.501793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.501 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"693.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bfd8f2e2-e39a-4ab0-89ad-9e6e01e43eaa\"}\n"} +{"Time":"2022-12-07T09:15:40.501801+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.501829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.501833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.501 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/organizations/695a5fc6-59e6-4c3d-9ae1-eb7dc0d4e95e/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.701375ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"24b63451-c976-4de6-a96d-5b370d9678ca\"}\n"} +{"Time":"2022-12-07T09:15:40.501841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" configssh_test.go:672: waiting for workspace build job 0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\n"} +{"Time":"2022-12-07T09:15:40.506916+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.506949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.506956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.506 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"786.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fbe5d904-b8f5-40dc-a1e7-4b5670d81930\"}\n"} +{"Time":"2022-12-07T09:15:40.509727+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.509779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.509787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.509 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"826.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"09ac4f4b-e2ba-45fc-9bab-16275a254bf8\"}\n"} +{"Time":"2022-12-07T09:15:40.51728+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.517311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.517318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.517324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.517333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.517338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.518768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.518797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.518803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.518808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.518813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.518819+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.518823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.518827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.518832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.518837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.518843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.518847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.518852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.518 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.518857+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.51886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.518864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.518 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"946.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61fe7c7f-8f67-4272-98a0-af971a981522\"}\n"} +{"Time":"2022-12-07T09:15:40.522228+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:40.522259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:40.522265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.519 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.522272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.519 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.522278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.520 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.522289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.520 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.522297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.522 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.522302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.522 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.522758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.522 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"request_id\": \"b87d5685-49b1-4b79-a192-43e09c7b9da3\", \"stage\": \"Starting workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.522769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.522 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.522775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.522 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"request_id\": \"b87d5685-49b1-4b79-a192-43e09c7b9da3\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.522924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.522: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:40.52293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.522: cmd: stdout: \"✔ Starting workspace [53ms]\"\n"} +{"Time":"2022-12-07T09:15:40.522935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.522: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.523018+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.523049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.523057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.522 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:40.532708+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:40.532742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:40.532772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.526 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.532816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.526 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.532821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.526 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.532826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.526 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.53283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.526 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} +{"Time":"2022-12-07T09:15:40.532836+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.532839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.532844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.531 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.829708ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"09677946-3ed4-4f74-849a-78cb1f019ef6\"}\n"} +{"Time":"2022-12-07T09:15:40.53285+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:40.532854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:40.532857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/workspacebuilds/a693fe94-96b6-4e0f-9ca0-835aa85a3def/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.00498975s\", \"status_code\": 101, \"latency_ms\": 1004, \"request_id\": \"9a433cb6-9c9a-4653-b77d-a7522493e86f\"}\n"} +{"Time":"2022-12-07T09:15:40.532868+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.532873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.532877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.246209ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"b66d961a-95ec-4b02-a080-512d402043b9\"}\n"} +{"Time":"2022-12-07T09:15:40.534685+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.534712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.534719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.534 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.192125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"73224c7f-2ed0-4687-b0c2-27e3a5218411\"}\n"} +{"Time":"2022-12-07T09:15:40.535414+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.535428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.535436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"913.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a5ddda9-c257-4d7e-aa12-cbd00b99436f\"}\n"} +{"Time":"2022-12-07T09:15:40.536127+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} +{"Time":"2022-12-07T09:15:40.536141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} +{"Time":"2022-12-07T09:15:40.536146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/workspacebuilds/a693fe94-96b6-4e0f-9ca0-835aa85a3def\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.19475ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4e86c89f-a7c2-460e-9b9e-205136fde176\"}\n"} +{"Time":"2022-12-07T09:15:40.536425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.536: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [102ms]\"\n"} +{"Time":"2022-12-07T09:15:40.53645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.536: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:40.53646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.536: cmd: stdout: \"The my-workspace workspace has been created at Dec 7 09:15:40!\"\n"} +{"Time":"2022-12-07T09:15:40.537438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/users/testuser/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"822.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f1ab0f47-f438-40b8-a589-a7afa80191f7\"}\n"} +{"Time":"2022-12-07T09:15:40.537753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:80: 2022-12-07 08:15:40.537: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:40.537865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.537 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:40.539857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:40.539928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.539946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.543234+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.543247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.543253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.543 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.543261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.543 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.543316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.543 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.543401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.543 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} +{"Time":"2022-12-07T09:15:40.54644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.544 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"813.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"35abb19e-c804-42e0-98c9-f94d3e9dba0f\"}\n"} +{"Time":"2022-12-07T09:15:40.547857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.547 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"867.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3a941ee6-7f5b-41f0-b6f8-171edfe583aa\"}\n"} +{"Time":"2022-12-07T09:15:40.547957+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.547965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.547971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.547 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"232.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"50e52581-f2f4-4b39-81ae-160ed9d4e036\"}\n"} +{"Time":"2022-12-07T09:15:40.548492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.548 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"124.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a453c44f-5712-495e-a791-2878ac71f8f6\"}\n"} +{"Time":"2022-12-07T09:15:40.549926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.549 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.009208ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"9769e6e4-d13b-4eb0-bdcd-06bb5bda685a\"}\n"} +{"Time":"2022-12-07T09:15:40.551762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/organizations/0bd0d8e1-006e-4cd0-8fd6-9679d77c9ea6/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.345708ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"0104a20d-29e3-4b49-9ff9-830acb034d31\"}\n"} +{"Time":"2022-12-07T09:15:40.551978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:542: waiting for template version job e4324252-32d9-4184-aca3-95c01cb67069\n"} +{"Time":"2022-12-07T09:15:40.553372+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.553386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.553393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.553 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"960.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"132ae44a-2d1c-4c0b-8407-62d81be1a7ca\"}\n"} +{"Time":"2022-12-07T09:15:40.554219+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.554229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.554235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.554 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.791µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"50468f64-2379-4b13-885d-6b985ee4804c\"}\n"} +{"Time":"2022-12-07T09:15:40.554557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.554 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9adb13e3-90ff-4468-a4df-202a8bcd4f94\"}\n"} +{"Time":"2022-12-07T09:15:40.555669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.555 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"792.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e10eb51-bfc8-45d5-b0b7-b73565802250\"}\n"} +{"Time":"2022-12-07T09:15:40.556832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.556 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templates/intelligent-euler0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"734.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a552dc0b-4fb9-46fb-94d9-a91b2129c663\"}\n"} +{"Time":"2022-12-07T09:15:40.557098+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.557116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.557125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"942.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2b821217-e06b-4bf4-a784-c4480186c6f8\"}\n"} +{"Time":"2022-12-07T09:15:40.55715+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.557155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.557161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.014792ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e43bbad9-c4ed-4a95-8c84-7148c00b7b89\"}\n"} +{"Time":"2022-12-07T09:15:40.558449+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.558458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.558463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.558 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"539.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c9331b47-4b15-4357-a273-2907073d61c5\"}\n"} +{"Time":"2022-12-07T09:15:40.55984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.559 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.075166ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"a1af7951-302d-4d45-bcc6-38aff3d58c12\"}\n"} +{"Time":"2022-12-07T09:15:40.560142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.560: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.560392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.560407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.560412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.560 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"735.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6f944d42-6e33-43e2-b065-cbcc8146f429\"}\n"} +{"Time":"2022-12-07T09:15:40.560746+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.560755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.560759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.560 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ea99ccca-a709-4378-ac95-b93cd03775f8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"540.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"82d1c758-c827-4db5-86c0-0aaca0f999a8\"}\n"} +{"Time":"2022-12-07T09:15:40.568182+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.568199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.568204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.568222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.568232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.568259+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.568265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.568269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.568278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.568288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.568348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.568404+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.568415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.56842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.568431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.568436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.56844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.568449+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.568452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.568456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.568553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.568 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} +{"Time":"2022-12-07T09:15:40.568574+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.568578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.568586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.573182+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:40.573196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:40.573205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.573257+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.573267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.573272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.573282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:40.573287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:40.573292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.573302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.573382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.573 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.573401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} +{"Time":"2022-12-07T09:15:40.573444+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.573458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.573464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.573584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:40.573633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.573734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.573759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.573809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.57392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:40.573936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:40.573941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/workspacebuilds/0424bef1-25f5-4ff1-b055-890ba8ca6334/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"833.047833ms\", \"status_code\": 101, \"latency_ms\": 833, \"request_id\": \"b87d5685-49b1-4b79-a192-43e09c7b9da3\"}\n"} +{"Time":"2022-12-07T09:15:40.574016+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.574025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.574031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:40.576281+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:40.5763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:40.576307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.576 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/workspacebuilds/0424bef1-25f5-4ff1-b055-890ba8ca6334\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"988.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24db413f-113b-4994-885f-aa3623ed72e9\"}\n"} +{"Time":"2022-12-07T09:15:40.576557+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.576568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.576573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.576 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"699.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a08c032-0bc3-44a8-9c57-2a2d8f211410\"}\n"} +{"Time":"2022-12-07T09:15:40.576629+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:40.576641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:40.576648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:80: 2022-12-07 08:15:40.576: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:40.576657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.576: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [104ms]\"\n"} +{"Time":"2022-12-07T09:15:40.576666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.576: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:40.576674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.576: cmd: stdout: \"The my-workspace workspace has been created at Dec 7 09:15:40!\"\n"} +{"Time":"2022-12-07T09:15:40.577302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.577 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:40.577797+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.577807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.577812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.577 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"659.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06c585ef-7f26-4d02-8283-7af96b2fbc2b\"}\n"} +{"Time":"2022-12-07T09:15:40.577893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.577911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.577917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.577 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"659.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c760f7a4-e4d4-4583-b6cb-2be8e22a7917\"}\n"} +{"Time":"2022-12-07T09:15:40.578638+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} +{"Time":"2022-12-07T09:15:40.578651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} +{"Time":"2022-12-07T09:15:40.578656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:40.578707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate","Output":"--- PASS: TestCreate (0.00s)\n"} +{"Time":"2022-12-07T09:15:40.578719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" --- PASS: TestCreate/Create (1.00s)\n"} +{"Time":"2022-12-07T09:15:40.578724+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Elapsed":1} +{"Time":"2022-12-07T09:15:40.578733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" --- PASS: TestCreate/WithParameterFileNotContainingTheValue (0.36s)\n"} +{"Time":"2022-12-07T09:15:40.578739+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Elapsed":0.36} +{"Time":"2022-12-07T09:15:40.578746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" --- PASS: TestCreate/FailedDryRun (0.73s)\n"} +{"Time":"2022-12-07T09:15:40.57875+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Elapsed":0.73} +{"Time":"2022-12-07T09:15:40.578754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" --- PASS: TestCreate/WithParameter (1.53s)\n"} +{"Time":"2022-12-07T09:15:40.578759+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Elapsed":1.53} +{"Time":"2022-12-07T09:15:40.578762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" --- PASS: TestCreate/CreateFromListWithSkip (1.37s)\n"} +{"Time":"2022-12-07T09:15:40.578768+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Elapsed":1.37} +{"Time":"2022-12-07T09:15:40.578772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" --- PASS: TestCreate/FromNothing (1.86s)\n"} +{"Time":"2022-12-07T09:15:40.578775+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Elapsed":1.86} +{"Time":"2022-12-07T09:15:40.578778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" --- PASS: TestCreate/WithParameterFileContainingTheValue (2.15s)\n"} +{"Time":"2022-12-07T09:15:40.578793+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Elapsed":2.15} +{"Time":"2022-12-07T09:15:40.578797+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate","Elapsed":0} +{"Time":"2022-12-07T09:15:40.5788+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.578806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.581583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.581595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.5816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"775.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1a5501d5-46c7-463a-b130-4f456428e9f7\"}\n"} +{"Time":"2022-12-07T09:15:40.583785+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.583796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.583801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.583 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"201.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4ec54563-aaaf-40c4-8a90-fe389915e7b6\"}\n"} +{"Time":"2022-12-07T09:15:40.584167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.584 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"72.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e518f819-041f-4ff5-9f33-d0060d10e9ac\"}\n"} +{"Time":"2022-12-07T09:15:40.585417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"885.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4be7f0ea-4eed-490f-ae8d-7eead954d268\"}\n"} +{"Time":"2022-12-07T09:15:40.586017+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.586028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.586033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"762.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"541c5781-5b40-45c5-9578-7de073461f30\"}\n"} +{"Time":"2022-12-07T09:15:40.586893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.586905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.58691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/organizations/23b3d90f-6782-4495-ba31-1071723e228a/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.134833ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"b95d5972-fc9e-4317-baea-6e7c6ca5b1a4\"}\n"} +{"Time":"2022-12-07T09:15:40.587063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" configssh_test.go:542: waiting for template version job 45621f32-2499-43da-9330-79a358eb2201\n"} +{"Time":"2022-12-07T09:15:40.587858+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.587869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.587879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/organizations/33fd8505-9aa5-4c83-9346-728ee006063c/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"578.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"65459bec-f51f-4ad2-8e7e-9cecea207fe1\"}\n"} +{"Time":"2022-12-07T09:15:40.588444+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.588455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.588459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.588 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.588614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.588 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.588699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.588 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:40.588768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.588 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.588817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.588 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.588854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.588 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.588892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.588 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"workspace_name\": \"compassionate-torvalds9\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:40.589164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.589 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.589193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.589 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.591727+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.591739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.591743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.591 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"27.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"0283bec2-97dc-4940-be6e-9ef9b3174b3f\"}\n"} +{"Time":"2022-12-07T09:15:40.59201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.591 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"29.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4feaa916-a4c3-4120-bf34-5a828b52f420\"}\n"} +{"Time":"2022-12-07T09:15:40.592842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.592 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"561.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5dd871ff-24eb-45a1-983d-d89dda264c36\"}\n"} +{"Time":"2022-12-07T09:15:40.593635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.593 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/organizations/33fd8505-9aa5-4c83-9346-728ee006063c/templates/003\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"500.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8052aa2b-0567-44e2-8673-675b20ca357e\"}\n"} +{"Time":"2022-12-07T09:15:40.593829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" templatepush_test.go:197: 2022-12-07 08:15:40.593: cmd: matched \"Upload\" = \"\u003e Upload\"\n"} +{"Time":"2022-12-07T09:15:40.593852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" templatepush_test.go:198: 2022-12-07 08:15:40.593: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:40.593931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.593: cmd: stdout: \"\u003e Upload \\\"/tmp/TestTemplatePushUseWorkingDir2330205981/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:40.594919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.594 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"480.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4b3618c2-d947-4ceb-9f63-f936f619afe9\"}\n"} +{"Time":"2022-12-07T09:15:40.596136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.596 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/organizations/33fd8505-9aa5-4c83-9346-728ee006063c/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"941.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6c07ffe7-da12-43a0-853e-d53e6b8b624c\"}\n"} +{"Time":"2022-12-07T09:15:40.59631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.596: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.596888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.596 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/8aa2f2c6-0514-4b25-9790-85c365cce0be\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"343eda06-4019-402d-8383-0ee6029bc87c\"}\n"} +{"Time":"2022-12-07T09:15:40.602785+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.602793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.602798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.602 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"691.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6f280f3e-d192-4f27-826b-fb3f59882db8\"}\n"} +{"Time":"2022-12-07T09:15:40.603835+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.603843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.603847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"773.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6924e4d2-2b58-4e34-a4df-e1ad14d46495\"}\n"} +{"Time":"2022-12-07T09:15:40.603856+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.60386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.603864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"766.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"056f9b7b-3d99-4445-a464-3e57a04fadd4\"}\n"} +{"Time":"2022-12-07T09:15:40.60477+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.604781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.604784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.604 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"453.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b0d7e28d-61ae-42e8-b3b8-001497181df2\"}\n"} +{"Time":"2022-12-07T09:15:40.613686+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.613694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.613698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.613 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"463.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9d091c71-5398-40fc-89f3-6b86b976787a\"}\n"} +{"Time":"2022-12-07T09:15:40.619316+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.619325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.619328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.619 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.619356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.619 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.619438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.619 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.619476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.619 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} +{"Time":"2022-12-07T09:15:40.622432+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.622449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.622453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.622 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"41µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:40.624149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.624 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.624361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.624 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.626461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.626 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"469.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d8ca81ec-1dad-499e-9917-2c221aba928b\"}\n"} +{"Time":"2022-12-07T09:15:40.627617+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.627634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.627638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.627 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"471µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"707e2925-9a52-4871-8721-1dcbf089228e\"}\n"} +{"Time":"2022-12-07T09:15:40.627674+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.627678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.627681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.627 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"585.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a41656a2-93e5-4a64-b9d6-610f7aa68b07\"}\n"} +{"Time":"2022-12-07T09:15:40.629911+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.62992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.629923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.629 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"461.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4214318d-568a-4b29-aef4-c556d424f774\"}\n"} +{"Time":"2022-12-07T09:15:40.630718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.630 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/organizations/e1d0cad4-8acb-4f32-a70d-dac8dc55c512/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.541µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"aeca81fa-3ccd-48a8-97c9-64af07408d59\"}\n"} +{"Time":"2022-12-07T09:15:40.635466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"28.167µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"586fb8f7-35f6-4007-a90f-b2afcbb6ae7d\"}\n"} +{"Time":"2022-12-07T09:15:40.635807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"34.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f65d8d18-dc92-4457-8fa5-733d2add3d7a\"}\n"} +{"Time":"2022-12-07T09:15:40.636664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"565.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e44d2bee-a0c7-4fc8-b3d6-d18dc302fa44\"}\n"} +{"Time":"2022-12-07T09:15:40.637526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/organizations/e1d0cad4-8acb-4f32-a70d-dac8dc55c512/templates/cranky-roentgen1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"576.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8c99f9c-97ca-4307-a2b7-c640a8f19bed\"}\n"} +{"Time":"2022-12-07T09:15:40.637768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" templatepush_test.go:143: 2022-12-07 08:15:40.637: cmd: matched \"Upload\" = \"\u003e Upload\"\n"} +{"Time":"2022-12-07T09:15:40.637779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" templatepush_test.go:144: 2022-12-07 08:15:40.637: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:40.63782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.637831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.637836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"545.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8a7f837b-ed8c-4f23-a3e2-802c06b3f7a3\"}\n"} +{"Time":"2022-12-07T09:15:40.637845+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.63785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.637853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:40.637: cmd: stdout: \"\u003e Upload \\\"/tmp/TestTemplatePushOK123133992/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:40.639004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.638 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"503.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f648348c-ff52-448d-84d5-e97f563eff0f\"}\n"} +{"Time":"2022-12-07T09:15:40.639763+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.639777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.63978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.639 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.639787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.639 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.640184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.639 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.640328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.640 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.640406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.640 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.640531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.640 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"request_id\": \"fcf50282-1f62-4190-8a24-8e7915ef0d44\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.641013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.640: cmd: stdout: \"\\x1b[1A\\r✔ Queued [587ms]\"\n"} +{"Time":"2022-12-07T09:15:40.641027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.640: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.64221+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.642219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.642223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.642 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/organizations/e1d0cad4-8acb-4f32-a70d-dac8dc55c512/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.899125ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"13fe9162-44e5-4e72-8f4e-e3f42c640979\"}\n"} +{"Time":"2022-12-07T09:15:40.642474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:40.642: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.643429+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.643436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.643439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.643 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.643442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.643 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.643709+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.643716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.643722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.643 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5216a993-b8ac-495a-a4de-bbdb760c6f0f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.059833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1bd3bf97-5653-4537-86c3-930e9536ea77\"}\n"} +{"Time":"2022-12-07T09:15:40.644189+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.644209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.644216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.644 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:40.651726+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.651736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.65174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.651 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"487.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f1f665fd-5444-4c06-9d1d-061755706a6b\"}\n"} +{"Time":"2022-12-07T09:15:40.652439+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.652444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.652447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.652 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e7aa1de-e371-46cb-9e8c-4d0d5a353cd3\"}\n"} +{"Time":"2022-12-07T09:15:40.652536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.652541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.652545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.652 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"406.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"09534254-1a12-406a-a97f-9129f67d557d\"}\n"} +{"Time":"2022-12-07T09:15:40.663757+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.663763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.663769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.663 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f72d8bb8-9232-4ea3-a901-0222a2347592\"}\n"} +{"Time":"2022-12-07T09:15:40.675334+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.675341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.675345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.675368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.675391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.675416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.675439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.675474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.675491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.675669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.675678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.676287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.676 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"496.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6039b4d8-2f45-4a25-896e-1f65f1fd1411\"}\n"} +{"Time":"2022-12-07T09:15:40.677546+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.677555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.677558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.677 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"470.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"794a7e06-2dee-4d65-91c2-c16f9b430b87\"}\n"} +{"Time":"2022-12-07T09:15:40.677562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.677565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.677568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.677 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"387.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3dbcb00f-7d3e-4a69-ab9a-98ca0fc394ea\"}\n"} +{"Time":"2022-12-07T09:15:40.683066+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.683074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.683077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.683 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:40.688214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.688 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"151f5da8-1fbb-4e36-a1d2-9923ec2b15fc\"}\n"} +{"Time":"2022-12-07T09:15:40.694324+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.694338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.694343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.694349+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.694353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.69436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.694369+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.694372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.694379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Destroying workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.694384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.694413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.694457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.694466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.69447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.694481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.694488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.694494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.694523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.694529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Destroying workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.694534+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.694537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.694544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:40.694556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.694559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.694562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"request_id\": \"fcf50282-1f62-4190-8a24-8e7915ef0d44\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.694624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.694633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.694637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.694645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.694651+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.694656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.694659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"request_id\": \"fcf50282-1f62-4190-8a24-8e7915ef0d44\", \"stage\": \"Destroying workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.694706+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.694712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.694716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.694725+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.694727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.69473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.694: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:40.694735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.694737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.694741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.69481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.694815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.694818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.694: cmd: stdout: \"✔ Setting up [52ms]\"\n"} +{"Time":"2022-12-07T09:15:40.694824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.694: cmd: stdout: \"⧗ \\x1b[;mDestroying workspace\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.694876+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.694882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.694886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:40.702003+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.70201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.702013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.701 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"473.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6aad0f0-6457-4cc0-b0f6-24ef4cdba632\"}\n"} +{"Time":"2022-12-07T09:15:40.70268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.702689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.702693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"506.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"682a849f-86de-4306-895a-00a82c456419\"}\n"} +{"Time":"2022-12-07T09:15:40.702702+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.702706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.702711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"581.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aff19967-7323-41ac-ba75-b9608f527caa\"}\n"} +{"Time":"2022-12-07T09:15:40.713854+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.713862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.713868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.713 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"534.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da2d5641-d7e0-45bc-9680-84c5a1561003\"}\n"} +{"Time":"2022-12-07T09:15:40.726816+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.726825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.726829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.726 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.726839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.726 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.726878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.726 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.72692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.726 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.726998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.726 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.727067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.727 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.727534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.727 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"574.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1169ee10-c02c-47ab-a8f9-a99a80b2e5ab\"}\n"} +{"Time":"2022-12-07T09:15:40.72782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.727833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.727843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.727 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"585.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae5bc6ab-5501-4fc3-9375-3c84341cc63d\"}\n"} +{"Time":"2022-12-07T09:15:40.727852+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.727877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.727882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.727 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"653.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aeab73de-cfde-47c6-a063-4f368a46846f\"}\n"} +{"Time":"2022-12-07T09:15:40.733925+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.733937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.733942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.733 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.734079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.734 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.734172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.734 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:40.734264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.734 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.734318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.734 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.734362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.734 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.734385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.734 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.734539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.734 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:40.738557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.738 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"741.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f1d08690-8f3f-48a9-a4a5-4e7754df2a10\"}\n"} +{"Time":"2022-12-07T09:15:40.742657+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.742666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.742672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.742 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"41.708µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:40.744935+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.744945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.74495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.744 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.744959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.744 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.745027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.744 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.745116+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.745131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.745137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.744 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.745144+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.745147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.745152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.745 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.745162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.745 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Destroying workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.745168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.745 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.745176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.745 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.745277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.745 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"request_id\": \"fcf50282-1f62-4190-8a24-8e7915ef0d44\", \"stage\": \"Destroying workspace\"}\n"} +{"Time":"2022-12-07T09:15:40.745291+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.745296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.7453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.745 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.745396+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.745411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.745415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.745 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"request_id\": \"fcf50282-1f62-4190-8a24-8e7915ef0d44\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.745518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.745: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:40.745531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.745: cmd: stdout: \"✔ Destroying workspace [54ms]\"\n"} +{"Time":"2022-12-07T09:15:40.74554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.745: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.745614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" delete_test.go:105: 2022-12-07 08:15:40.745: cmd: matched \"Cleaning Up\" = \"⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [587ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n \\r\\n✔ Setting up [52ms]\\r\\n⧗ \\x1b[;mDestroying workspace\\x1b[0m \\r\\n \\r\\n✔ Destroying workspace [54ms]\\r\\n⧗ \\x1b[;mCleaning Up\"\n"} +{"Time":"2022-12-07T09:15:40.752165+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.752176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.752181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.752 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"692.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fffe8d89-597b-4751-80ce-2b5f10069ee7\"}\n"} +{"Time":"2022-12-07T09:15:40.752933+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.752943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.752948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.752 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"735.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7f33d57a-6f36-4775-8f31-6f54ba937740\"}\n"} +{"Time":"2022-12-07T09:15:40.752956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.75296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.752965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.752 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"722.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf52e5ef-e39f-4d3c-b574-c4f10fee7a28\"}\n"} +{"Time":"2022-12-07T09:15:40.764517+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.764564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.76457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.764 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.013875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a5a80163-02d1-4959-aa8a-2dd0de08e9e2\"}\n"} +{"Time":"2022-12-07T09:15:40.781809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.781842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.78185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.777 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.053ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"912b6c58-f0b3-4f6a-9ac8-aa1c75fc5bf9\"}\n"} +{"Time":"2022-12-07T09:15:40.781858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.778 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.781864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.778 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.781868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.778 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.781874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.778 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} +{"Time":"2022-12-07T09:15:40.781879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.781885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.781889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.781 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.737375ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"70bcdaf1-9496-4904-8c40-92b3e41b716a\"}\n"} +{"Time":"2022-12-07T09:15:40.782649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.782659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.782665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.782 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"20.667µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:40.783306+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.783319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.783327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.088333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bf221169-2235-42bf-91b7-6ed520320085\"}\n"} +{"Time":"2022-12-07T09:15:40.784748+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.784756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.784762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.784 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.785073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.784 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.788552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.788 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"881.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8aaa84af-e9b0-4a41-a45a-30eb6f037e56\"}\n"} +{"Time":"2022-12-07T09:15:40.797148+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.797173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.797179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.797186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.79719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.797197+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.797201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.797206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.797212+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.79727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.797274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.79728+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.797284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.797289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.797294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.7973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.797305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.79731+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.797314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.797317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.796 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} +{"Time":"2022-12-07T09:15:40.797322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.797326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.797331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.797336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.797341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.797353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.797359+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.797362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.797366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.797 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/ed2629ac-006d-401b-a492-f360ebfcf962/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"793.784083ms\", \"status_code\": 101, \"latency_ms\": 793, \"request_id\": \"fcf50282-1f62-4190-8a24-8e7915ef0d44\"}\n"} +{"Time":"2022-12-07T09:15:40.80248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.801 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/ed2629ac-006d-401b-a492-f360ebfcf962\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.712166ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"facbe25c-58f2-4a35-9a49-ea3fe4a81247\"}\n"} +{"Time":"2022-12-07T09:15:40.802526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.802533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.802541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.801 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.125917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"78645ec5-e889-4d64-b9e3-1cc9692de637\"}\n"} +{"Time":"2022-12-07T09:15:40.811128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.811158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.811165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.803 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspaces/629a3c33-528c-4ca5-a3fa-31b1d8c74a58\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.3735ms\", \"status_code\": 410, \"latency_ms\": 1, \"request_id\": \"8b4d4f16-3893-4c1d-9297-4ffe88cfe1f2\"}\n"} +{"Time":"2022-12-07T09:15:40.811174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:80: 2022-12-07 08:15:40.803: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:40.811186+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.811192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.811197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.805 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.2295ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"50525315-a146-4335-9396-db826eeae010\"}\n"} +{"Time":"2022-12-07T09:15:40.811205+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.811209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.811214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.805 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/organizations/d54c4ffe-ed2e-44b3-8ae6-61efc0b41369/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.28825ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"42724811-1843-445a-a4b5-07d551eb26ea\"}\n"} +{"Time":"2022-12-07T09:15:40.811247+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.811251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.811256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.806 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:40.811263+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.811267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.811275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.807 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.196459ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a4d22460-3233-41af-adb4-bbea1b9fa5d0\"}\n"} +{"Time":"2022-12-07T09:15:40.811282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} +{"Time":"2022-12-07T09:15:40.811286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} +{"Time":"2022-12-07T09:15:40.81129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:40.811303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete","Output":"--- PASS: TestDelete (0.00s)\n"} +{"Time":"2022-12-07T09:15:40.81131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" --- PASS: TestDelete/WithParameter (1.66s)\n"} +{"Time":"2022-12-07T09:15:40.811323+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Elapsed":1.66} +{"Time":"2022-12-07T09:15:40.811339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Output":" --- PASS: TestDelete/InvalidWorkspaceIdentifier (0.00s)\n"} +{"Time":"2022-12-07T09:15:40.811343+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Elapsed":0} +{"Time":"2022-12-07T09:15:40.811347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" --- PASS: TestDelete/Orphan (1.49s)\n"} +{"Time":"2022-12-07T09:15:40.811352+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Elapsed":1.49} +{"Time":"2022-12-07T09:15:40.811356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" --- PASS: TestDelete/DifferentUser (1.91s)\n"} +{"Time":"2022-12-07T09:15:40.811361+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Elapsed":1.91} +{"Time":"2022-12-07T09:15:40.811364+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDelete","Elapsed":0} +{"Time":"2022-12-07T09:15:40.811368+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.811371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.811376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.811379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.811384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.810 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/organizations/d54c4ffe-ed2e-44b3-8ae6-61efc0b41369/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.560833ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"b5bb8dda-7548-4c0c-bee4-48dcc07d6132\"}\n"} +{"Time":"2022-12-07T09:15:40.81139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" configssh_test.go:545: waiting for workspace build job 4bd355a1-cf10-4666-be25-627399ed888e\n"} +{"Time":"2022-12-07T09:15:40.811398+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.811402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.811406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.811 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:40.811922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.811 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:40.81194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.811 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:40.811948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.811 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushUseWorkingDir2330205981/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.811954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.811 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushUseWorkingDir2330205981/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.811961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.811 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushUseWorkingDir2330205981/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.813093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.811 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplatePushUseWorkingDir2330205981/002/2264841254.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.813105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.812 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:40.813117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.812 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:40.816091+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.816107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.816112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.816 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"720.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a1c3e919-d4f8-4ae9-aa38-bed1f3148dd4\"}\n"} +{"Time":"2022-12-07T09:15:40.816694+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.816702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.816706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.816 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"191.916µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a236cd3c-b3fd-4e2d-a1a1-f66845e7e5d8\"}\n"} +{"Time":"2022-12-07T09:15:40.817021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.816 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"63.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e1dd8e5a-3583-4118-80a8-74cbf2e688be\"}\n"} +{"Time":"2022-12-07T09:15:40.818145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.818 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"791.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3bdb3c86-3d61-4d72-9322-e5a101607b3e\"}\n"} +{"Time":"2022-12-07T09:15:40.819836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.819 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/organizations/85f6ef2f-c671-401f-b461-49639bdf4447/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.314417ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"e707ec5d-b856-4bca-a7fe-abc98ad0abfc\"}\n"} +{"Time":"2022-12-07T09:15:40.820035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" configssh_test.go:542: waiting for template version job bfcc0824-ccfe-4e9d-9cc9-70e099602f79\n"} +{"Time":"2022-12-07T09:15:40.83079+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.830803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.830809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.040583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"08986645-b8e8-423d-a5f8-b33ce7617e81\"}\n"} +{"Time":"2022-12-07T09:15:40.830824+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.83083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.830835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.028833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"87f1316b-15d8-47f7-a8b9-f108533d1cd5\"}\n"} +{"Time":"2022-12-07T09:15:40.835546+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.835556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.835561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.835 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.835611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.835 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.835636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.835 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.835687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.835 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.835736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.835 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.835771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.835 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.835821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.835 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.836133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.836 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.836183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.836 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.83803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.837 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"680.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7da0ff8-30c6-49d9-9172-5eaff714b9ec\"}\n"} +{"Time":"2022-12-07T09:15:40.838265+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.838277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.838283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.838 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"949.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4413e961-7367-4219-8560-590d79c8ad91\"}\n"} +{"Time":"2022-12-07T09:15:40.847681+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.847739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.847749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.847 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.847756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.847 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.847763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.847 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.847826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.847 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.847832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.847 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.847838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.847 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.848155+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.848161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.848166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.847 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.430375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"23edbd7c-dac8-4cc6-a0e1-062ab62cf1f4\"}\n"} +{"Time":"2022-12-07T09:15:40.858533+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.858568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.858578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.856 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} +{"Time":"2022-12-07T09:15:40.858584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.856 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} +{"Time":"2022-12-07T09:15:40.85859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.857 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:40.858597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.857 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.858603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.857 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.858609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.857 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.858647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.857 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/3166569989.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.858654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.857 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} +{"Time":"2022-12-07T09:15:40.85866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.857 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} +{"Time":"2022-12-07T09:15:40.858667+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.858673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.858677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.857 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.106375ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"cf16c1fc-4b7a-48bc-983b-0730b1c2020a\"}\n"} +{"Time":"2022-12-07T09:15:40.860363+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.860381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.860388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.859 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"979.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2e940ea8-e0af-48ee-94a8-89bfbbbf2f05\"}\n"} +{"Time":"2022-12-07T09:15:40.865156+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.865229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.865238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.863 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.466041ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f77879bb-9296-4b1b-9038-d6079d8c8fe6\"}\n"} +{"Time":"2022-12-07T09:15:40.865248+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.865253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.865258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.864 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"943.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e0bdb023-fb64-4842-9c9a-381a48503089\"}\n"} +{"Time":"2022-12-07T09:15:40.865651+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.865658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.865665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.865 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:40.865951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.865 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.872527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.872563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.872572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.871 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.174833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d6407bbc-bda8-49b1-9f26-ff487d68f3fb\"}\n"} +{"Time":"2022-12-07T09:15:40.881235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.881273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.881283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.895334ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0240e79e-619d-43ea-911a-536f9f82633d\"}\n"} +{"Time":"2022-12-07T09:15:40.881293+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.881297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.881303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.6905ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4e05acf5-8591-4364-a723-835406bd860f\"}\n"} +{"Time":"2022-12-07T09:15:40.886889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.886914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.886922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.886 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.886929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.886 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.886938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.886 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.886945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.886 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.886961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.886 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.886969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.886 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.888124+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.888137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.888145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.887 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.310541ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"702b83d9-5714-4e48-857c-1d92424edf9b\"}\n"} +{"Time":"2022-12-07T09:15:40.888628+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.888637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.888644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.888 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"998.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ede0bd9c-660c-42f0-8ec1-232e1a6d3cd0\"}\n"} +{"Time":"2022-12-07T09:15:40.899046+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.899083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.899093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.897 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.899103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.898 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.900023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.898 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.900044+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.90005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.900056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.898 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.359166ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"770edfca-70c3-40fd-a47a-9f2158e6469c\"}\n"} +{"Time":"2022-12-07T09:15:40.900069+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.900075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.900081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.898 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} +{"Time":"2022-12-07T09:15:40.905978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.905 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.229666ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"e8a719c5-79b6-40a6-b072-918d8dbb0b03\"}\n"} +{"Time":"2022-12-07T09:15:40.90602+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.906026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.906033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.905 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.009084ms\", \"status_code\": 200, \"latency_ms\": 3, \"request_id\": \"c526bb9e-5fc4-4477-8b1c-68928e0c5365\"}\n"} +{"Time":"2022-12-07T09:15:40.908462+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.90849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.908498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.906 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/organizations/0bd0d8e1-006e-4cd0-8fd6-9679d77c9ea6/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.1735ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"f71ff1ff-cf95-4e39-9f46-533ef2767f08\"}\n"} +{"Time":"2022-12-07T09:15:40.908511+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.908516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.908522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.906 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:40.908529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:40.908536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:40.908543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushOK123133992/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.908551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushOK123133992/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.908558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushOK123133992/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.908565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplatePushOK123133992/002/3764930465.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.908572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:40.908579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:40.908587+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.908592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.908598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.908 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} +{"Time":"2022-12-07T09:15:40.908605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.908 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} +{"Time":"2022-12-07T09:15:40.910054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.910124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.910132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/organizations/0bd0d8e1-006e-4cd0-8fd6-9679d77c9ea6/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.499833ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"9ddfbc79-307e-4e05-ad50-51cb1609e987\"}\n"} +{"Time":"2022-12-07T09:15:40.910509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:545: waiting for workspace build job 20bb7cb8-18e9-48dc-9903-36f5d2fe6444\n"} +{"Time":"2022-12-07T09:15:40.913305+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.913338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.913346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.912 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.190125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"00780621-6d77-42f8-ac62-539c5a5d0651\"}\n"} +{"Time":"2022-12-07T09:15:40.913487+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.913494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.9135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"992.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f7ab1f53-4781-434c-b4fa-1569eae023e8\"}\n"} +{"Time":"2022-12-07T09:15:40.916469+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.916501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.916509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:40.916518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.916525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.91653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.916536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:40.916542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.916547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.916553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.916562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.916571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.916986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:40.916997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:40.917004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.917009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:40.917016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:40.917022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:40.917818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.917831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.917 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.917838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:40.917853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.917 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:40.917859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.917 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:40.917864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.917 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:40.917967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.917: cmd: stdout: \"\\x1b[1A\\r✔ Queued [214ms]\"\n"} +{"Time":"2022-12-07T09:15:40.917978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.917: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.917983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.917: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [1ms]\"\n"} +{"Time":"2022-12-07T09:15:40.918022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.917: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.918029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.917: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [53ms]\"\n"} +{"Time":"2022-12-07T09:15:40.918034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.917: cmd: stdout: \"⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.92199+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.922012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.92202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.921 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.284708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"46b405e9-2482-4807-9266-b2aa622df30f\"}\n"} +{"Time":"2022-12-07T09:15:40.928883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.928927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.928936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.099083ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3e1ef0c8-4a7a-4cd7-a40e-79e036a6066f\"}\n"} +{"Time":"2022-12-07T09:15:40.938728+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.938765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.938776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.938 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.362709ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"207a65cc-9941-4940-8898-f1b0b9514a60\"}\n"} +{"Time":"2022-12-07T09:15:40.938789+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.938795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.938802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.938 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.362958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"6d889927-eab9-449c-9095-9b8a0f8f1d21\"}\n"} +{"Time":"2022-12-07T09:15:40.938816+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.938823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.938829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.938 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.939582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.938 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.939599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.938 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.939608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.938 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} +{"Time":"2022-12-07T09:15:40.940207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.940 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.15475ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f26f56f2-081e-4651-ac6e-3fff3132ff1a\"}\n"} +{"Time":"2022-12-07T09:15:40.941699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.941 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/organizations/23b3d90f-6782-4495-ba31-1071723e228a/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.036833ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"4a2cff78-cae7-4402-b42a-37d3f3d88859\"}\n"} +{"Time":"2022-12-07T09:15:40.944235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.944 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/organizations/23b3d90f-6782-4495-ba31-1071723e228a/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.102125ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"a1f653ae-9f02-49ab-a41d-186fafeebe4a\"}\n"} +{"Time":"2022-12-07T09:15:40.944471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" configssh_test.go:545: waiting for workspace build job e3650b38-1bf8-4754-8bc4-4e9e40934f45\n"} +{"Time":"2022-12-07T09:15:40.947024+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.947047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.947055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.946 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"945.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ce2547cc-a756-4901-94ba-e38102061b25\"}\n"} +{"Time":"2022-12-07T09:15:40.95447+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.954506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.954515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.954 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.245667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ea7e1217-7242-45df-9b5c-13546e43418d\"}\n"} +{"Time":"2022-12-07T09:15:40.959063+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:40.959083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:40.95909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.958 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:40.959096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.958 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:40.959106+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:40.959111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:40.959167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} +{"Time":"2022-12-07T09:15:40.959175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.95942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.959434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.959439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.959444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} +{"Time":"2022-12-07T09:15:40.959451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} +{"Time":"2022-12-07T09:15:40.959797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.959807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:40.959812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:186\u003e\t(*Runner).Run\tsending FailedJob\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} +{"Time":"2022-12-07T09:15:40.959818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:40.959823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.959829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"request_id\": \"175820f1-1308-4fbb-a6ff-de528e023f36\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:40.961248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.960 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"request_id\": \"175820f1-1308-4fbb-a6ff-de528e023f36\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:40.961264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.960 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"request_id\": \"175820f1-1308-4fbb-a6ff-de528e023f36\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:40.96127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.960 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"request_id\": \"175820f1-1308-4fbb-a6ff-de528e023f36\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.961275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.961: cmd: stdout: \"\\x1b[1A\\r✔ Queued [297ms]\"\n"} +{"Time":"2022-12-07T09:15:40.96128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.961: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.96129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.961: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} +{"Time":"2022-12-07T09:15:40.961295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.961: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.9613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.961: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [51ms]\"\n"} +{"Time":"2022-12-07T09:15:40.961305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.961: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.962483+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.962495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.962501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.007042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"76da7d13-b861-41f9-9b3e-06130a3c6094\"}\n"} +{"Time":"2022-12-07T09:15:40.963013+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.963021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.963027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.962 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"978.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b28d4555-f2f8-440f-ad2a-319e25e21bcf\"}\n"} +{"Time":"2022-12-07T09:15:40.96721+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.967222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.967228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:40.968689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:40.968705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:40.968714+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.968719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.968725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:40.968731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.968739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.968744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.96875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_when_prev_opts_flag_is_set1359041455/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.968758+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.968762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.968768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:40.968778+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.968782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.968789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_when_prev_opts_flag_is_set1359041455/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.968796+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.968801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.968806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:40.968812+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.968817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.968823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_when_prev_opts_flag_is_set1359041455/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:40.968829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.968833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.968838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:40.968845+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.96885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.968855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:40.968862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.968867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.968872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:40.968881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:40.968888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.968895+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.968901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.968906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:40.968912+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:40.968918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:40.968923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:40.968929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.968 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:40.968936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.968 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:40.968942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.968 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:40.969333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.969: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:40.969345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.969: cmd: stdout: \"✔ Detecting persistent resources [0ms]\"\n"} +{"Time":"2022-12-07T09:15:40.969351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.969: cmd: stdout: \"⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.969358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.969: cmd: stdout: \"\\x1b[1A\\r✔ Detecting ephemeral resources [52ms]\"\n"} +{"Time":"2022-12-07T09:15:40.969363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.969: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:40.972041+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.972072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.97208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.971 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"980.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8646f6ac-5c89-4426-98f6-595faa99b620\"}\n"} +{"Time":"2022-12-07T09:15:40.97209+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.972096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.972102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.971 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.979208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"fa32a6f2-517a-49c5-bc1f-8e5448c264b4\"}\n"} +{"Time":"2022-12-07T09:15:40.980678+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:40.980712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:40.980719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.979 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.307875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"52005c01-913c-4064-a199-97a66e95fd4b\"}\n"} +{"Time":"2022-12-07T09:15:40.988016+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:40.988053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:40.988063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.987 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.380458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"918d98f1-7fd6-402f-8fd2-dbbe5d93938d\"}\n"} +{"Time":"2022-12-07T09:15:40.988076+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:40.98808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:40.988089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.987 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.392ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"01c56f9d-7b1a-47b2-93f5-0b187d477d7e\"}\n"} +{"Time":"2022-12-07T09:15:40.997537+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:40.997572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:40.997581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.997 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.294917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ba26af3e-d554-4ddc-a810-a9c74979d1da\"}\n"} +{"Time":"2022-12-07T09:15:40.997621+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:40.997627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:40.997634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.997 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.057ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3c7d3d47-f2f3-4b6a-b1c5-507aa981f69f\"}\n"} +{"Time":"2022-12-07T09:15:41.003883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.003902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.003935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.003 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.12325ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ba89a131-6f2d-4dd5-940f-71b6b1b42ef3\"}\n"} +{"Time":"2022-12-07T09:15:41.009135+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:41.009146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:41.009153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:41.009317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.00933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.009463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.009475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.009489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:41.010768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:41.01078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:41.01079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:41.010799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:41.01082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:41.010828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:41.010836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:41.010844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:41.010856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.010 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.010866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:41.010874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.010 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:41.010887+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:41.010895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:41.010901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.010 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:470\u003e\t(*Server).FailJob\tFailJob starting\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} +{"Time":"2022-12-07T09:15:41.012629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} +{"Time":"2022-12-07T09:15:41.012651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} +{"Time":"2022-12-07T09:15:41.01266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.011 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:191\u003e\t(*Runner).Run\tsent FailedJob\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} +{"Time":"2022-12-07T09:15:41.012667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.012 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ea99ccca-a709-4378-ac95-b93cd03775f8/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"446.936458ms\", \"status_code\": 101, \"latency_ms\": 446, \"request_id\": \"175820f1-1308-4fbb-a6ff-de528e023f36\"}\n"} +{"Time":"2022-12-07T09:15:41.014632+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:41.014654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:41.014662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.012: cmd: stdout: \"\\x1b[1A\\r✔ Queued [264ms]\"\n"} +{"Time":"2022-12-07T09:15:41.01467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.012: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:41.014677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.012: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} +{"Time":"2022-12-07T09:15:41.014683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.012: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:41.014691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.012: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [51ms]\"\n"} +{"Time":"2022-12-07T09:15:41.014697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.012: cmd: stdout: \"⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:41.014705+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.014711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.014719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.013 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.484834ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b0dcc593-a4d1-4b70-8be8-ba32b6eddd6e\"}\n"} +{"Time":"2022-12-07T09:15:41.014729+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.014735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.014741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.014 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.277625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c8cfe2f7-a335-4b45-af1f-2da2ba94f142\"}\n"} +{"Time":"2022-12-07T09:15:41.014755+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.014761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.014767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.014 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"35.5µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:41.018739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:41.018771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:41.018779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ea99ccca-a709-4378-ac95-b93cd03775f8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.657208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ad8dcd05-4b42-4ad7-abc0-e8ce8b71dae3\"}\n"} +{"Time":"2022-12-07T09:15:41.018789+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.018793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.018799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.018 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:41.018807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.018 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.021795+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:41.021821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:41.021828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.018 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:41.021833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.019 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:41.021839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.019 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:41.021844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:41.02185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:41.021855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.019 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} +{"Time":"2022-12-07T09:15:41.02186+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:41.021864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:41.02187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ea99ccca-a709-4378-ac95-b93cd03775f8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.09075ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"52e7ffff-dc1c-479b-b12f-4bc4042adc5c\"}\n"} +{"Time":"2022-12-07T09:15:41.021877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.020: cmd: stdout: \"\\x1b[1A\\r✘ Cleaning Up [102ms]\"\n"} +{"Time":"2022-12-07T09:15:41.021885+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:41.021888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:41.021893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.020 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/8aa2f2c6-0514-4b25-9790-85c365cce0be/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"422.01625ms\", \"status_code\": 101, \"latency_ms\": 422, \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\"}\n"} +{"Time":"2022-12-07T09:15:41.021901+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.021904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.021911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.021 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"846.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"464c6893-88ef-48eb-8788-fd09080e0956\"}\n"} +{"Time":"2022-12-07T09:15:41.021919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:41.021922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:41.021928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.021 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ea99ccca-a709-4378-ac95-b93cd03775f8/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.10175ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a9306975-9e2c-426e-8ce0-b293543e049e\"}\n"} +{"Time":"2022-12-07T09:15:41.023831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.023 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ea99ccca-a709-4378-ac95-b93cd03775f8/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.348083ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0ffd5292-3a4a-459f-8171-d62d22a7172a\"}\n"} +{"Time":"2022-12-07T09:15:41.026436+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.026467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.026474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.026 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.884875ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"68c77903-e601-42a8-ae6c-73bfe127d503\"}\n"} +{"Time":"2022-12-07T09:15:41.026608+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:41.026633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:41.026642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.026 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.66075ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"3f1d1238-2d11-47ee-b877-695652f7e6dc\"}\n"} +{"Time":"2022-12-07T09:15:41.027746+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:41.027764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:41.02777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.027 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/8aa2f2c6-0514-4b25-9790-85c365cce0be\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.457959ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"baaede09-5de3-4fa9-93f4-dc4c8b9f530f\"}\n"} +{"Time":"2022-12-07T09:15:41.028387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [102ms]\"\n"} +{"Time":"2022-12-07T09:15:41.028408+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:41.028413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:41.028418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.028 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/1d842e1c-0674-4fdb-a3ec-f71067874190\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.139167ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ff09d750-d573-4111-9557-1614682a1dfe\"}\n"} +{"Time":"2022-12-07T09:15:41.029008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:41.029033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \" This template has required variables! They are scoped to \"\n"} +{"Time":"2022-12-07T09:15:41.029038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \" the template, and not viewable after being set. \"\n"} +{"Time":"2022-12-07T09:15:41.029043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \"\\r\"\n"} +{"Time":"2022-12-07T09:15:41.029047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \"\\x1b[1mvar.region\\x1b[0m\"\n"} +{"Time":"2022-12-07T09:15:41.029052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \" description\"\n"} +{"Time":"2022-12-07T09:15:41.029057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.029443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" templatepush_test.go:65: 2022-12-07 08:15:41.029: cmd: matched \"Enter a value:\" = \"⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [297ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [0ms]\\r\\n⧗ \\x1b[;mParsing template parameters\\x1b[0m \\r\\n\\x1b[1A\\r✔ Parsing template parameters [51ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✘ Cleaning Up [102ms]\\r\\n \\r\\n This template has required variables! They are scoped to \\r\\n the template, and not viewable after being set. \\r\\n\\r\\r\\n\\x1b[1mvar.region\\x1b[0m\\r\\n description\\r\\n\\r\\n\u003e \\x1b[1mEnter a value:\"\n"} +{"Time":"2022-12-07T09:15:41.029586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" templatepush_test.go:66: 2022-12-07 08:15:41.029: cmd: stdin: \"peter-pan\\r\"\n"} +{"Time":"2022-12-07T09:15:41.029595+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:41.029599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:41.029609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/8aa2f2c6-0514-4b25-9790-85c365cce0be\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.165459ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2f7b5ba6-9a5c-4c71-ad06-27b42aee9005\"}\n"} +{"Time":"2022-12-07T09:15:41.029921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.029937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.029944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.30825ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"51d7e58f-edf2-4832-b1c8-0392ba4943a2\"}\n"} +{"Time":"2022-12-07T09:15:41.029954+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:41.029958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:41.029962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.029: cmd: stdout: \"\u003e \\x1b[1mEnter a value:\\x1b[0m peter-pan\"\n"} +{"Time":"2022-12-07T09:15:41.029967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.029: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.031448+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:41.031463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:41.031469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.031 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/8aa2f2c6-0514-4b25-9790-85c365cce0be/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.142917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bd40bcb9-57ed-49ed-91b7-bf37e818dc0a\"}\n"} +{"Time":"2022-12-07T09:15:41.032412+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:41.032428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:41.032449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.325334ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"aa83804e-01a4-4741-89a1-e2ce482dacb6\"}\n"} +{"Time":"2022-12-07T09:15:41.032861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.032: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:41.033055+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:41.03307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:41.033074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/8aa2f2c6-0514-4b25-9790-85c365cce0be/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"921.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"77c87d7b-adad-4e4d-babd-a40c96ea3d6d\"}\n"} +{"Time":"2022-12-07T09:15:41.034546+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:41.034557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:41.034562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.034 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.4615ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"fa73d87e-be6d-4e91-96c4-9841bfbf0a48\"}\n"} +{"Time":"2022-12-07T09:15:41.034966+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:41.034976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:41.03498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.034 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.321208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"afc3fa4e-a98d-40cc-a4b9-3aaf217c669c\"}\n"} +{"Time":"2022-12-07T09:15:41.036508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/parameters/import_job/520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"918.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e2dd187-813d-4b2e-87ad-5f5e06a8b9e8\"}\n"} +{"Time":"2022-12-07T09:15:41.037232+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.037245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.03725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.037 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.132375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9045b068-9212-4c0a-a58a-60667aceaa69\"}\n"} +{"Time":"2022-12-07T09:15:41.037965+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:41.037973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:41.037978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.037 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/8aa2f2c6-0514-4b25-9790-85c365cce0be/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.002208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"88c38b0e-8adc-4a8f-8825-b1a60403d7f0\"}\n"} +{"Time":"2022-12-07T09:15:41.038223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.038: cmd: stdout: \"┌──────────┐\"\n"} +{"Time":"2022-12-07T09:15:41.038233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.038: cmd: stdout: \"│ Template │\"\n"} +{"Time":"2022-12-07T09:15:41.038237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.038: cmd: stdout: \"│ Preview │\"\n"} +{"Time":"2022-12-07T09:15:41.03824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.038: cmd: stdout: \"├──────────┤\"\n"} +{"Time":"2022-12-07T09:15:41.038244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.038: cmd: stdout: \"│ RESOURCE │\"\n"} +{"Time":"2022-12-07T09:15:41.038248+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.038251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.038255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.038 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.310625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3751af79-aa44-4d28-b594-288740f3ffef\"}\n"} +{"Time":"2022-12-07T09:15:41.038262+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} +{"Time":"2022-12-07T09:15:41.038265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} +{"Time":"2022-12-07T09:15:41.038268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.038: cmd: stdout: \"├──────────┤\"\n"} +{"Time":"2022-12-07T09:15:41.038274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.038: cmd: stdout: \"└──────────┘\"\n"} +{"Time":"2022-12-07T09:15:41.0392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.039 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templates/6f43cf17-47f0-4dae-9fbf-d176aa1e5205/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"831.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"03bbf96b-83d0-4647-ae9c-8b5a7c9fec32\"}\n"} +{"Time":"2022-12-07T09:15:41.039461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.039: cmd: stdout: \"Updated version at Dec 7 09:15:41!\"\n"} +{"Time":"2022-12-07T09:15:41.0415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.041 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templates/6f43cf17-47f0-4dae-9fbf-d176aa1e5205/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"879.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"510b9ee7-8b30-4c46-9028-e4bbbaa97355\"}\n"} +{"Time":"2022-12-07T09:15:41.041744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:80: 2022-12-07 08:15:41.041: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:41.041846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.041 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:41.043406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:41.04345+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.043457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.045994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.046002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.046007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.045 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"700.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cfa51695-eeb6-487e-a73d-342b9ea7a814\"}\n"} +{"Time":"2022-12-07T09:15:41.046465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.046473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.046476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.046 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"652.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"83f8c77f-2f50-4b8c-b99c-ed815d7f7644\"}\n"} +{"Time":"2022-12-07T09:15:41.046923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.046933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.046937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.046 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"145.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"93756f22-842c-4fb2-b04f-74885d89feff\"}\n"} +{"Time":"2022-12-07T09:15:41.047198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.047 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"56.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"504fbeb3-f9cd-4c83-830b-6dd89ef4df43\"}\n"} +{"Time":"2022-12-07T09:15:41.048101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.048 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"651.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"04b5daeb-b45b-40bf-92fb-dd4f68130664\"}\n"} +{"Time":"2022-12-07T09:15:41.049208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.049 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/organizations/b8d13b16-c151-4265-a1ed-fdc926eab0be/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"889.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"14460725-989b-4d8c-a432-c51bd81989fc\"}\n"} +{"Time":"2022-12-07T09:15:41.04932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" configssh_test.go:542: waiting for template version job 8c08123c-13dc-48cf-ba7e-5b981f012fe8\n"} +{"Time":"2022-12-07T09:15:41.053281+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.053288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.053292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.053 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8b6a0c99-3bfd-45ce-b39d-cfb980cbaffb\"}\n"} +{"Time":"2022-12-07T09:15:41.061606+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:41.061618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:41.061622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:41.061632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.061675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.06171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:41.06175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:41.061836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:41.061847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:41.061854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:41.061883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:41.06193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:41.061961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:41.062048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:41.062066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.062: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:41.062072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.062: cmd: stdout: \"✔ Detecting persistent resources [1ms]\"\n"} +{"Time":"2022-12-07T09:15:41.062109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.062: cmd: stdout: \"⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:41.062184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.062: cmd: stdout: \"\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\"\n"} +{"Time":"2022-12-07T09:15:41.062195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.062: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:41.063137+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.063144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.063152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.063 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"655.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53e4548f-5efa-4ced-b9d0-0caf8b85108d\"}\n"} +{"Time":"2022-12-07T09:15:41.063158+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.063161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.063164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.063 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"636.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d867dd37-d91f-40fe-8e3f-8d5cf2b32d5f\"}\n"} +{"Time":"2022-12-07T09:15:41.069257+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.069264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.069282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:41.069289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.069333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.069342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.06937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.069397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:41.069427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:41.069664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.069701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:41.070158+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.070172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.070177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.070 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"499.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"565204c7-9635-4877-8268-8f0dad69ef6c\"}\n"} +{"Time":"2022-12-07T09:15:41.070796+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.070802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.070806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.070 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"510.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bdf4d133-9a3b-4601-87d8-300e6335e1df\"}\n"} +{"Time":"2022-12-07T09:15:41.075511+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.07552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.075525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.075 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"534.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"be740ce4-1684-46e7-b508-97c81a968e6d\"}\n"} +{"Time":"2022-12-07T09:15:41.077827+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.077836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.07784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.077 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"562.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f7a6b8e5-2b1b-42dc-b3e2-4dc98b233d2d\"}\n"} +{"Time":"2022-12-07T09:15:41.08732+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.08733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.087336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.087 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"565.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"93ed10cb-5405-4d16-85ac-08222b50e7cf\"}\n"} +{"Time":"2022-12-07T09:15:41.087345+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.087349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.087358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.087 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"560.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9d228795-e4e3-48bf-9145-7ec4c2304e97\"}\n"} +{"Time":"2022-12-07T09:15:41.09629+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.096302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.096308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.096 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"654.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cffd445f-db83-4873-800b-a8201bea7fb8\"}\n"} +{"Time":"2022-12-07T09:15:41.096317+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.096322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.096327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.096 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"667.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"423b87ca-08ee-4d81-95fe-919a8e1fc082\"}\n"} +{"Time":"2022-12-07T09:15:41.100595+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.100606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.100611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"628.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ec32e32-1506-4f4e-8ca9-d6fda499031d\"}\n"} +{"Time":"2022-12-07T09:15:41.102951+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.102962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.102967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.102 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"684.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cf71bd5b-ac57-40eb-bce6-8037483a1d5a\"}\n"} +{"Time":"2022-12-07T09:15:41.112091+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:41.112101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:41.112106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:41.112138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:41.112193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:41.11223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:41.112285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.112 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:41.112331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} +{"Time":"2022-12-07T09:15:41.112347+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.112351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.112356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"662.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ddcfae1f-402d-4419-95a2-78cfe0ea694f\"}\n"} +{"Time":"2022-12-07T09:15:41.112557+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.112576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.112582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"766.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49c39581-3bc8-449c-bab1-5e15c1f87d2c\"}\n"} +{"Time":"2022-12-07T09:15:41.112637+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:41.112643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:41.112648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5216a993-b8ac-495a-a4de-bbdb760c6f0f/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"467.63525ms\", \"status_code\": 101, \"latency_ms\": 467, \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\"}\n"} +{"Time":"2022-12-07T09:15:41.114443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5216a993-b8ac-495a-a4de-bbdb760c6f0f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"892.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a33c3145-4c43-4cc7-bf66-ea531cb30cbc\"}\n"} +{"Time":"2022-12-07T09:15:41.114656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.114: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [102ms]\"\n"} +{"Time":"2022-12-07T09:15:41.11548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.115 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5216a993-b8ac-495a-a4de-bbdb760c6f0f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"665.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"52c4a8eb-67dd-4964-8845-490e9f7fbd44\"}\n"} +{"Time":"2022-12-07T09:15:41.116459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.116 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5216a993-b8ac-495a-a4de-bbdb760c6f0f/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"653.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53b720b5-aaea-4d4c-aba4-48501a0f0d2e\"}\n"} +{"Time":"2022-12-07T09:15:41.11738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.117 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5216a993-b8ac-495a-a4de-bbdb760c6f0f/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"639.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e4d8a6ad-c306-40ef-8930-bdd053a9c1e2\"}\n"} +{"Time":"2022-12-07T09:15:41.118284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.118 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"636.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a7bb598f-3f1b-4e45-9486-b91d98273e82\"}\n"} +{"Time":"2022-12-07T09:15:41.119226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/parameters/import_job/8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"638.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9d657ef1-cd0f-4f4d-9c3b-acd3e7994077\"}\n"} +{"Time":"2022-12-07T09:15:41.119828+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.119836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.119841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:41.119866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.119904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.119942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:41.119979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:41.120056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:41.120065+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:41.120068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:41.120072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5216a993-b8ac-495a-a4de-bbdb760c6f0f/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"556.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"08b3ddff-7fb3-407e-ac69-33257022aaad\"}\n"} +{"Time":"2022-12-07T09:15:41.12023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.120: cmd: stdout: \"┌──────────┐\"\n"} +{"Time":"2022-12-07T09:15:41.120243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.120: cmd: stdout: \"│ Template │\"\n"} +{"Time":"2022-12-07T09:15:41.120247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.120: cmd: stdout: \"│ Preview │\"\n"} +{"Time":"2022-12-07T09:15:41.120253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.120: cmd: stdout: \"├──────────┤\"\n"} +{"Time":"2022-12-07T09:15:41.12026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.120: cmd: stdout: \"│ RESOURCE │\"\n"} +{"Time":"2022-12-07T09:15:41.120264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.120: cmd: stdout: \"├──────────┤\"\n"} +{"Time":"2022-12-07T09:15:41.120269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.120: cmd: stdout: \"└──────────┘\"\n"} +{"Time":"2022-12-07T09:15:41.120274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.120278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.120282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"577.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"66093fc9-d7a1-445e-9625-71dbae1c055d\"}\n"} +{"Time":"2022-12-07T09:15:41.120843+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.120853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.120858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"613.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c6b1ed47-f20e-49e6-8b87-ee571b79ac09\"}\n"} +{"Time":"2022-12-07T09:15:41.120962+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} +{"Time":"2022-12-07T09:15:41.12097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} +{"Time":"2022-12-07T09:15:41.120974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templates/4451bfbe-e825-48c4-8d37-00ffdd20a022/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f9f9ebe4-bef3-4e0d-b4d2-721a305279f4\"}\n"} +{"Time":"2022-12-07T09:15:41.121125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.121: cmd: stdout: \"Updated version at Dec 7 09:15:41!\"\n"} +{"Time":"2022-12-07T09:15:41.122603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.122 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templates/4451bfbe-e825-48c4-8d37-00ffdd20a022/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"778.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a88243a3-0799-43ac-9aee-a49c59aea7e5\"}\n"} +{"Time":"2022-12-07T09:15:41.122839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:80: 2022-12-07 08:15:41.122: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:41.122911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.122 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:41.124572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:41.124622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.124629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.126457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.126467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.126472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.126 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"773.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"21cac0ad-5228-4871-b0a7-d06b6154f4ff\"}\n"} +{"Time":"2022-12-07T09:15:41.128577+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.128589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.128593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.128 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"768.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4277e74f-944f-4a5b-afae-546f5765c26b\"}\n"} +{"Time":"2022-12-07T09:15:41.128797+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.128806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.128811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.128 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"174.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f6239013-20b3-4720-a824-1e7a0a48b503\"}\n"} +{"Time":"2022-12-07T09:15:41.129113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.129 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"61.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"412d97c3-ffb3-409d-abb3-b9ff14b3bec5\"}\n"} +{"Time":"2022-12-07T09:15:41.130161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.130 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"764.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5be0e1b2-8185-41df-8639-8415dbd842f0\"}\n"} +{"Time":"2022-12-07T09:15:41.131474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.131 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/organizations/a1f786ab-66d9-461e-b527-429d017e9dee/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.060666ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"4105f70f-bc46-4ca7-9de4-f838167e7316\"}\n"} +{"Time":"2022-12-07T09:15:41.131611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:542: waiting for template version job 5b8982e5-1a44-43c8-81ef-0c4d3762103c\n"} +{"Time":"2022-12-07T09:15:41.13806+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.138071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.138077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.137 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"754.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f58b66d1-a5ca-4f42-b176-a4eea53e0daf\"}\n"} +{"Time":"2022-12-07T09:15:41.13811+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.138115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.13812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.138 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"745.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"116006a0-3c76-477b-bf0a-762d5815dc3e\"}\n"} +{"Time":"2022-12-07T09:15:41.146189+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.146199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.146204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.146 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:41.146991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.146999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.147003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.146 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"710.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d80ded7d-0ec3-4026-90c1-1772fa5a64a7\"}\n"} +{"Time":"2022-12-07T09:15:41.147094+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.1471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.147105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.147 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"801.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1681f145-95f3-4c51-8238-0a7bad958dc6\"}\n"} +{"Time":"2022-12-07T09:15:41.151218+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.151229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.151233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"692.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"68f166c4-ac18-46a7-b1ad-665bf17406f1\"}\n"} +{"Time":"2022-12-07T09:15:41.152715+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.152726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.15273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.152 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"557.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8cafdff2-9486-4b4e-bf8e-8674f424b641\"}\n"} +{"Time":"2022-12-07T09:15:41.157792+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.157799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.157803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.157 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"502.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"64fcb494-851e-4a81-8959-6ab57bcc8917\"}\n"} +{"Time":"2022-12-07T09:15:41.161634+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.161643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.161648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.161 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"546.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"594874a7-994a-4ce3-a1d7-117f2d8b297e\"}\n"} +{"Time":"2022-12-07T09:15:41.161808+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.161815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.16182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.161 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"548µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d5480ad-b97c-4d0c-9baf-fd2368a8eecd\"}\n"} +{"Time":"2022-12-07T09:15:41.170656+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.170665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.170671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.170 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:41.170697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.170 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:41.17074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.170 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:41.170819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.170 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} +{"Time":"2022-12-07T09:15:41.171384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.171 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"684.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a5c83c6-53ca-49cb-ba4e-51bf75657877\"}\n"} +{"Time":"2022-12-07T09:15:41.171699+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.171711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.171717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.171 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"858.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b84de1f0-738d-4f8f-a123-b6254504b855\"}\n"} +{"Time":"2022-12-07T09:15:41.172457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.172471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.172477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.172 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/organizations/85f6ef2f-c671-401f-b461-49639bdf4447/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"683µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c035ae4b-7d49-4f19-847c-ba5a6729df68\"}\n"} +{"Time":"2022-12-07T09:15:41.174362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.174 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/organizations/85f6ef2f-c671-401f-b461-49639bdf4447/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.4995ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"ee02674f-bf85-4948-aa05-b7c68b5ffc30\"}\n"} +{"Time":"2022-12-07T09:15:41.174615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" configssh_test.go:545: waiting for workspace build job f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\n"} +{"Time":"2022-12-07T09:15:41.175234+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.175243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.175248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.175 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"624.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b685bff8-39cf-433c-b388-f9ec5dc492e4\"}\n"} +{"Time":"2022-12-07T09:15:41.17795+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.177965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.177971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.177 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"658.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f94d2522-c6e2-4088-b06a-8e5f35f2e3b1\"}\n"} +{"Time":"2022-12-07T09:15:41.182916+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.18293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.182935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.182 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"621.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5fac784d-b26a-4cd3-8848-165d721214cd\"}\n"} +{"Time":"2022-12-07T09:15:41.186727+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.186745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.18675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.186 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"652.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e8748ddd-a8a3-4171-9fd5-419f9ece5385\"}\n"} +{"Time":"2022-12-07T09:15:41.186997+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.187013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.187019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.186 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"693.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"54faad35-2b2b-4ed2-8ec2-24b6cefd95a0\"}\n"} +{"Time":"2022-12-07T09:15:41.195723+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.195733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.195748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.195 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"667.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d454ff96-e0b2-4a97-b737-d51a16b141d9\"}\n"} +{"Time":"2022-12-07T09:15:41.196412+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.196421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.196426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.196565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.196663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:41.196762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_when_using_--yes2569395571/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.196832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_when_using_--yes2569395571/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.196861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_when_using_--yes2569395571/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.196901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.19705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:41.201594+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.201643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.201652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.201 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"999.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8217a9b1-2421-4c0a-81f7-0c639101c697\"}\n"} +{"Time":"2022-12-07T09:15:41.201662+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.201667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.201681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.201 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.109208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c24257bf-3f10-44d5-9e1f-bb98d7be4308\"}\n"} +{"Time":"2022-12-07T09:15:41.204642+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.204718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.204726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.204 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.120209ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f5ace85e-e8b4-4654-a237-64c1cd4dc9ec\"}\n"} +{"Time":"2022-12-07T09:15:41.208023+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.208055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.208126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"911.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"64887543-5a25-40de-9976-dae04f5e2939\"}\n"} +{"Time":"2022-12-07T09:15:41.212301+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.212319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.212326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.212 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.1045ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9950e9cc-d6c5-46ea-86e9-23df76d7d1b0\"}\n"} +{"Time":"2022-12-07T09:15:41.212343+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.212348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.212354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.212 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"925.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a4098ab9-f5fd-4fba-989b-de2a0db08a50\"}\n"} +{"Time":"2022-12-07T09:15:41.224408+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.224417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.22442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.224 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"519.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8227f4ab-b28a-4749-a2f7-b81c75d76a1b\"}\n"} +{"Time":"2022-12-07T09:15:41.225023+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.225031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.225034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.224 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"444µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dce0fe10-e795-4646-8fa1-081aa1e77aa7\"}\n"} +{"Time":"2022-12-07T09:15:41.225302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.225313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.225318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.225 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"509.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ce7f27aa-de2c-4c3e-8336-c962daa792b4\"}\n"} +{"Time":"2022-12-07T09:15:41.227825+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.227838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.227844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.227 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"599.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e27e3524-35e5-4611-a93e-d97a0432fb8b\"}\n"} +{"Time":"2022-12-07T09:15:41.227851+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.227856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.227861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.227 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:41.233106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.233 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"780µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c173d173-107e-49fe-ba29-99509f039146\"}\n"} +{"Time":"2022-12-07T09:15:41.238977+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.239043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.239051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.237 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.326583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"7ae4530f-ec58-44eb-9e15-6b6572fb8e4f\"}\n"} +{"Time":"2022-12-07T09:15:41.239062+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.239068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.239074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.238 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.697042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"90341ffc-e32d-4a4c-b99f-c6531005f5e0\"}\n"} +{"Time":"2022-12-07T09:15:41.245291+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.245406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.245416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.245 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"35.417µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:41.246687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.246696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.246724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.246 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.099084ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"582f2bfe-aef0-4f6f-997b-9bf67ad158d0\"}\n"} +{"Time":"2022-12-07T09:15:41.247336+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.247346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.247352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.247 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.247763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.247 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.251112+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.251156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.251164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.250 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.07125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d23f1f96-b171-4c86-9a04-abe5630128f0\"}\n"} +{"Time":"2022-12-07T09:15:41.251175+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.251187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.251193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.250 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.029959ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2f83d9a0-a573-4b4c-8961-e7ed2a1601f1\"}\n"} +{"Time":"2022-12-07T09:15:41.253331+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.25335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.253358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.253 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.050708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"5ba5ef0a-f3c4-43ca-b686-86e5c9b48507\"}\n"} +{"Time":"2022-12-07T09:15:41.258875+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.258897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.258906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.258 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.497416ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e2337e3b-90a6-4335-87c4-3ded56a4a904\"}\n"} +{"Time":"2022-12-07T09:15:41.26256+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.26258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.262589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.291417ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f17af367-ac1e-461d-945e-459723715376\"}\n"} +{"Time":"2022-12-07T09:15:41.262601+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.262607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.262614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.14575ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ac71f8b0-3fbf-447b-aa83-93faae434598\"}\n"} +{"Time":"2022-12-07T09:15:41.27161+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.271664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.271682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.271 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.323459ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b4ab3122-b70f-43db-aaf6-34134982937b\"}\n"} +{"Time":"2022-12-07T09:15:41.276803+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.276835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.276847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.276 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.505125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0a32c7cb-1699-40f8-9fd1-25a23c47fc53\"}\n"} +{"Time":"2022-12-07T09:15:41.277018+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.277029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.277039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.276 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.51575ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3a668ada-838b-4c93-9c16-f39029da76aa\"}\n"} +{"Time":"2022-12-07T09:15:41.279432+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.279454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.279463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.278 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.279472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.278 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.27948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.278 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:41.279489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.278 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.279499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.278 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.279508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.278 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.279516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.278 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.279525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.279532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.279538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.279 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.535375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a929bfef-6284-401e-977a-25fcefbf4872\"}\n"} +{"Time":"2022-12-07T09:15:41.279547+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.279552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.279558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.279 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:41.283455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.283 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.221875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"5b41f683-5436-47de-9831-3c0bf566b4c2\"}\n"} +{"Time":"2022-12-07T09:15:41.287416+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.287435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.287444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.287 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.183958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a6af2458-5899-4d51-a043-2cff1cc0a7cc\"}\n"} +{"Time":"2022-12-07T09:15:41.287817+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.287828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.287836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.287 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.39425ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b0f52e51-3bd6-443c-9bdd-296987b28400\"}\n"} +{"Time":"2022-12-07T09:15:41.296888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.296961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.296974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.296 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.691ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"afe4e097-204e-4686-bc79-1a8970bb2922\"}\n"} +{"Time":"2022-12-07T09:15:41.297836+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.297852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.297861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.297 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.298046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.297 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.298063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.297 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.298077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.297 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.298268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.298 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.298284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.298 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.298441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.298 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.298728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.298 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.298846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.298 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.301275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.300 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.137834ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9e995898-504b-48a3-ab1b-22d37dc0148f\"}\n"} +{"Time":"2022-12-07T09:15:41.301302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.301309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.301317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.301 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.327583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"fcd25fc3-d9f1-409a-a33d-c8c0f40c899f\"}\n"} +{"Time":"2022-12-07T09:15:41.303527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.303545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.303553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.303 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.21725ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"aa215505-05e2-447f-8181-28a74a65764b\"}\n"} +{"Time":"2022-12-07T09:15:41.309598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.309631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.309642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.308 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.471542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"8960240e-46b0-4285-81d9-5be06257e856\"}\n"} +{"Time":"2022-12-07T09:15:41.312643+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.312665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.312693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.312 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.353584ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a3570e76-a652-4522-b398-9bc39c7d25dd\"}\n"} +{"Time":"2022-12-07T09:15:41.312706+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.312711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.312718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.312 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.2305ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9be329cf-f926-4bc8-933d-3f33a74a36b6\"}\n"} +{"Time":"2022-12-07T09:15:41.316069+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.316085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.316092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.315 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.316327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.316 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.316471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.316 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:41.316591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.316 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.316679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.316 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.316769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.316 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.316855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.316 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"workspace_name\": \"great-rosalind5\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:41.317141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.317 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.317246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.317 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.322249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.322 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.749917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f7197024-c7c1-47d8-820c-3d6db954b21d\"}\n"} +{"Time":"2022-12-07T09:15:41.326762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.326788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.3268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.326 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.574459ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3c41e940-c481-4de4-9382-90b1c6201099\"}\n"} +{"Time":"2022-12-07T09:15:41.326815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.326823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.326832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.326 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.476291ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"df76823e-e9ef-498f-8d0e-c1abf36edbc5\"}\n"} +{"Time":"2022-12-07T09:15:41.326853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.326861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.32687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.326 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"25.125µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:41.328946+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.328962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.328971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.328 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.594958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"44171997-e8fb-4363-bdf0-7080f5d29961\"}\n"} +{"Time":"2022-12-07T09:15:41.329524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.329541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.329553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.329 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.329948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.329 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.335142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.835583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"267ebebf-3c3a-4d9a-8093-8ebcab937f1b\"}\n"} +{"Time":"2022-12-07T09:15:41.338514+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.338572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.338585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.665708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0e0bb170-db06-451b-9d3c-f9979378576f\"}\n"} +{"Time":"2022-12-07T09:15:41.338606+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.338615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.338624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.674584ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"dc24c20d-62c7-433c-a022-c7c2ac182fa7\"}\n"} +{"Time":"2022-12-07T09:15:41.347503+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.347537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.347548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.347 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.711958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f8d3c8a3-7f69-44ab-b34b-43b37021fab1\"}\n"} +{"Time":"2022-12-07T09:15:41.349268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.349285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.349298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.349 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.349542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.349 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.349559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.349 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.349571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.349 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.349819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.349 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.349838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.349 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.352043+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.352062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.352073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.351 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.607208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"41ae030e-fe21-4824-90a5-3a707cd45b5e\"}\n"} +{"Time":"2022-12-07T09:15:41.352087+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.352094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.352103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.351 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.510458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"eae7fd28-8243-4621-b7f3-9a6e6bc649d4\"}\n"} +{"Time":"2022-12-07T09:15:41.354187+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.354211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.354223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.354 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.544667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f52d0e4b-113c-4c6a-8f3f-4ca6a6b0aded\"}\n"} +{"Time":"2022-12-07T09:15:41.358677+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.358732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.358745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.358 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.366042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f855cdc5-e077-41f5-a2c9-a8e82785d251\"}\n"} +{"Time":"2022-12-07T09:15:41.377367+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.377385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.377395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.373 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.272125ms\", \"status_code\": 200, \"latency_ms\": 12, \"request_id\": \"b50df62b-a0be-4494-9d1b-4b6e16baeaaf\"}\n"} +{"Time":"2022-12-07T09:15:41.3774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.377403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.377406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.374 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.35375ms\", \"status_code\": 200, \"latency_ms\": 13, \"request_id\": \"342f77b0-8cec-4c14-a92d-edc2da9578b9\"}\n"} +{"Time":"2022-12-07T09:15:41.37741+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.377412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.377446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.377 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.483875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"88855f9f-52c0-45fe-9196-1a8d8f657c89\"}\n"} +{"Time":"2022-12-07T09:15:41.37782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.377824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.377827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.377 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.37783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.377 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.377834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.377 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.377838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.377 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.378687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.378737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.378745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"966.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"86dc2ed2-bf9f-4475-8dce-b2853ac39f3a\"}\n"} +{"Time":"2022-12-07T09:15:41.378761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.378765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.378774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"964.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"79cdc8a8-87e1-4609-809e-b780d1ba8857\"}\n"} +{"Time":"2022-12-07T09:15:41.379104+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.379117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.379121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.16925ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"65204215-ca06-4097-91ab-da2d449f967f\"}\n"} +{"Time":"2022-12-07T09:15:41.385675+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.385692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.385697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.385 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.385705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.385 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.385804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.385 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.38582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.385 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.385828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.385 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.385848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.385 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.385882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.385 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.386208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.386 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.386257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.386 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.386452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.038542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"6bfd1005-9164-48c2-9210-0d082c59bc88\"}\n"} +{"Time":"2022-12-07T09:15:41.386582+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.386601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.386606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"652.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5e9fd89d-4c2d-44cc-bc2b-338d029ad281\"}\n"} +{"Time":"2022-12-07T09:15:41.38705+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.38706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.387065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"790.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da36dfd7-21cb-44d0-8c6d-7d86e972a58b\"}\n"} +{"Time":"2022-12-07T09:15:41.3964+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.396418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.396425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"726.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"750d8f2d-d14c-4aa3-a760-aa896106b957\"}\n"} +{"Time":"2022-12-07T09:15:41.399965+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.399978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.399984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.399 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.399993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.399 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.400055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.399 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.400153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.400 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} +{"Time":"2022-12-07T09:15:41.400701+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.400715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.400721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.400 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"770.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2135f7f8-1098-4cf7-8c46-6a139636408c\"}\n"} +{"Time":"2022-12-07T09:15:41.400795+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.400801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.400807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.400 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"771.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"88ef15db-f798-4a54-bf5c-badc7ff5ffcc\"}\n"} +{"Time":"2022-12-07T09:15:41.401848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.401 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/organizations/b8d13b16-c151-4265-a1ed-fdc926eab0be/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"682.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"18d56443-f987-4415-9d4d-16ce46425845\"}\n"} +{"Time":"2022-12-07T09:15:41.40283+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.402841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.402846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.402 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"755.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ed4db2d-c621-4dfa-8a23-7f8f1546f83b\"}\n"} +{"Time":"2022-12-07T09:15:41.403693+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.403704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.403709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.403 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/organizations/b8d13b16-c151-4265-a1ed-fdc926eab0be/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.442958ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"8201673c-2a01-4313-95f3-79220ddfb91d\"}\n"} +{"Time":"2022-12-07T09:15:41.403866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" configssh_test.go:545: waiting for workspace build job 9bc35b03-4974-4638-b688-b0604d5599e3\n"} +{"Time":"2022-12-07T09:15:41.407611+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.40762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.407624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.407 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"623.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c08079f-198b-4ae0-b756-53e308112378\"}\n"} +{"Time":"2022-12-07T09:15:41.409928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.409937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.409946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.409 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.410104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.410178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:41.410249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.410301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.410371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.410402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"workspace_name\": \"elastic-ptolemy8\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:41.41059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.410641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.411475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.411485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.411491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.411 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"715.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8b5ed74c-57c0-4cf5-b237-a19313064b6e\"}\n"} +{"Time":"2022-12-07T09:15:41.411961+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.411971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.411975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.411 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"687.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"15f166b0-4387-4bb3-9730-29636139fe5b\"}\n"} +{"Time":"2022-12-07T09:15:41.415456+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.415465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.41547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.415 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.415607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.415 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.415679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.415 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:41.415747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.415795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"size_bytes\": 119, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.415858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"size_bytes\": 119, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.41589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"workspace_name\": \"gracious-mirzakhani8\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:41.416115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.416 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.416197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.416 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"071b1431-dae4-4cb7-8813-e8755d14cd3d\", \"name\": \"agent1\", \"Auth\": null}, {\"id\": \"ca9f2437-218b-4cb2-88d8-80a1345751b9\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.420135+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.420145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.420151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.420311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.42041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:41.420481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_when_prev_opts_flag_is_set1359041455/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.420556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_when_prev_opts_flag_is_set1359041455/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.420602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_when_prev_opts_flag_is_set1359041455/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.420711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"workspace_name\": \"practical-mendel4\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:41.420859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.420873+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.420882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.420888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.420 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"719.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b70f83e9-12a6-4da6-9591-9b8ac8ba9389\"}\n"} +{"Time":"2022-12-07T09:15:41.420904+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.420909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.420913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.425537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.425 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"663µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae1eeac1-8079-4243-a42e-09032cfac79b\"}\n"} +{"Time":"2022-12-07T09:15:41.427936+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.427946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.427951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.427 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"664.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eeb82124-e008-4bc0-a2a0-8f10d9ce5b6a\"}\n"} +{"Time":"2022-12-07T09:15:41.42809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.428101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.428107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.428 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.42828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.428 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.428321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.428 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.429879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.42989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.429895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"662.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cfb1406d-db06-4342-9544-fd551ab71453\"}\n"} +{"Time":"2022-12-07T09:15:41.432681+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.432692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.432697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.432 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f50b1b49-63f5-46dd-8e8d-eed23551cd4e\"}\n"} +{"Time":"2022-12-07T09:15:41.437272+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.437304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.437311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"853.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4fa1e1f0-b6a8-44bd-9404-6348e6b5444c\"}\n"} +{"Time":"2022-12-07T09:15:41.43776+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.437768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.437773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"853.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1293dcee-8e61-470d-a3f9-6122e021b919\"}\n"} +{"Time":"2022-12-07T09:15:41.43778+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.437783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.437792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.437797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.437804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.437809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.437813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.43782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.446595+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.446633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.446641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.446 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"963.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ca208512-e768-4d7c-b483-8c842cd895d5\"}\n"} +{"Time":"2022-12-07T09:15:41.451611+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.451632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.451639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.451 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"888.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1c8ff800-70c2-4f04-9eb6-70878878aa4c\"}\n"} +{"Time":"2022-12-07T09:15:41.453467+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.453484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.45349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.453 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"973.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"228a7133-3c30-4847-bf1b-ff45051900be\"}\n"} +{"Time":"2022-12-07T09:15:41.455045+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.455086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.455092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"727.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e4ff5833-f1cf-4e30-9197-3c7c22d97d6b\"}\n"} +{"Time":"2022-12-07T09:15:41.455823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.455831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.45584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.455 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.455979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.455 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.456067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.456 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:41.456146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.456 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.456206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.456 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.456266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.456 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.456326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.456 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"workspace_name\": \"modest-agnesi2\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:41.456434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.456 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.456521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.456 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.45839+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.458409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.458415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"890.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b95ea980-64d2-4279-b8a7-ef7d689fb4b4\"}\n"} +{"Time":"2022-12-07T09:15:41.46288+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.462902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.462908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.461 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"856.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1a95ce59-9415-4bc1-9b87-7e8b6a447823\"}\n"} +{"Time":"2022-12-07T09:15:41.464054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.46407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.464076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.463 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.4045ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ab7a9781-12ab-494c-ac0f-7645bbf85725\"}\n"} +{"Time":"2022-12-07T09:15:41.464083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.463 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.464089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.463 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.464094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.463 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.4641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.463 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.466718+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.466729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.466735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.466 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.46683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.466 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.466838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.466 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.466956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.466 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.471455+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.471475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.471481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"989.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db9b0633-6149-4995-9892-591086b7cd51\"}\n"} +{"Time":"2022-12-07T09:15:41.471802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.471809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.471813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.471 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.471818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.471 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.471944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.471 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.471952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.471 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.476771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.476 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.126875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a5ba9bd8-56fe-4ae6-aaa4-dca9285f266f\"}\n"} +{"Time":"2022-12-07T09:15:41.479239+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.479272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.47928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.478 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.479288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.478 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.479295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.478 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.479301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.478 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.479307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.479 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.48053+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.480542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.480555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.115292ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a230cc19-48a2-4541-8708-009c44878933\"}\n"} +{"Time":"2022-12-07T09:15:41.480564+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.480569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.480574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.480 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"908.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0e1d7339-4c5d-45f9-95ae-40fd9de9c214\"}\n"} +{"Time":"2022-12-07T09:15:41.482985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.48301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.483018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.482 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"945.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0e2001ca-1a17-4003-a7f9-494f6219ee02\"}\n"} +{"Time":"2022-12-07T09:15:41.487239+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.487259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.487266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.486 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"980.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"169f6ba2-4b70-48fb-a2a6-6eda8193e2a9\"}\n"} +{"Time":"2022-12-07T09:15:41.487423+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.487432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.487439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.487 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.07475ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"56f2c28d-ed96-44d6-a01d-269d47b331f8\"}\n"} +{"Time":"2022-12-07T09:15:41.488015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.488023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.488029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.487 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.488134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.488 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.488174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.488 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.488182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.488 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} +{"Time":"2022-12-07T09:15:41.497023+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.497057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.497064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.496 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.155875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bf772da5-9d41-4417-8fc6-d2a1c891fc59\"}\n"} +{"Time":"2022-12-07T09:15:41.501809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.501843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.501851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.501 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.536458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"7eea2cde-307d-4256-8088-afa8294b9aa8\"}\n"} +{"Time":"2022-12-07T09:15:41.503586+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.503627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.503636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.503 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.344708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"13886953-8bb0-4894-8ad2-3c67d718f0a9\"}\n"} +{"Time":"2022-12-07T09:15:41.505201+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.505214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.505229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.505 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.055958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"44ae8170-08e1-42c8-a824-ef112f673ddb\"}\n"} +{"Time":"2022-12-07T09:15:41.507235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.507246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.507253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.506 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.507261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.506 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.507267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.507 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.507274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.507 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.508215+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.508227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.508234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.508 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.274083ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c394651e-ce18-4fd3-ae68-711817e0aaa9\"}\n"} +{"Time":"2022-12-07T09:15:41.509814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.509 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/organizations/a1f786ab-66d9-461e-b527-429d017e9dee/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.032292ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"a3eb3109-7255-4c2c-8d30-037a1af87385\"}\n"} +{"Time":"2022-12-07T09:15:41.51295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.512979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.512986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.512 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"58412c2f-4949-4b3c-b857-a4aa734d9ec6\"}\n"} +{"Time":"2022-12-07T09:15:41.512994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.512998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.513004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.512 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/organizations/a1f786ab-66d9-461e-b527-429d017e9dee/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.210042ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"b2a10d5f-df2f-4b0a-b23c-ccf0812f297a\"}\n"} +{"Time":"2022-12-07T09:15:41.513588+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.513595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.513603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.513 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"874µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"728baa2c-38dc-49ea-a20d-e611a77cf41b\"}\n"} +{"Time":"2022-12-07T09:15:41.51361+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.513613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.513618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:545: waiting for workspace build job 4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\n"} +{"Time":"2022-12-07T09:15:41.514475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.514506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.514514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.514 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.514637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.514 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.514646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.514 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.517407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.517417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.517424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.517 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.517713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.517 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.517784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.517 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"071b1431-dae4-4cb7-8813-e8755d14cd3d\", \"name\": \"agent1\", \"Auth\": null}, {\"id\": \"ca9f2437-218b-4cb2-88d8-80a1345751b9\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.521309+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.521341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.521349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.521 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.156917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4ad5559f-b744-43dc-bd86-7492c792bc9b\"}\n"} +{"Time":"2022-12-07T09:15:41.522416+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.522452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.522461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.522 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.522613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.522 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.522679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.522 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.526592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.526 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.255333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e449e05f-1922-43d2-903f-b49bce1a41bf\"}\n"} +{"Time":"2022-12-07T09:15:41.5282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.528232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.52824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.528 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.044083ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0da6f661-db6b-4213-adf0-dbdbb332329e\"}\n"} +{"Time":"2022-12-07T09:15:41.529687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.5297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.529708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.529 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.529715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.529 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.529722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.529 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.529728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.529 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.529734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.529 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.530346+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.530356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.530363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.530 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.040958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bbc92bfa-7eef-4a47-b535-71ee166d959c\"}\n"} +{"Time":"2022-12-07T09:15:41.538476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.538512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.538521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.142334ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1a71415d-7675-4f27-a7fe-3ffdc29d4562\"}\n"} +{"Time":"2022-12-07T09:15:41.53853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.538536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.538544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.142708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"26814ccd-dd5c-4f6e-b007-e47f451b112a\"}\n"} +{"Time":"2022-12-07T09:15:41.540014+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.540105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.540113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.539 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.093208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"18611c54-2e62-4fbb-8231-b915c98e45b9\"}\n"} +{"Time":"2022-12-07T09:15:41.546655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.546695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.546704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.546 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.25275ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"02f07068-b9e0-4444-a6b7-8ce47745f2de\"}\n"} +{"Time":"2022-12-07T09:15:41.552358+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.552395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.552403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.287959ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d1cfa219-2abb-4def-b3dd-eb7c1fbeb693\"}\n"} +{"Time":"2022-12-07T09:15:41.553496+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.553507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.553514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.553 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.273583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"8a5474f7-b8ad-44c8-af31-548b98db16d4\"}\n"} +{"Time":"2022-12-07T09:15:41.55557+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.555589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.555597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.555 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.228667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"982918f6-e989-43ed-be78-920788fcae43\"}\n"} +{"Time":"2022-12-07T09:15:41.557644+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.557665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.557673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.557 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.557974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.557 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.558018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.557 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.563314+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.563344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.563354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.562 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.549291ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"8fab9aaa-fafe-4f10-abc8-8ab6f4df62e6\"}\n"} +{"Time":"2022-12-07T09:15:41.564256+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.564271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.564279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.563 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.306584ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"f198461b-f8ff-4fec-9ae1-46675e9b596c\"}\n"} +{"Time":"2022-12-07T09:15:41.566558+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.566583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.5666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.566 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.566648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.566 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.566656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.566 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.566661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.566 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.56667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.566 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.567679+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.567689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.567696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.567 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.256ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c0573e48-37c6-45b9-ac7b-49884e03b372\"}\n"} +{"Time":"2022-12-07T09:15:41.568446+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.568456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.568463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.568 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.56847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.568 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.568482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.568 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.568674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.568 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.568685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.568 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.571622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.571648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.571655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.571 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.366833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1d9ba527-de85-4e76-8824-18f029eb1140\"}\n"} +{"Time":"2022-12-07T09:15:41.572986+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.573004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.57301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.572 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.573129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.572 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.573147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.573 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.573156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.573 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.573297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.573 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.576353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.576 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.084167ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ade91de1-5a08-4bf4-82f6-7d23556014a8\"}\n"} +{"Time":"2022-12-07T09:15:41.578163+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.578177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.578183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.578 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"968.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6ea3ddb1-881e-4bea-8ba3-f1b394693e2b\"}\n"} +{"Time":"2022-12-07T09:15:41.580211+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.580235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.580241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.579 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.580248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.579 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.58028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.580 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} +{"Time":"2022-12-07T09:15:41.580287+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.580292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.580298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.580 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"942.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"528c2c46-cea7-4b02-9670-598f51a69ade\"}\n"} +{"Time":"2022-12-07T09:15:41.588955+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.588988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.588996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.588 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.528583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b3df0608-60c5-4d9e-942e-db3bdc85c1ca\"}\n"} +{"Time":"2022-12-07T09:15:41.589009+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.589015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.58902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.588 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.448084ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"6b580b4e-730e-44a7-beac-a65ed49e7309\"}\n"} +{"Time":"2022-12-07T09:15:41.590514+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.590544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.590553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.089584ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"209b5e49-e4c9-4b8b-b190-56b9b1faf0c3\"}\n"} +{"Time":"2022-12-07T09:15:41.596772+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.596804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.596812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.596 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.341542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0e4993cf-dec8-433f-80ec-ac6454027ce4\"}\n"} +{"Time":"2022-12-07T09:15:41.598459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/003/.ssh/config\n"} +{"Time":"2022-12-07T09:15:41.598478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" configssh_test.go:551: Wrote 254\n"} +{"Time":"2022-12-07T09:15:41.606151+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.606193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.606202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.601 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.305292ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e65ef0ee-8238-41d7-a442-d3a79cd37bd6\"}\n"} +{"Time":"2022-12-07T09:15:41.606268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.606291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.606298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.604 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.975083ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1a211727-2a04-4559-9490-06e4d71606ad\"}\n"} +{"Time":"2022-12-07T09:15:41.606973+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.606987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.606992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.606 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.066791ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"455e1174-8893-40a3-8d73-ff0ecb3709ee\"}\n"} +{"Time":"2022-12-07T09:15:41.607992+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.608008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.608033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.607 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"58.792µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"ee32e8c5-3d8a-4ff5-a698-2d42731421d5\"}\n"} +{"Time":"2022-12-07T09:15:41.608371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.608 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"38.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ff122d5-987c-4f2b-bb6b-4074a6292d49\"}\n"} +{"Time":"2022-12-07T09:15:41.608392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.608399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.608406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.608 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.608438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.608 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.608488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.608 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.608513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.608 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.608614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.608 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.61178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.611 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"776.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"090476a4-64a2-415d-9af7-2cd30d73fd76\"}\n"} +{"Time":"2022-12-07T09:15:41.612132+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.612154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.612161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.612 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"781.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9beb1223-fcab-4e0f-95fb-902abae32391\"}\n"} +{"Time":"2022-12-07T09:15:41.614593+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.614606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.614611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.614 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"612.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"63364146-7122-4306-9cf4-8f2f14c54aed\"}\n"} +{"Time":"2022-12-07T09:15:41.616879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.61689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.616894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.616 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.616917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.616 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.616976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.616 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.616997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.616 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.617142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.617 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.61906+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.619071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.619076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.618 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.619083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.619 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.619115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.619 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.619164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.619 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.619257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.619 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.622165+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.622174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.62218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.622 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.279042ms\", \"status_code\": 200, \"latency_ms\": 13, \"request_id\": \"18675c15-8867-489a-a7d8-6f021a708816\"}\n"} +{"Time":"2022-12-07T09:15:41.623146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.623 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"567.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4e9d321-8e40-41f4-a9fd-a58fcfe4a79b\"}\n"} +{"Time":"2022-12-07T09:15:41.623358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"Dry run, the following changes would be made to your SSH configuration:\"\n"} +{"Time":"2022-12-07T09:15:41.623375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.623379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \" * Use new SSH options\"\n"} +{"Time":"2022-12-07T09:15:41.623388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:41.623394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.623464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"--- /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:41.623475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.623478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.623482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.623 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.623488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.623494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.623498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"+++ /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:41.623507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"@@ -4,4 +4,7 @@\"\n"} +{"Time":"2022-12-07T09:15:41.623512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \" # You should not hand-edit this section unless you are removing it, all\"\n"} +{"Time":"2022-12-07T09:15:41.623516+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.62352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.623524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.623 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.623536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.62354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.623554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \" # changes will be lost when running \\\"coder config-ssh\\\".\"\n"} +{"Time":"2022-12-07T09:15:41.623561+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.623565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.623569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.623 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.623573+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.623577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.623584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \" #\"\n"} +{"Time":"2022-12-07T09:15:41.623589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"+# Last config-ssh options:\"\n"} +{"Time":"2022-12-07T09:15:41.623594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"+# :ssh-option=ForwardAgent=yes\"\n"} +{"Time":"2022-12-07T09:15:41.623598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"+#\"\n"} +{"Time":"2022-12-07T09:15:41.623606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \" # ------------END-CODER------------\"\n"} +{"Time":"2022-12-07T09:15:41.623689+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.623697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.623701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.623 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.623732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.623 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.623762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} +{"Time":"2022-12-07T09:15:41.623765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} +{"Time":"2022-12-07T09:15:41.62377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:80: 2022-12-07 08:15:41.623: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:41.62386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.623 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:41.625735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:41.625813+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.625819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.627753+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.627764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.627768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.627 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"816.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5bca0dda-2c98-4666-9b6a-f98f5d9e7976\"}\n"} +{"Time":"2022-12-07T09:15:41.629526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.629544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.629549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.629 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"717.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"462818b6-8627-4822-8908-41c303649754\"}\n"} +{"Time":"2022-12-07T09:15:41.63014+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.630152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.630173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.630 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"195.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"571449f6-3f70-4d65-beef-f7fbcc7e3350\"}\n"} +{"Time":"2022-12-07T09:15:41.630508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.630 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"73.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ff3d2606-de35-493d-aa26-c2704d7568f4\"}\n"} +{"Time":"2022-12-07T09:15:41.630813+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.630822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.630827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.630 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"752.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"54b4fada-b819-4a2b-b539-8d52387ae265\"}\n"} +{"Time":"2022-12-07T09:15:41.631537+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.631548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.631553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.631 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"711.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8a391047-56d7-4504-b78a-d43ac4801fc0\"}\n"} +{"Time":"2022-12-07T09:15:41.632715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/organizations/25ab81a8-d905-42b4-9125-90b61229bd9b/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"901.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"454c2174-0670-43b8-b912-933f288bec59\"}\n"} +{"Time":"2022-12-07T09:15:41.632852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" configssh_test.go:542: waiting for template version job 419df21f-d7ea-451b-87a0-38b0a4ee58a5\n"} +{"Time":"2022-12-07T09:15:41.641769+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.641779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.641783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.641 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"903.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"67189318-8c23-4e09-8caf-f92f8f72854d\"}\n"} +{"Time":"2022-12-07T09:15:41.641792+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.641795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.641799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.641 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"854.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e452e834-88ae-4fd2-a315-a60d09d77f7a\"}\n"} +{"Time":"2022-12-07T09:15:41.641808+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.641811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.641815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.641 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"943.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7c5deb0f-f526-44bc-8652-f3651483e78c\"}\n"} +{"Time":"2022-12-07T09:15:41.651609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.651633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.651638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.651 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"576.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e71f226-04d0-4064-adf6-cda4c43adb30\"}\n"} +{"Time":"2022-12-07T09:15:41.652622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.652632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.652637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.652 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"501.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"10bbaf37-e112-4b24-bc92-a00d4076ef94\"}\n"} +{"Time":"2022-12-07T09:15:41.654752+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.654766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.654787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"502.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1064f08e-55b5-41aa-b762-0dc2c724cb79\"}\n"} +{"Time":"2022-12-07T09:15:41.658864+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.658872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.658876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.658 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.658886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.658 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.658924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.658 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.658974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.658 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.659103+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.659118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.659123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.659 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"594.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f6f6372d-ea02-4b89-815e-1b25dc0ecf75\"}\n"} +{"Time":"2022-12-07T09:15:41.659131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.659135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.659139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.659 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.661543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"680.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"713828b6-07a5-404b-bc02-62dff6d09a85\"}\n"} +{"Time":"2022-12-07T09:15:41.661948+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.661959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.661963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"608.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cacfe4b0-73fd-43db-9009-28c417874257\"}\n"} +{"Time":"2022-12-07T09:15:41.664561+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.66457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.664575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.664 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"583.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b66e5a82-386f-4abb-b482-ec412b6fd829\"}\n"} +{"Time":"2022-12-07T09:15:41.667475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.667486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.667492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.667 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.66756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.667 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.667625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.667 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} +{"Time":"2022-12-07T09:15:41.669692+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.669715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.669721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.669 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.669754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.669 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:41.669829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.669 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.669906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.669 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} +{"Time":"2022-12-07T09:15:41.674336+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.674347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.674362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.674 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.674391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.674 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.674473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.674 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} +{"Time":"2022-12-07T09:15:41.675636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.675 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"620.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d513641-0fe2-4a8c-ab29-6c0fbbd671bb\"}\n"} +{"Time":"2022-12-07T09:15:41.676209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_when_prev_opts_flag_is_set1359041455/003/.ssh/config\n"} +{"Time":"2022-12-07T09:15:41.676412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" configssh_test.go:551: Wrote 314\n"} +{"Time":"2022-12-07T09:15:41.677983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.677992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.677996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.677 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"670.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0bacabcd-bc0c-4d2d-b57b-746a562db22d\"}\n"} +{"Time":"2022-12-07T09:15:41.679872+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.679882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.679887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.679 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"633.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"91859fff-bb3d-487e-9a47-8c25e6702c77\"}\n"} +{"Time":"2022-12-07T09:15:41.680895+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.68091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.680917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.680 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"46.333µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"6e11bd35-640b-41d6-8328-76e1d994f153\"}\n"} +{"Time":"2022-12-07T09:15:41.681232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.681 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"32.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e948f804-459a-4303-8780-82a764f1b2c0\"}\n"} +{"Time":"2022-12-07T09:15:41.683099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.683118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.683125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.682 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"40.666µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"2693340b-201f-474f-b2b2-afb473adf2ad\"}\n"} +{"Time":"2022-12-07T09:15:41.68537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.683 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"78.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"096dcebc-7281-4dd1-b76a-6a7b88f40138\"}\n"} +{"Time":"2022-12-07T09:15:41.685479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.685486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.685492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.685 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.236333ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"6c2522bb-b24e-48b3-89de-d9812587e9d4\"}\n"} +{"Time":"2022-12-07T09:15:41.689619+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.689644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.68965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.689 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.718458ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"579dfe64-6d9f-40d8-a8da-dcd4cb3fa39d\"}\n"} +{"Time":"2022-12-07T09:15:41.692465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.692475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.692478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.690 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.049333ms\", \"status_code\": 200, \"latency_ms\": 3, \"request_id\": \"d4f5de2d-e8c7-4e7b-a757-0e01315ad935\"}\n"} +{"Time":"2022-12-07T09:15:41.694135+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.694143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.694146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.694 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.956667ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"f8616fd1-7ec6-4954-9094-47828d2b4ef7\"}\n"} +{"Time":"2022-12-07T09:15:41.696225+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.696231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.696234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.696 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"99fac72e-7b9d-46b3-8d3c-c4026aa01fce\"}\n"} +{"Time":"2022-12-07T09:15:41.696495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.696 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"24µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d1aea78-59c7-4078-ad5b-4990883bbf32\"}\n"} +{"Time":"2022-12-07T09:15:41.698183+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.698195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.698198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.534167ms\", \"status_code\": 200, \"latency_ms\": 16, \"request_id\": \"ea1d9a22-4f9a-4ca3-8ea0-00ad7bbcc20a\"}\n"} +{"Time":"2022-12-07T09:15:41.698666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"291.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39c4f560-7036-4b1c-95d4-92ab0d3f10b4\"}\n"} +{"Time":"2022-12-07T09:15:41.698772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" ptytest.go:103: 2022-12-07 08:15:41.698: cmd: stdout: \"No changes to make.\"\n"} +{"Time":"2022-12-07T09:15:41.698833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" ptytest.go:80: 2022-12-07 08:15:41.698: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:41.698861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.698 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:41.699287+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.699294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.699297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.6825ms\", \"status_code\": 200, \"latency_ms\": 12, \"request_id\": \"a74e3239-6db3-4d6b-a4b8-929b0ff5792b\"}\n"} +{"Time":"2022-12-07T09:15:41.699604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} +{"Time":"2022-12-07T09:15:41.69961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} +{"Time":"2022-12-07T09:15:41.699612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:41.69964+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.699643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.701678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.701 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"88.709µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8dc92f5b-50e4-4c90-974c-36cecf938b96\"}\n"} +{"Time":"2022-12-07T09:15:41.701825+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.70183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.701833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.701 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9cf06fd0-c7e9-4ca7-9674-107d26b5cf7b\"}\n"} +{"Time":"2022-12-07T09:15:41.701888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.701896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.701898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.701 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"42.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2c00c095-5ba5-4080-8410-de0236b04c99\"}\n"} +{"Time":"2022-12-07T09:15:41.701938+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.70194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.701944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.701 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.21475ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"ca86be35-9a4c-4dd0-8496-4aab8c5ee7d3\"}\n"} +{"Time":"2022-12-07T09:15:41.701991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.702003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.701: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} +{"Time":"2022-12-07T09:15:41.70201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.701: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.702013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.701: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:41.702015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.701: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.702017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" configssh_test.go:694: 2022-12-07 08:15:41.701: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} +{"Time":"2022-12-07T09:15:41.70203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" configssh_test.go:695: 2022-12-07 08:15:41.702: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:41.70205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:41.702068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.702258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} +{"Time":"2022-12-07T09:15:41.702264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"For example, try running:\"\n"} +{"Time":"2022-12-07T09:15:41.702267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.702269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\\t$ ssh coder.gracious-mirzakhani8\"\n"} +{"Time":"2022-12-07T09:15:41.702312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:80: 2022-12-07 08:15:41.702: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:41.702375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.702 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:41.702417+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.702419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.702421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8a0b3fb4-e496-4e02-a22e-04111ed022d8\"}\n"} +{"Time":"2022-12-07T09:15:41.702495+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.702503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.702505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c039207b-2504-43a7-ab00-64752fa16cc7\"}\n"} +{"Time":"2022-12-07T09:15:41.702552+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.702556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.702558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} +{"Time":"2022-12-07T09:15:41.70256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.702563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:41.702565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.702602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" configssh_test.go:575: 2022-12-07 08:15:41.702: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} +{"Time":"2022-12-07T09:15:41.702607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" configssh_test.go:576: 2022-12-07 08:15:41.702: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:41.70264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:41.702645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.702864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} +{"Time":"2022-12-07T09:15:41.702872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"For example, try running:\"\n"} +{"Time":"2022-12-07T09:15:41.702874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.702877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\\t$ ssh coder.elastic-ptolemy8\"\n"} +{"Time":"2022-12-07T09:15:41.702963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:80: 2022-12-07 08:15:41.702: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:41.703017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.702 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:41.703255+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} +{"Time":"2022-12-07T09:15:41.703263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} +{"Time":"2022-12-07T09:15:41.703266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:41.703285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames","Output":"--- PASS: TestConfigSSH_Hostnames (0.00s)\n"} +{"Time":"2022-12-07T09:15:41.703289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" --- PASS: TestConfigSSH_Hostnames/one_resource_with_one_agent (0.85s)\n"} +{"Time":"2022-12-07T09:15:41.703291+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Elapsed":0.85} +{"Time":"2022-12-07T09:15:41.703295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" --- PASS: TestConfigSSH_Hostnames/two_resources_with_two_agents (1.11s)\n"} +{"Time":"2022-12-07T09:15:41.703296+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Elapsed":1.11} +{"Time":"2022-12-07T09:15:41.703298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" --- PASS: TestConfigSSH_Hostnames/two_resources_with_one_agent (0.75s)\n"} +{"Time":"2022-12-07T09:15:41.7033+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Elapsed":0.75} +{"Time":"2022-12-07T09:15:41.703301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" --- PASS: TestConfigSSH_Hostnames/one_resource_with_two_agents (1.57s)\n"} +{"Time":"2022-12-07T09:15:41.703311+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Elapsed":1.57} +{"Time":"2022-12-07T09:15:41.703313+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames","Elapsed":0} +{"Time":"2022-12-07T09:15:41.703315+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.703316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.703929+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.703934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.703936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.703 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/organizations/bdbdeeda-6706-467e-91d5-09aaf123d35e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"672µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8f89a14d-dcce-41f8-94b0-236e34f706e2\"}\n"} +{"Time":"2022-12-07T09:15:41.704006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} +{"Time":"2022-12-07T09:15:41.704012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} +{"Time":"2022-12-07T09:15:41.704014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:41.704017+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.704019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.704021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" configssh_test.go:542: waiting for template version job 1e244544-c6ca-4df5-82e2-a5fc1edddb3c\n"} +{"Time":"2022-12-07T09:15:41.704043+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.704047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.705132+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.705136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.705138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"412.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ba95d89f-3078-477c-be3e-41f94ac4ada2\"}\n"} +{"Time":"2022-12-07T09:15:41.705567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.705573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.705576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"72.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"21d24725-5ac6-4cd6-9311-e7a29b8b9bf1\"}\n"} +{"Time":"2022-12-07T09:15:41.705742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"34.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ebc0568a-7985-4d13-918d-f9de29876aa4\"}\n"} +{"Time":"2022-12-07T09:15:41.706291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"385.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bed66b9b-1f65-4e67-80eb-eb33d0c77358\"}\n"} +{"Time":"2022-12-07T09:15:41.706317+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.706321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.706323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"88.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"abad4213-d870-4d1b-ad91-db9bda1028ba\"}\n"} +{"Time":"2022-12-07T09:15:41.706505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"27.416µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f877dc1e-9643-46d5-917c-ec83494d1ba3\"}\n"} +{"Time":"2022-12-07T09:15:41.706915+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.706925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.706927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/organizations/11827f28-bbc9-4a4a-98a5-f2cd06170eb5/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"470.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b884c86b-1dfa-45e8-ab24-d0470b0b4e65\"}\n"} +{"Time":"2022-12-07T09:15:41.706994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:542: waiting for template version job b8294ca2-03d5-47ef-9104-5d803df5b95b\n"} +{"Time":"2022-12-07T09:15:41.707001+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.707003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.707005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"340.709µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8eacd97f-bb8b-4955-9083-bd0d60a01eac\"}\n"} +{"Time":"2022-12-07T09:15:41.707627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.707 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/organizations/de28ba55-34c0-4ec1-87b4-9349043825b9/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"493.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4baf374e-5c5b-4840-825d-0036913ea451\"}\n"} +{"Time":"2022-12-07T09:15:41.707706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" configssh_test.go:542: waiting for template version job 11f9de78-3455-46c5-9d3c-50f44bb061f9\n"} +{"Time":"2022-12-07T09:15:41.709174+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.709178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.70918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.709 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"322.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6a0812d-7ea0-4f16-a93b-eb0dbabeece9\"}\n"} +{"Time":"2022-12-07T09:15:41.7092+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.709203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.709205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.709 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.709225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.709 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.709262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.709 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} +{"Time":"2022-12-07T09:15:41.711537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.711 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"355.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"251ee5a0-045f-47a8-a190-a5130a8f0243\"}\n"} +{"Time":"2022-12-07T09:15:41.711749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/003/.ssh/config\n"} +{"Time":"2022-12-07T09:15:41.711826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:551: Wrote 313\n"} +{"Time":"2022-12-07T09:15:41.713821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.713 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.125µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"b2d72222-8581-404f-bbad-707b710cf7ba\"}\n"} +{"Time":"2022-12-07T09:15:41.713969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.713 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b2ff3c4-5a5a-4910-b031-b9b563a2661e\"}\n"} +{"Time":"2022-12-07T09:15:41.714326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \"\u003e New options differ from previous options:\"\n"} +{"Time":"2022-12-07T09:15:41.714331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.714333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \" New options: none\"\n"} +{"Time":"2022-12-07T09:15:41.714336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.714338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \" Previous options:\"\n"} +{"Time":"2022-12-07T09:15:41.714341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \" * ssh-option: ForwardAgent=yes\"\n"} +{"Time":"2022-12-07T09:15:41.714343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.714365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:575: 2022-12-07 08:15:41.714: cmd: matched \"Use new options?\" = \"\u003e New options differ from previous options:\\r\\n\\r\\n New options: none\\r\\n\\r\\n Previous options:\\r\\n * ssh-option: ForwardAgent=yes\\r\\n\\r\\n Use new options?\"\n"} +{"Time":"2022-12-07T09:15:41.714369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:576: 2022-12-07 08:15:41.714: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:41.71441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \" Use new options? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:41.714412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.714877+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.714885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.714888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.714 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e473bfc4-a892-44cc-b7f8-d4417330a74f\"}\n"} +{"Time":"2022-12-07T09:15:41.719664+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} +{"Time":"2022-12-07T09:15:41.719668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} +{"Time":"2022-12-07T09:15:41.71967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.719 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.491792ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"552ab037-b2e8-4eb6-abd0-c87aa72a843f\"}\n"} +{"Time":"2022-12-07T09:15:41.720138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.720 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"267.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c75a74d-73e1-4248-8087-c13ce31562b2\"}\n"} +{"Time":"2022-12-07T09:15:41.720213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} +{"Time":"2022-12-07T09:15:41.720218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.72022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \" * Use new SSH options\"\n"} +{"Time":"2022-12-07T09:15:41.720222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:41.720226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.720259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:575: 2022-12-07 08:15:41.720: cmd: matched \"Continue?\" = \" (\\x1b[1myes\\x1b[0m/no) yes\\r\\n\\r\\n\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Use new SSH options\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} +{"Time":"2022-12-07T09:15:41.720262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:576: 2022-12-07 08:15:41.720: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:41.720279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:41.720296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.720572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} +{"Time":"2022-12-07T09:15:41.720576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"For example, try running:\"\n"} +{"Time":"2022-12-07T09:15:41.720578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:41.720591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"\\t$ ssh coder.modest-agnesi2\"\n"} +{"Time":"2022-12-07T09:15:41.720622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:80: 2022-12-07 08:15:41.720: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:41.720655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.720 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:41.721352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:41.721379+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:41.721382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:41.726175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.726 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"139.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cffdb084-1860-4dbb-9c7a-e29822239b9b\"}\n"} +{"Time":"2022-12-07T09:15:41.726474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.726 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"51.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3b0d07ae-19d0-49a9-aa0a-89427ff67943\"}\n"} +{"Time":"2022-12-07T09:15:41.72733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.727 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"575.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"de332836-226a-4a81-b333-ab9d0c58403f\"}\n"} +{"Time":"2022-12-07T09:15:41.728263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.728 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/organizations/bd9d78a1-d152-4025-b8b2-820c75c7b030/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"703.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ebf74127-a548-47b6-abea-7a15ee27cf06\"}\n"} +{"Time":"2022-12-07T09:15:41.728368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" configssh_test.go:542: waiting for template version job 8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\n"} +{"Time":"2022-12-07T09:15:41.729291+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.729294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.729296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.729 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:41.730366+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.730375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.730377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"379.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b8b31390-ab39-494a-bcdc-3e927d46c7fa\"}\n"} +{"Time":"2022-12-07T09:15:41.730381+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.730382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.730385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"79fc48ba-90ea-4027-b751-3bbc1cf211ef\"}\n"} +{"Time":"2022-12-07T09:15:41.733535+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.733541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.733544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b828c919-3f26-4f03-ad5c-994e645b051b\"}\n"} +{"Time":"2022-12-07T09:15:41.733638+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.733643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.733645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"af1b53b5-eef5-4a5f-86f3-95c5703d258a\"}\n"} +{"Time":"2022-12-07T09:15:41.733665+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.733668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.733695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"74e90872-5fef-4446-a3d7-41fa2248d3fc\"}\n"} +{"Time":"2022-12-07T09:15:41.740987+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.740993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.740997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.740 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"455.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e3f5b6ff-4c05-4974-b43a-8092b128b57f\"}\n"} +{"Time":"2022-12-07T09:15:41.75497+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:41.75498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:41.754985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a24b45c0-0764-4141-b9f4-82710328705b\"}\n"} +{"Time":"2022-12-07T09:15:41.754992+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.754995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.754997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9dc691e9-9b21-4f24-ba61-3b23f8cdc96c\"}\n"} +{"Time":"2022-12-07T09:15:41.75501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.755012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.755015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9aab9d4b-a064-4431-8013-221489394b40\"}\n"} +{"Time":"2022-12-07T09:15:41.757808+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.757816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.757819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cdcdd035-7d20-42d7-ae35-889809c643ca\"}\n"} +{"Time":"2022-12-07T09:15:41.758229+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.758234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.758237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"952bd57d-91d4-4fbe-807f-99961cf56a39\"}\n"} +{"Time":"2022-12-07T09:15:41.758353+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.758358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.758361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"326.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b79ba0d6-cd83-4be8-abd1-023152956707\"}\n"} +{"Time":"2022-12-07T09:15:41.764802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.764808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.76481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.764 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8d8290a7-38a7-43a3-ab2f-84cb3064e44a\"}\n"} +{"Time":"2022-12-07T09:15:41.779576+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.779584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.779588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.779653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.77971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:41.779758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_prompt_on_no_changes2701350071/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.779791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_prompt_on_no_changes2701350071/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.779816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_prompt_on_no_changes2701350071/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.779841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.779959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:41.779969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:41.779972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:41.779974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.779 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"369.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3a343de3-27d5-48bc-bd68-091f4ec95dde\"}\n"} +{"Time":"2022-12-07T09:15:41.779997+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.780002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.780006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.779 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06a25acf-1093-4cb4-bcdd-bc5e66e69361\"}\n"} +{"Time":"2022-12-07T09:15:41.780072+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.780075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.780078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.780 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"297742ab-b392-438b-b9fa-35d2006c792b\"}\n"} +{"Time":"2022-12-07T09:15:41.782783+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.78279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.782793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.782 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"363.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"36b6b81c-c616-42c6-a98d-8a0db8f33683\"}\n"} +{"Time":"2022-12-07T09:15:41.783305+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.783315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.783319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd75bc2f-327a-4034-8c0b-84fc9337bd2d\"}\n"} +{"Time":"2022-12-07T09:15:41.783465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.783471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.783475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96cc8897-cde3-4b36-8652-4b63d4355af0\"}\n"} +{"Time":"2022-12-07T09:15:41.789857+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.789864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.789868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.789 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"440.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c8ea03a-c136-4d46-bb9e-11a7e04abaac\"}\n"} +{"Time":"2022-12-07T09:15:41.802203+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.802209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.802212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.802 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:41.804226+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:41.804238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:41.804242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"448.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fe8306f7-24e2-4f03-9adb-026dffae7ecf\"}\n"} +{"Time":"2022-12-07T09:15:41.80458+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.804586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.804589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"516.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4716583-211a-4de5-ab9e-8be0a01b0cda\"}\n"} +{"Time":"2022-12-07T09:15:41.804708+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.80472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.804723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"475.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3cc3f1db-967d-4350-bae6-08a0f3e3b2ef\"}\n"} +{"Time":"2022-12-07T09:15:41.805002+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.805008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.805011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.804 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:41.805689+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.805697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.805701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.805 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:41.807827+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.807838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.807842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.807 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"29d3a595-a15a-415d-9e5b-76c4336e51ed\"}\n"} +{"Time":"2022-12-07T09:15:41.808405+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.808423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.808432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.808 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"171d55c1-a8ef-48e0-83e8-00ac7d9627b7\"}\n"} +{"Time":"2022-12-07T09:15:41.808515+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.80852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.808524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.808 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"499.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"09d3e616-8c07-4646-8e8d-fd0ab1160d61\"}\n"} +{"Time":"2022-12-07T09:15:41.814996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.815003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.815007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.814 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"464.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f4c2472c-9689-4602-9ca2-6926256e6ee4\"}\n"} +{"Time":"2022-12-07T09:15:41.826124+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:41.826133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:41.826137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.826 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:41.827874+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.827883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.827888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.827 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"12.5µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:41.829214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:41.829225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:41.829231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"515.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b34d7bfb-3f77-4d83-a806-b9e90bdf90e1\"}\n"} +{"Time":"2022-12-07T09:15:41.829655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.829665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.82967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"572.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"56496d9a-fbf7-40a0-bef4-539320abab26\"}\n"} +{"Time":"2022-12-07T09:15:41.829802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.829814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.82982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"569.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5ab77c0d-69aa-4dde-a6b3-c289d9d455b9\"}\n"} +{"Time":"2022-12-07T09:15:41.830118+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.83013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.830134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.830 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.830334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.830 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.83301+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.833021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.833025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.832 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"544.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0df8310e-d8c5-42d3-a214-b39c00db1618\"}\n"} +{"Time":"2022-12-07T09:15:41.833478+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.833486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.833491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.833 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"521.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1583e1f5-aecb-4dfa-939d-fd1da82f8a27\"}\n"} +{"Time":"2022-12-07T09:15:41.833712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.833722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.833727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.833 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"575.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8ef518e1-dd96-4215-aa89-137ccb4485d8\"}\n"} +{"Time":"2022-12-07T09:15:41.84011+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.840117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.840121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.840 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"547.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"baf017e8-1c26-4e01-8d97-39d57d531232\"}\n"} +{"Time":"2022-12-07T09:15:41.853425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.853435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.853439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:41.853595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:41.853707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:41.853784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.853835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.853882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.853933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:41.854069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:41.854354+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:41.854369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:41.854375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.854 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"683.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"00f01106-37a6-4f63-aab4-8502612fad17\"}\n"} +{"Time":"2022-12-07T09:15:41.854923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.854937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.854942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.854 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"759.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"75fedfb8-b873-4e32-978c-332801e11fce\"}\n"} +{"Time":"2022-12-07T09:15:41.854991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.854995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.854 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"702.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"51a9ff37-6af9-4816-bd2e-241a8902db2b\"}\n"} +{"Time":"2022-12-07T09:15:41.855223+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.855235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.85524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} +{"Time":"2022-12-07T09:15:41.855389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} +{"Time":"2022-12-07T09:15:41.855478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:41.855543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.85561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.855687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.855724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} +{"Time":"2022-12-07T09:15:41.855931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:41.856006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.856011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.856015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.855 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} +{"Time":"2022-12-07T09:15:41.856165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.856 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} +{"Time":"2022-12-07T09:15:41.856262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.856 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:41.856345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.856437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.85649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.856534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} +{"Time":"2022-12-07T09:15:41.856704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.856 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:41.858072+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.858084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.85809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.857 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"679.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"119526d6-47e3-482e-a46c-cc71eddb32f8\"}\n"} +{"Time":"2022-12-07T09:15:41.858687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.858699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.858705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.858 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"688.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"10029995-6938-4a5f-9a4f-0b363edc01a7\"}\n"} +{"Time":"2022-12-07T09:15:41.858888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.858898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.858905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.858 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"689µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57378c80-84d3-4b0c-95ca-16d8c93849f3\"}\n"} +{"Time":"2022-12-07T09:15:41.865237+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.865248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.865253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.865 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"740.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"77e8d5ee-e9ee-4369-8d83-f295921df584\"}\n"} +{"Time":"2022-12-07T09:15:41.869841+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:41.869852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:41.869858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.869 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:41.870007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.869 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:41.870105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.870 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:41.870185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.870256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.870322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.870378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/3166569989.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.870418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:41.870683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.870 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} +{"Time":"2022-12-07T09:15:41.878591+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:41.878642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:41.878669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.877 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:41.878676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.877 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:41.878681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.877 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:41.878734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.877 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run593224590/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.878741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.877 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run593224590/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.878747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.878 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run593224590/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:41.878752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.878 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:41.878757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.878 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:41.881032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.16325ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ac8cb053-e080-437d-8c1f-b29b4bd4de01\"}\n"} +{"Time":"2022-12-07T09:15:41.881062+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.881067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.881073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"926.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bb533f47-2d3f-4789-8de3-1be73296dfa2\"}\n"} +{"Time":"2022-12-07T09:15:41.881437+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.881448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.881463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.881474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.881545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.881565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.881636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.881686+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.881696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.881702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.082167ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"518a1834-a865-48ef-a141-133de8ec6edf\"}\n"} +{"Time":"2022-12-07T09:15:41.881726+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.881733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.881741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.881815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.88209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.882105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.882 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.883012+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.883027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.883034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.882 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"741.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d5864f2-e5b0-4a61-b66b-dca5ea960c8a\"}\n"} +{"Time":"2022-12-07T09:15:41.883733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.883749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.883754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.883 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"660.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3564c6b8-7ee5-4c20-b13c-e6383d67ac11\"}\n"} +{"Time":"2022-12-07T09:15:41.883763+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.883767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.883772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.883 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"678.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"52453c2f-31c8-4acc-8d57-811ec45a9d3d\"}\n"} +{"Time":"2022-12-07T09:15:41.890622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.890655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.890662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.890 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.013667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"95bb446d-d4f6-4f7a-9b94-19e765eea633\"}\n"} +{"Time":"2022-12-07T09:15:41.901859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.901889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.901897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.901 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"33.375µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:41.908886+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.908937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.908946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.904 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"949.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2fa72144-24e7-4d87-98fe-02ded17bc8fe\"}\n"} +{"Time":"2022-12-07T09:15:41.908954+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:41.908958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:41.908963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.905 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.819791ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"74c994bb-0a0a-44d5-bb8c-7e9f24acd807\"}\n"} +{"Time":"2022-12-07T09:15:41.90897+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.908973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.908978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.906 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:41.908983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.906 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.910554+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.910569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.910575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.909 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} +{"Time":"2022-12-07T09:15:41.910582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.909 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.91059+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.910619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.910624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.053542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"997b8965-09c5-478d-afc7-902f5b13827a\"}\n"} +{"Time":"2022-12-07T09:15:41.910632+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.910635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.910639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.909 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.910645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.909 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} +{"Time":"2022-12-07T09:15:41.91065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.910 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"20.458µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:41.910656+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.910661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.910669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.910 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} +{"Time":"2022-12-07T09:15:41.910675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.910 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.910682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.910 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.91069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.910 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} +{"Time":"2022-12-07T09:15:41.913195+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.913218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.913248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.911 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"866.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53f6f6c8-3752-4921-ac0b-92d7cee1d592\"}\n"} +{"Time":"2022-12-07T09:15:41.913306+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.913314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.913318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.911 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"870µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b460851-8f87-4efa-be5b-61f232040a0c\"}\n"} +{"Time":"2022-12-07T09:15:41.913324+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.913327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.913331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.912 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.012709ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"333d345f-d1cf-4709-a279-3d3a34566e39\"}\n"} +{"Time":"2022-12-07T09:15:41.91334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.913 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"24.25µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:41.914672+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.914682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.914687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.914 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"692.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd1219a0-2d91-4949-922c-7b8b4a1e22d1\"}\n"} +{"Time":"2022-12-07T09:15:41.921418+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:41.921444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:41.92145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.921 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:41.921683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.921 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.923389+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:41.923408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:41.923414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.923 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"19.041µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:41.931428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.929 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:41.931451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.929 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.931841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.51875ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"835391e4-4441-45fa-add6-cc6b1961e18b\"}\n"} +{"Time":"2022-12-07T09:15:41.932796+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.932811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.932935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"679.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"19d3247a-046b-4144-bc45-00aacc186373\"}\n"} +{"Time":"2022-12-07T09:15:41.932953+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.932958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.932962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"751.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11534f98-96a3-4ce0-87ed-8c6abe4f3939\"}\n"} +{"Time":"2022-12-07T09:15:41.932969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.932972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.932977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.932982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.932987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.932992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.932999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.933009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.933247+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.933252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.933254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44ef2b59-2330-405b-9bdd-d02447b3769f\"}\n"} +{"Time":"2022-12-07T09:15:41.933258+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.93326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.933262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"256.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"34aa8423-e497-4e60-92d1-e4ca83bcf4a8\"}\n"} +{"Time":"2022-12-07T09:15:41.933444+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.933473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.933477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6863a9a5-60de-44c3-bf47-39b89c9c68de\"}\n"} +{"Time":"2022-12-07T09:15:41.941207+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.941233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.941239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.941 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"936.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c570ba81-4a79-4cf2-a024-7479e426f06a\"}\n"} +{"Time":"2022-12-07T09:15:41.958775+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:41.958837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:41.958847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.956 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"834.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12faf469-131d-4bd9-98f2-4898abf0bf4c\"}\n"} +{"Time":"2022-12-07T09:15:41.958859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.958867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.958873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.956 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"902.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9e1b5c3d-81fd-465e-833d-ddacd2e5f4ba\"}\n"} +{"Time":"2022-12-07T09:15:41.958883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.958888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.958895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.957 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"948.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cb85e61b-d441-4b68-ae3e-bb204c2062f8\"}\n"} +{"Time":"2022-12-07T09:15:41.958909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.957 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:41.958918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.957 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.958926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.957 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.958934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.957 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.958942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.958 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.958949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.958 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:41.958957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.958 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:41.958964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.958 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.958974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.958 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:41.963864+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.963892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.963899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.960 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.0415ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"780ac30d-f9e2-496d-b35b-0d6c4f1a9cab\"}\n"} +{"Time":"2022-12-07T09:15:41.963907+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.96391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.963914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.38375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b017c9cc-9b46-491b-871a-4ef6320e6aae\"}\n"} +{"Time":"2022-12-07T09:15:41.96392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.963924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.963928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.095958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"12d7aaa0-da39-4fda-9779-9ba555f91091\"}\n"} +{"Time":"2022-12-07T09:15:41.963934+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.963937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.963941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.961 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} +{"Time":"2022-12-07T09:15:41.963946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.963951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.963956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.963961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.963969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.963974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.963978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} +{"Time":"2022-12-07T09:15:41.963999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} +{"Time":"2022-12-07T09:15:41.965098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} +{"Time":"2022-12-07T09:15:41.965108+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.965112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.965116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} +{"Time":"2022-12-07T09:15:41.965122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.965127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.965132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.965137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.965142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.965149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.965154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} +{"Time":"2022-12-07T09:15:41.965158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} +{"Time":"2022-12-07T09:15:41.965163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} +{"Time":"2022-12-07T09:15:41.965345+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.965353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.96536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.965 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"891.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e4287ccd-d319-4f75-958b-65f64038602a\"}\n"} +{"Time":"2022-12-07T09:15:41.97235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:41.972381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:41.972388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:41.972397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.972402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.972635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.972642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.972647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:41.972653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:41.972657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:41.972663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:41.973124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:41.973133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:41.973144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:41.97315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.973155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:41.973159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:41.973164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.973 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:41.973353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.973 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:41.973443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.973: cmd: stdout: \"\\x1b[1A\\r✔ Queued [837ms]\"\n"} +{"Time":"2022-12-07T09:15:41.973453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.973: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:41.973458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.973: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} +{"Time":"2022-12-07T09:15:41.973464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.973: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:41.973469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.973: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [51ms]\"\n"} +{"Time":"2022-12-07T09:15:41.973473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.973: cmd: stdout: \"⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:41.983838+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:41.983868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:41.983874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.980 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:41.98388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.980 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.983886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.980 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.983892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.980 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.983902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.980 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:41.983908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.980 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:41.983913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.980 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:41.983917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.543583ms\", \"status_code\": 200, \"latency_ms\": 3, \"request_id\": \"14bc61e9-d0e5-4ed1-a3ce-6b4f27fc6971\"}\n"} +{"Time":"2022-12-07T09:15:41.983923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.982 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:41.983929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.982 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:41.983935+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:41.983938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:41.983942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"732.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f67edc74-b5c3-4e93-8cdd-7a118f0a7e0b\"}\n"} +{"Time":"2022-12-07T09:15:41.988479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:41.988501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:41.988505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.987 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.452958ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"861c8404-1d1c-46bd-bc3e-fe11c5307dbf\"}\n"} +{"Time":"2022-12-07T09:15:41.988512+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:41.988516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:41.98852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.988 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"986.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd3c9684-2617-4542-ab86-6ca133fe9d81\"}\n"} +{"Time":"2022-12-07T09:15:41.988525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.988527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.988532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.988 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.988536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.988 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.98854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.988 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.98855+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:41.988554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:41.988557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.988 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.410625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1741c193-0abc-49cf-8541-4b18f2632a89\"}\n"} +{"Time":"2022-12-07T09:15:41.988562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.988568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.988573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.988 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} +{"Time":"2022-12-07T09:15:41.988743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.988 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"386ca763-0174-477a-bd79-835c8f9519fe\"}\n"} +{"Time":"2022-12-07T09:15:41.989014+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:41.989023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:41.989027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.988 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ccf58725-a8ea-472a-9b94-724b4c35f3a4\"}\n"} +{"Time":"2022-12-07T09:15:41.989217+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:41.989229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:41.989232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.989 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/organizations/25ab81a8-d905-42b4-9125-90b61229bd9b/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7ed2ec71-f055-44a1-8516-d51f0df55a23\"}\n"} +{"Time":"2022-12-07T09:15:41.99+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.989 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/organizations/25ab81a8-d905-42b4-9125-90b61229bd9b/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"603.416µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5e27b759-7c7d-4c34-82bb-eb3f85d00705\"}\n"} +{"Time":"2022-12-07T09:15:41.990086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" configssh_test.go:545: waiting for workspace build job ea095fba-000b-4854-b219-eb94c97837f9\n"} +{"Time":"2022-12-07T09:15:42.00609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.006113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.00612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.005 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"783.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"60b5d7c9-55f1-4dfc-8f2b-e04b249c581a\"}\n"} +{"Time":"2022-12-07T09:15:42.006128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.006132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.006136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.005 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"783.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9fdec6e4-5bc8-406f-bee9-ca0edcf599a9\"}\n"} +{"Time":"2022-12-07T09:15:42.006551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.006558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.006562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.006 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"663.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bef22a83-5747-416f-9032-792b6c0eb823\"}\n"} +{"Time":"2022-12-07T09:15:42.00834+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.00837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.008377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.007 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"702.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2eb1103f-7020-4a5b-b37f-135f2f3a1f70\"}\n"} +{"Time":"2022-12-07T09:15:42.008934+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.008942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.008988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.008 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"717.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bea24d76-3ad1-47a8-9599-c5589d3bec85\"}\n"} +{"Time":"2022-12-07T09:15:42.008996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.008999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.009003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.008 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:42.009009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.008 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.009016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.008 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.009022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.008 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:42.009027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.008 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:42.009122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.009 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:42.014702+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.014749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.014755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.014 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} +{"Time":"2022-12-07T09:15:42.01476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.014 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} +{"Time":"2022-12-07T09:15:42.014769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.014 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} +{"Time":"2022-12-07T09:15:42.014775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.014 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} +{"Time":"2022-12-07T09:15:42.015273+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.015279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.015284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.014 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} +{"Time":"2022-12-07T09:15:42.015289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.014 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} +{"Time":"2022-12-07T09:15:42.015293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.014 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} +{"Time":"2022-12-07T09:15:42.015299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.015 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} +{"Time":"2022-12-07T09:15:42.01545+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.015457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.015461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.015 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"777.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96fc6648-8d79-4418-860e-35c57627835d\"}\n"} +{"Time":"2022-12-07T09:15:42.016409+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.016418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.016423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.016 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"725.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ee0797a0-086f-4ae8-95a5-a30751ed0324\"}\n"} +{"Time":"2022-12-07T09:15:42.024269+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:42.02429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:42.024296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.023 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:42.024302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.024307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.024315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:42.024321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:42.024845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:42.024852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:42.024857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:42.024862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:42.024869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:42.025061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:42.02507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:42.025222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.025: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:42.025231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.025: cmd: stdout: \"✔ Detecting persistent resources [0ms]\"\n"} +{"Time":"2022-12-07T09:15:42.025235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.025: cmd: stdout: \"⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:42.025239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.025: cmd: stdout: \"\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\"\n"} +{"Time":"2022-12-07T09:15:42.025243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.025: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:42.030159+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.030179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.030186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"880.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a8bf2285-bb28-4b15-8d36-0a24f21b9bd1\"}\n"} +{"Time":"2022-12-07T09:15:42.030209+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.030213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.030217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"927.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9bc4aba5-48c9-40c8-a910-6ddf5d459edc\"}\n"} +{"Time":"2022-12-07T09:15:42.031+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.031025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.031032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.030 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"658.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b160999-d4aa-415c-8ba4-92b07ea13b96\"}\n"} +{"Time":"2022-12-07T09:15:42.036321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.036342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.036348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.033 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"642.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4dc7d83d-6d8f-4bce-bfb6-50eec64e206f\"}\n"} +{"Time":"2022-12-07T09:15:42.036356+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.036359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.036364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.805709ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"7e0f956b-854d-4364-813b-2b26c5cdbf19\"}\n"} +{"Time":"2022-12-07T09:15:42.03637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/organizations/11827f28-bbc9-4a4a-98a5-f2cd06170eb5/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"706.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e9ee618c-7a23-48b7-b78b-7f4b51c0f832\"}\n"} +{"Time":"2022-12-07T09:15:42.036397+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.0364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.036404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/organizations/de28ba55-34c0-4ec1-87b4-9349043825b9/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"825.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3be3176d-65d3-46e2-bef5-a2ec2a9cfb79\"}\n"} +{"Time":"2022-12-07T09:15:42.038831+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.03885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.038856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/organizations/11827f28-bbc9-4a4a-98a5-f2cd06170eb5/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.463667ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"e8e5b399-ff36-44ab-ada8-eee113dc2a66\"}\n"} +{"Time":"2022-12-07T09:15:42.038863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.038867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.038871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/organizations/de28ba55-34c0-4ec1-87b4-9349043825b9/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.615208ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"a8d76eac-0a8c-479d-a903-6915100f6e47\"}\n"} +{"Time":"2022-12-07T09:15:42.038877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" configssh_test.go:545: waiting for workspace build job bc2e975a-e24c-447a-a647-946c68dbe98f\n"} +{"Time":"2022-12-07T09:15:42.038881+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.038884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.038888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:545: waiting for workspace build job 9e9e30fa-f760-4987-9e3c-089152338222\n"} +{"Time":"2022-12-07T09:15:42.038893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.038896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.038904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:42.038909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.038914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.038922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:42.038926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:42.039476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:42.040498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.040511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.040516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.040 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.088333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"917e8dcc-e075-4d38-9038-6fa3d43124f6\"}\n"} +{"Time":"2022-12-07T09:15:42.04195+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.041962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.041966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.041 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.0295ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bbaf3a07-d20d-4c6f-83dc-72be842637ce\"}\n"} +{"Time":"2022-12-07T09:15:42.042042+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:42.042045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:42.042048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.041 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.539459ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c8541c96-88bd-4aa2-863e-7d317ece606c\"}\n"} +{"Time":"2022-12-07T09:15:42.056214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.056271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.056278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.055 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"822.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a64ff1f-88ec-4460-91c5-1ecfed28bb21\"}\n"} +{"Time":"2022-12-07T09:15:42.056291+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.056295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.056299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.055 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"790.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bb937cc9-2e37-4a17-b4e5-5d057c2a5067\"}\n"} +{"Time":"2022-12-07T09:15:42.056573+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.056579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.056605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.056 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"653.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33ec0470-011e-4165-8e32-ff538b78f3f4\"}\n"} +{"Time":"2022-12-07T09:15:42.059878+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.059899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.059904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.059 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:42.059911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.059 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:42.059918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.059 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:42.060012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.059 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} +{"Time":"2022-12-07T09:15:42.06716+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.06718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.067186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.066 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.366333ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"67c5f2d8-0455-46d0-a7ce-b9671274f264\"}\n"} +{"Time":"2022-12-07T09:15:42.067194+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.067198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.067202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.066 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.595792ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"28a24108-78b6-4151-9a69-7244a76ba29d\"}\n"} +{"Time":"2022-12-07T09:15:42.068246+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.068258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.068264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.067 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"716.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f872f08-ef90-457c-95e5-8499847606d7\"}\n"} +{"Time":"2022-12-07T09:15:42.068272+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.068276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.068281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.068 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"709.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ec66a182-20f5-48a6-9bc3-39984709434d\"}\n"} +{"Time":"2022-12-07T09:15:42.07501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:42.07503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:42.075036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.074 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:42.075044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.074 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:42.07536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.075 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:42.07537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.075 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:42.075415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.075 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:42.075422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.075 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} +{"Time":"2022-12-07T09:15:42.075693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.075 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.0388625s\", \"status_code\": 101, \"latency_ms\": 1038, \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\"}\n"} +{"Time":"2022-12-07T09:15:42.076688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.076 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"822µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61182dae-999a-46c1-895f-b11d1084b3e5\"}\n"} +{"Time":"2022-12-07T09:15:42.076889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.076: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [102ms]\"\n"} +{"Time":"2022-12-07T09:15:42.077798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.077 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"700.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"635122fe-a65b-4555-8101-1cc88b681c36\"}\n"} +{"Time":"2022-12-07T09:15:42.079419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.078 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"824.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"980f540f-e7c6-49b0-9d3b-af15f64ea1d5\"}\n"} +{"Time":"2022-12-07T09:15:42.079437+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.079442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.079447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.079 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"672.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"88847ca7-cad1-42ae-990f-1307a8bac8f1\"}\n"} +{"Time":"2022-12-07T09:15:42.080728+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:42.08074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:42.080745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.080 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.050833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"de6a3f6d-af24-4677-888e-2893cb42ee65\"}\n"} +{"Time":"2022-12-07T09:15:42.080752+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.080756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.08076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.080 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"629.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ed67d85-dc36-4334-918b-4cbf525c919b\"}\n"} +{"Time":"2022-12-07T09:15:42.086032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:42.08605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:42.086056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.081 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"901.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1105ceb-7c59-40cb-82fd-358368839636\"}\n"} +{"Time":"2022-12-07T09:15:42.086077+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.086082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.086086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"879.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"71801a96-52d5-401c-a61e-66060f1371a8\"}\n"} +{"Time":"2022-12-07T09:15:42.086106+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.086109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.086113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/organizations/bdbdeeda-6706-467e-91d5-09aaf123d35e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"721.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"be065230-4249-492b-8e37-de0e3de863fa\"}\n"} +{"Time":"2022-12-07T09:15:42.086119+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:42.086122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:42.086127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.084 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/1d842e1c-0674-4fdb-a3ec-f71067874190\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"688.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3bf12128-d9e9-4ac8-9ce9-d1effb4512fc\"}\n"} +{"Time":"2022-12-07T09:15:42.086133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.085 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"798.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"217325d7-307c-486e-a434-bfd206e20acd\"}\n"} +{"Time":"2022-12-07T09:15:42.086139+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.086143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.086147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.085 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/organizations/bdbdeeda-6706-467e-91d5-09aaf123d35e/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.642959ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"ecd53a16-3013-441a-946d-655e5bd4c5e5\"}\n"} +{"Time":"2022-12-07T09:15:42.086153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" configssh_test.go:545: waiting for workspace build job 8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\n"} +{"Time":"2022-12-07T09:15:42.08638+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:42.086387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:42.086395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.086: cmd: stdout: \"┌──────────┐\"\n"} +{"Time":"2022-12-07T09:15:42.0864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.086: cmd: stdout: \"│ Template │\"\n"} +{"Time":"2022-12-07T09:15:42.086404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.086: cmd: stdout: \"│ Preview │\"\n"} +{"Time":"2022-12-07T09:15:42.086408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.086: cmd: stdout: \"├──────────┤\"\n"} +{"Time":"2022-12-07T09:15:42.086412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.086: cmd: stdout: \"│ RESOURCE │\"\n"} +{"Time":"2022-12-07T09:15:42.086416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.086: cmd: stdout: \"├──────────┤\"\n"} +{"Time":"2022-12-07T09:15:42.086419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.086: cmd: stdout: \"└──────────┘\"\n"} +{"Time":"2022-12-07T09:15:42.087165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.087 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templates/a745dfb2-e349-43c4-8ee1-7346defa546c/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"755.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d64db719-f1e3-4401-8295-ab59f76834ea\"}\n"} +{"Time":"2022-12-07T09:15:42.087419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.087: cmd: stdout: \"Updated version at Dec 7 09:15:42!\"\n"} +{"Time":"2022-12-07T09:15:42.089262+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.089276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.089282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.089 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:42.089292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.089 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:42.089352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.089 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:42.089459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.089 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} +{"Time":"2022-12-07T09:15:42.089474+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.089477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.08948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.089 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"793.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ab55eba6-934f-4912-aa7a-50f16c93321d\"}\n"} +{"Time":"2022-12-07T09:15:42.089509+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.089515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.089525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.089 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"782.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b47011bd-f042-4fdb-a5c0-1137f160de27\"}\n"} +{"Time":"2022-12-07T09:15:42.089742+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.08975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.089753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.089 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"866.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c59783c-831a-4c0a-b9e9-a60cd0c5a6b5\"}\n"} +{"Time":"2022-12-07T09:15:42.089853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:42.089857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:42.089861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.089 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templates/a745dfb2-e349-43c4-8ee1-7346defa546c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.186959ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0df41ba7-fcbb-497b-9acb-3a6f7d8c80be\"}\n"} +{"Time":"2022-12-07T09:15:42.090536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.090 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"424.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"efde397b-b634-43c7-a503-367e4d838a27\"}\n"} +{"Time":"2022-12-07T09:15:42.090712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.090722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.090726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.090 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"438.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1fd23d4d-8489-409d-8bc2-67b1e815bf6a\"}\n"} +{"Time":"2022-12-07T09:15:42.091132+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:42.091138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:42.091141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.091 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a65c6f85-b81f-4eea-81fe-0e670990526d\"}\n"} +{"Time":"2022-12-07T09:15:42.094784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"28.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"3f8708c9-db34-4dfb-8cd1-2a0de5e832af\"}\n"} +{"Time":"2022-12-07T09:15:42.095036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"453b2601-10cf-4143-bffd-61946f0de320\"}\n"} +{"Time":"2022-12-07T09:15:42.095866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.095 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"537.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f04e414a-8424-455e-8ee3-beddc1a8698f\"}\n"} +{"Time":"2022-12-07T09:15:42.096653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.096 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templates/intelligent-euler0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"465.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e8ef42d-fd98-43fd-a62a-f50386e45daa\"}\n"} +{"Time":"2022-12-07T09:15:42.097745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.097 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ebe7470e-b181-44d7-a263-50b778112ba4\"}\n"} +{"Time":"2022-12-07T09:15:42.098937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.098 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"910.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6d1a1238-9175-40a0-9530-725cf9eb80b2\"}\n"} +{"Time":"2022-12-07T09:15:42.099692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/909b64ca-55ab-4c74-9114-5d967924ba50\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"435.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2eda5fa1-840f-48d0-b469-b2cb35ccb42d\"}\n"} +{"Time":"2022-12-07T09:15:42.11202+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.112038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.112045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.003334ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"fa10020e-9e3e-42e2-bd99-c62322cccf65\"}\n"} +{"Time":"2022-12-07T09:15:42.112062+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.112065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.112067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"695.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d8a11cf-dc0b-472d-b160-4fb940e5e2db\"}\n"} +{"Time":"2022-12-07T09:15:42.112091+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.112093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.112096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"624.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2fcd7807-2ae4-4c04-8b4d-ef0182f8552a\"}\n"} +{"Time":"2022-12-07T09:15:42.112733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.112746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.112749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/organizations/bd9d78a1-d152-4025-b8b2-820c75c7b030/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ca862e4f-48ea-4566-8e1a-e5d1609935a5\"}\n"} +{"Time":"2022-12-07T09:15:42.113963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.113 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/organizations/bd9d78a1-d152-4025-b8b2-820c75c7b030/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"957.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"46d3f20a-4970-47be-894f-9470425e8b09\"}\n"} +{"Time":"2022-12-07T09:15:42.114073+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.114084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.114088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"519.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"14eee9a3-43a6-42aa-b4c6-ea1cacc7c978\"}\n"} +{"Time":"2022-12-07T09:15:42.114095+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.1141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.114102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" configssh_test.go:545: waiting for workspace build job 11892955-80bc-4026-93ab-8563419ccfb2\n"} +{"Time":"2022-12-07T09:15:42.114221+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.114229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.114232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"567.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e7f90e8-b9a1-4d45-9be7-f04e9aa21874\"}\n"} +{"Time":"2022-12-07T09:15:42.114498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.114506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.11451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"502.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d59fb6bf-0570-42bd-926f-d50ad01f7f09\"}\n"} +{"Time":"2022-12-07T09:15:42.11575+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.115757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.115761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.115 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"466.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a007795-8650-4db6-a490-1ef377e64e00\"}\n"} +{"Time":"2022-12-07T09:15:42.120833+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.120842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.120845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.120 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.120953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.120 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.12103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.120 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:42.121068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.121 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_when_using_--yes2569395571/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.121103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.121 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_when_using_--yes2569395571/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.121139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.121 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_when_using_--yes2569395571/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.121167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.121 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"workspace_name\": \"stoic-hertz3\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:42.121268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.121 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.121302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.121 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.129955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.129 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"522.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9f74175c-490c-461a-8ba7-90a1e029196e\"}\n"} +{"Time":"2022-12-07T09:15:42.137629+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.137638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.137642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.137 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"599.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"85c96fe4-6826-4c72-9600-2ac7c6b44c52\"}\n"} +{"Time":"2022-12-07T09:15:42.13915+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.13916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.139164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12513651-3083-4aba-9de7-6b5882055483\"}\n"} +{"Time":"2022-12-07T09:15:42.13917+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.139173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.139178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"522.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5303561c-c291-45e4-a25d-c3ea75680af7\"}\n"} +{"Time":"2022-12-07T09:15:42.139437+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.139448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.139452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"656.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0be7a1ed-af53-4a96-a1df-63d4b64ae013\"}\n"} +{"Time":"2022-12-07T09:15:42.139731+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.139739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.139743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.139845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.139 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.139856+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.139859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.139864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"577.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ba920e7-af3e-4a23-8825-15f89ae1636c\"}\n"} +{"Time":"2022-12-07T09:15:42.1399+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.139905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.139909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.139 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:42.139944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.140013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.140022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.14005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.140 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"workspace_name\": \"keen-antonelli3\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:42.140174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.140 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.140186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.140 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.140875+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.140882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.140885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.140 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"602.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7c94afd6-fafc-47a4-a7d4-b54d45e43b6a\"}\n"} +{"Time":"2022-12-07T09:15:42.15563+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.155639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.155643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.155 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"536.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9e0c89c1-8981-4c70-88e6-5a41753254f9\"}\n"} +{"Time":"2022-12-07T09:15:42.162541+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.162556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.162561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"591.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da91c2d2-80d5-4441-b2f4-0fc5490b8b10\"}\n"} +{"Time":"2022-12-07T09:15:42.1643+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.164315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.164326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.164 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"570.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"86e57331-d312-4301-bbdc-327546415234\"}\n"} +{"Time":"2022-12-07T09:15:42.164398+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.164405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.16441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.164 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"588.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d8e0790-0de7-4dc1-a90a-8e8035d85011\"}\n"} +{"Time":"2022-12-07T09:15:42.164427+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.164431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.164436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.164 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"583.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e7ec62af-e7c3-4fab-9f12-55f9b1c83753\"}\n"} +{"Time":"2022-12-07T09:15:42.165054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.165064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.165068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.164 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"719.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"63239428-304d-4632-b678-9a8823ac18c2\"}\n"} +{"Time":"2022-12-07T09:15:42.165872+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.16588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.165884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.165 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"561.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"934f2337-848b-49b5-a51a-20044146fb94\"}\n"} +{"Time":"2022-12-07T09:15:42.172174+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.172183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.172188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.172 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.172212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.172 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.172238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.172 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.172283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.172 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.181258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.181 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"955.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a96ff8b1-7722-4bef-8d92-7d87136ee4e0\"}\n"} +{"Time":"2022-12-07T09:15:42.188028+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.188073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.188081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.187 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.228792ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"574f96ef-29cc-4b35-8db5-e51c5f11fd14\"}\n"} +{"Time":"2022-12-07T09:15:42.189901+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.189916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.189923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.189 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"915.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f4e158a-7e3c-46a1-91d8-5eff42c5e9cc\"}\n"} +{"Time":"2022-12-07T09:15:42.189932+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.189936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.189942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.189 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"806.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ca01e0e5-9d10-48cb-9410-1a49b4bdbe4a\"}\n"} +{"Time":"2022-12-07T09:15:42.190617+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.190633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.190639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.190 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"750.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b109694e-624a-4f9b-9071-d11aa2fabe7f\"}\n"} +{"Time":"2022-12-07T09:15:42.190649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.190653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.190658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.190 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.190752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.190 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.190773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.190 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.190784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.190 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.191105+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.191116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.191121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"887.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"45f3de2c-121f-4825-ae47-05fbc4d3abf0\"}\n"} +{"Time":"2022-12-07T09:15:42.191704+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.191716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.191721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"774.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bbde455c-5f01-4c10-928c-f3ac4558b1ee\"}\n"} +{"Time":"2022-12-07T09:15:42.206871+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.206904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.206911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.206 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.037042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b543b226-b0a7-4b9c-993f-a83a707571e6\"}\n"} +{"Time":"2022-12-07T09:15:42.212989+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.213011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.213018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.212 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"978.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8a2e44ed-2739-4896-a7f8-83de5f03c584\"}\n"} +{"Time":"2022-12-07T09:15:42.214724+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.214755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.214763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.214 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"721.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6fdfc0d0-6dc2-4192-8e92-e9e91ef3efb9\"}\n"} +{"Time":"2022-12-07T09:15:42.214773+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.214777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.214782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.214 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"872.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"52ab96b5-aaa5-4e50-b0bc-6fc00c802742\"}\n"} +{"Time":"2022-12-07T09:15:42.223655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.223677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.223684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.215 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"823.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"09faa431-114e-488b-891a-347370ad1ae5\"}\n"} +{"Time":"2022-12-07T09:15:42.223693+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.223698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.223726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.219 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.325459ms\", \"status_code\": 200, \"latency_ms\": 3, \"request_id\": \"813da2ba-59fd-47ae-bc15-274d287e5ca2\"}\n"} +{"Time":"2022-12-07T09:15:42.223741+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.223745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.22375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.219 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.223756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.220 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.223763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.220 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:42.223769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.220 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.223775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.220 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.224019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.220 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.224059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.220 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"workspace_name\": \"ecstatic-merkle8\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:42.224066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.220 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.224072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.222 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.224078+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.224083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.224087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.216 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.467041ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d2832fc4-331f-4691-b897-5e6682aca023\"}\n"} +{"Time":"2022-12-07T09:15:42.224095+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.224099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.224103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.222 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.224109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.223 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.224115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.223 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.229747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.229 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"552.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fc8d62c1-b855-45f9-b3bd-790a50e646dc\"}\n"} +{"Time":"2022-12-07T09:15:42.238111+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.238131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.238137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.238 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"858.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"48423a28-5067-4771-bbed-7541372f282b\"}\n"} +{"Time":"2022-12-07T09:15:42.239447+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.239459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.239465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.239 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"770.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bba01f20-04c3-48e9-b3d4-ef7d152f49f5\"}\n"} +{"Time":"2022-12-07T09:15:42.239618+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.239639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.239647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.239 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"759.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b536ec57-caed-48a3-be8a-5c47b842c6d8\"}\n"} +{"Time":"2022-12-07T09:15:42.239658+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.23967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.23968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.239 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"789.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b1e08f8-ce49-4927-8605-01b9da13400d\"}\n"} +{"Time":"2022-12-07T09:15:42.240217+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.240233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.240238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.240 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"735µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bd4125eb-b1fe-4188-be3b-6392ae0ac1df\"}\n"} +{"Time":"2022-12-07T09:15:42.241118+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.241134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.24114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.241 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.241191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.241208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.241214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.241 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"814.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"789a5303-1bbf-40c2-a1d0-2d81d53dd4c2\"}\n"} +{"Time":"2022-12-07T09:15:42.241479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.241492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.241507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.241 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.241516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.241 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.259991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.260045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.260055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"4.040458ms\", \"status_code\": 200, \"latency_ms\": 4, \"request_id\": \"1a43f0df-ba5e-458a-9cd4-fd4086daf328\"}\n"} +{"Time":"2022-12-07T09:15:42.262883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.262917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.262925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.239958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"71f5c9b9-d51b-4e9b-809b-a3097408af6a\"}\n"} +{"Time":"2022-12-07T09:15:42.266186+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.266266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.266273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.264 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"971.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0959c361-844f-470d-8f77-c388b800fb33\"}\n"} +{"Time":"2022-12-07T09:15:42.266283+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.266288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.266292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.265 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.464042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"5af7821b-db3e-49b6-80f4-ddf0a3552dd6\"}\n"} +{"Time":"2022-12-07T09:15:42.266299+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.266303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.266307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.265 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"856.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fae61029-79bc-44fd-b1f3-bc917f39f7f8\"}\n"} +{"Time":"2022-12-07T09:15:42.266669+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.266677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.266684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.266 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"891.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f9ad4e2d-3aaa-4a7e-9165-19185c129469\"}\n"} +{"Time":"2022-12-07T09:15:42.267926+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.267938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.267945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"876.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"131a8623-5929-4bc5-a031-2c28cdad59ac\"}\n"} +{"Time":"2022-12-07T09:15:42.273439+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.273458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.273465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.273627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.273637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.273642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.273856+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.273865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.273871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.273963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.273971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.274051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.274119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.274 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.281187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.280 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.173125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"65dd698f-2097-4a4c-bb54-1aa9806d1899\"}\n"} +{"Time":"2022-12-07T09:15:42.288527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.288552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.288558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.288 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.512958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2bd6794c-5861-4621-9b8e-3a36f96ac6fe\"}\n"} +{"Time":"2022-12-07T09:15:42.292955+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.292985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.292993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.134958ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"2445231f-e34a-4b17-8259-303266131daf\"}\n"} +{"Time":"2022-12-07T09:15:42.29305+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.293056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.29306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.523375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3119012d-681f-484a-9460-b016b81e7aeb\"}\n"} +{"Time":"2022-12-07T09:15:42.293067+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.293073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.293077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.293084+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.293089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.293093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.2931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.293108+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.293113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.293122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.291 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.293211+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.293215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.29322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.293226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.293232+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.293236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.293241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.291 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:42.293257+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.29326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.293265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.293271+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.293274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.293278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run593224590/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.293287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run593224590/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.293293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run593224590/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.293298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"workspace_name\": \"gallant-cray8\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:42.293304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.293308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.292 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.293318+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.293321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.293325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.293 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"949.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f544a983-87ed-4740-b45a-dc3d688ca577\"}\n"} +{"Time":"2022-12-07T09:15:42.295635+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.29609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.296119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.294 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.26975ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3252f74d-7e49-4c16-936c-4285ae295331\"}\n"} +{"Time":"2022-12-07T09:15:42.296128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.296132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.296137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.295 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.445083ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"71b6abe2-3494-4b71-a612-00983b4c97ca\"}\n"} +{"Time":"2022-12-07T09:15:42.306779+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.306814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.306821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.306 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.583833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"5e13193f-605b-4dc0-95ab-06c522e5b826\"}\n"} +{"Time":"2022-12-07T09:15:42.318774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.318813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.31882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.590167ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"161991d3-22e0-4413-a033-e8d8e3852aa2\"}\n"} +{"Time":"2022-12-07T09:15:42.31883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.318834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.31884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.315 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.226375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"cbb63f2f-e2e2-4a8c-87e4-d5b431beac10\"}\n"} +{"Time":"2022-12-07T09:15:42.318846+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.318894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.318899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.315 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"828.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0b3e6b75-66d7-401f-a2cd-f74511d02026\"}\n"} +{"Time":"2022-12-07T09:15:42.318906+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.318913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.31892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.316 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"881.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c2faa829-72d8-492f-924d-291e5d17e3bb\"}\n"} +{"Time":"2022-12-07T09:15:42.318926+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.318931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.318942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.317 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"950.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"614daba0-10ad-4698-8cbf-4f80c00a9000\"}\n"} +{"Time":"2022-12-07T09:15:42.319243+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.319253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.319258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.140542ms\", \"status_code\": 200, \"latency_ms\": 3, \"request_id\": \"9dbd0fce-df14-498e-8015-3f830f987e6a\"}\n"} +{"Time":"2022-12-07T09:15:42.325434+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.325469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.325476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.324 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.325484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.324 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.325491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.324 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.325497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.324 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.32551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.324 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.325517+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.32552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.325525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.325 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.325531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.325 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.325538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.325 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.332178+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.332223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.332232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.332 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.372667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"53a9988f-1dcd-4c60-9bc2-d25694b5f2c4\"}\n"} +{"Time":"2022-12-07T09:15:42.339672+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.33971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.339721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.339 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.284667ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"de3deff2-4e84-45b2-9873-c76bd253a924\"}\n"} +{"Time":"2022-12-07T09:15:42.34789+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.347932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.347943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.341 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.378042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f79073ba-c421-44b5-bcb8-a795e23bff59\"}\n"} +{"Time":"2022-12-07T09:15:42.348002+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.348011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.348018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.344 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.412916ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"f5dec680-e2f0-4ebe-a968-19b3d1e80edc\"}\n"} +{"Time":"2022-12-07T09:15:42.348034+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.348042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.348048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.344 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"4.497166ms\", \"status_code\": 200, \"latency_ms\": 4, \"request_id\": \"f5bd3ddc-872d-427d-8cc4-d3a4c6cae537\"}\n"} +{"Time":"2022-12-07T09:15:42.348085+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.348092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.348098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.345 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.348109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.345 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.348158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.345 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.348182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.345 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.348194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.345 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.348205+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.348212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.348221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.347 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.38475ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ccedfefd-51cd-4f0c-bf5b-9b8a9b7557db\"}\n"} +{"Time":"2022-12-07T09:15:42.348234+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.348243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.348253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.347 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.221167ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"27d3a87d-6708-434f-a677-8045126c19d8\"}\n"} +{"Time":"2022-12-07T09:15:42.348264+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.348268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.348282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.347 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.348289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.347 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.348302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.347 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.348309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.347 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.355654+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.355667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.355673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.355 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"718.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"206cb4b2-f6ab-4505-ba65-44cde2d672a0\"}\n"} +{"Time":"2022-12-07T09:15:42.35991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.35995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.359958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.358 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.359966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.358 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.359973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.358 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:42.35998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.358 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.359988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.358 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.359994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.358 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.360001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.359 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"workspace_name\": \"eager-dhawan0\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:42.360007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.359 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.360014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.359 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.367738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.367773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.367782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.365 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.784958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"8109ed84-0fa7-4117-934e-e7d39c483be1\"}\n"} +{"Time":"2022-12-07T09:15:42.367839+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.367845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.367851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.367 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.051667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f6901c09-0165-4aa1-9181-9e0050cbcd9e\"}\n"} +{"Time":"2022-12-07T09:15:42.367863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.367868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.367873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.367 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.072333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"16727ae4-b205-47a8-97d2-11ff3005b1bc\"}\n"} +{"Time":"2022-12-07T09:15:42.369398+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.369416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.369423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.369 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.069ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"cf92286a-357e-4ebf-bbea-fb36646744ab\"}\n"} +{"Time":"2022-12-07T09:15:42.369512+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.369526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.369534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.369 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"943.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"64bd8a8a-bd45-439e-ac9d-0a8fdc0aa66b\"}\n"} +{"Time":"2022-12-07T09:15:42.36965+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.369662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.369674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.369 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"951.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e496f7f1-d973-4982-b9c3-813d591b4bbc\"}\n"} +{"Time":"2022-12-07T09:15:42.376305+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.376343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.37635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.375 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.376365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.375 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.376371+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.376374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.376379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.375 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.376386+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.376389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.376393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.375 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} +{"Time":"2022-12-07T09:15:42.3764+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.376404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.376409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.375 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.376416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.376 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.376422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.376 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.376428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.376 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.381174+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.381222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.381232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.380 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.293708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a16a61ef-0170-4138-bdc5-bfbecbe08c20\"}\n"} +{"Time":"2022-12-07T09:15:42.383188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_when_using_--yes2569395571/003/.ssh/config\n"} +{"Time":"2022-12-07T09:15:42.383664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" configssh_test.go:551: Wrote 314\n"} +{"Time":"2022-12-07T09:15:42.387581+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.387596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.3876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.387 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"765.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3f9c203-2608-47ac-ba31-af392a19d914\"}\n"} +{"Time":"2022-12-07T09:15:42.389645+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.389663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.389669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.389 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"751.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"80dfa171-f47a-42d0-91a7-5050a380c838\"}\n"} +{"Time":"2022-12-07T09:15:42.389678+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.389683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.38969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.389 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"742.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"627378d3-fa96-4c18-8957-771b62d406dc\"}\n"} +{"Time":"2022-12-07T09:15:42.389698+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.389714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.38979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.389 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"47.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"5f44f9fc-f473-4cf3-9da5-4f42f1fc8922\"}\n"} +{"Time":"2022-12-07T09:15:42.389802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.38981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.389815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.389 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"793.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5e60cb1b-65cf-4521-815e-83fdb8dca988\"}\n"} +{"Time":"2022-12-07T09:15:42.390056+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.390076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.390083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.389 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"45.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a47f93b1-815e-4194-9d1a-68923b153059\"}\n"} +{"Time":"2022-12-07T09:15:42.390163+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.390186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.390192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.390 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"777.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"85b211c8-6ee7-4d0e-9219-e760c5af9c8e\"}\n"} +{"Time":"2022-12-07T09:15:42.391321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.391342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.391354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.391 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"804µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0514669e-1b26-40eb-a2e7-621ec859f45f\"}\n"} +{"Time":"2022-12-07T09:15:42.396853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.396865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.39687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.396 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.396922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.396 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.397024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.396 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} +{"Time":"2022-12-07T09:15:42.398378+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.398389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.398393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.398 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.39859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.398 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.398614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.398 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.404034+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} +{"Time":"2022-12-07T09:15:42.404067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} +{"Time":"2022-12-07T09:15:42.404073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.403 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.44275ms\", \"status_code\": 200, \"latency_ms\": 13, \"request_id\": \"256d7d70-dcb8-48ed-abd7-cfe23aa82a8e\"}\n"} +{"Time":"2022-12-07T09:15:42.405118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.405 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"603.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9da50e5a-cedc-4275-8e2a-b44f4c734f08\"}\n"} +{"Time":"2022-12-07T09:15:42.405866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" ptytest.go:103: 2022-12-07 08:15:42.405: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} +{"Time":"2022-12-07T09:15:42.405879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" ptytest.go:103: 2022-12-07 08:15:42.405: cmd: stdout: \"For example, try running:\"\n"} +{"Time":"2022-12-07T09:15:42.405883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" ptytest.go:103: 2022-12-07 08:15:42.405: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.405888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" ptytest.go:103: 2022-12-07 08:15:42.405: cmd: stdout: \"\\t$ ssh coder.stoic-hertz3\"\n"} +{"Time":"2022-12-07T09:15:42.406021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" ptytest.go:80: 2022-12-07 08:15:42.405: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:42.406099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.406 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:42.407733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:42.407803+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.407818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.410212+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.410225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.41023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.410 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.410245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.410 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.410274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.410 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.410317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.410 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.41354+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.41356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.413565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.413 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"242.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0d0bbdc6-14b9-47a9-b2b6-8188780661c1\"}\n"} +{"Time":"2022-12-07T09:15:42.413962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.413 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"85.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"eccd8874-d386-40bc-8950-aa467ce98136\"}\n"} +{"Time":"2022-12-07T09:15:42.414064+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.414072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.414076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.414 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"893.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b42ce2d0-0087-4818-bde6-b72affcf37a8\"}\n"} +{"Time":"2022-12-07T09:15:42.415462+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.415474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.415479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.041ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"cba942d2-085b-4a7a-9efa-4ad9ec94af10\"}\n"} +{"Time":"2022-12-07T09:15:42.415731+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.41575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.41576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"772.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"215dde21-314d-42eb-9afe-004ad237d35b\"}\n"} +{"Time":"2022-12-07T09:15:42.415911+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.415922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.415927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"936.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3e628a1e-6f2e-489d-b317-30f23cc29bed\"}\n"} +{"Time":"2022-12-07T09:15:42.415936+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.415939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.415942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"831.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"79c34c25-5d4d-4655-bea1-4a00c9008e4b\"}\n"} +{"Time":"2022-12-07T09:15:42.416113+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.416123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.416128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"765.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"52c40fab-6b7d-4a33-92df-bc913e8fc0d1\"}\n"} +{"Time":"2022-12-07T09:15:42.416456+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.416467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.416472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/003/.ssh/config\n"} +{"Time":"2022-12-07T09:15:42.416638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:551: Wrote 253\n"} +{"Time":"2022-12-07T09:15:42.416971+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.416978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.416986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.416 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/organizations/06168ee8-4c9a-4b21-b363-4a3c657f0f89/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.068375ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"851d22d4-d771-472d-8d64-3e0b4f26a4a0\"}\n"} +{"Time":"2022-12-07T09:15:42.416994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.416997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.417011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.416 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"747.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1acb1dd7-d02f-4e20-85ed-7b1fff848d95\"}\n"} +{"Time":"2022-12-07T09:15:42.417153+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.417162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.417166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:542: waiting for template version job 2f5b80de-ff1e-40df-991e-f8d21b7d4d82\n"} +{"Time":"2022-12-07T09:15:42.420526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.420535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.42054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.420 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"41.167µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"b4a76632-9556-41ea-afc3-13e7db3166b8\"}\n"} +{"Time":"2022-12-07T09:15:42.420804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.420 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"25.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"59d115a9-19e9-44e3-a672-3f8b4f5ffc04\"}\n"} +{"Time":"2022-12-07T09:15:42.421435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \"\u003e New options differ from previous options:\"\n"} +{"Time":"2022-12-07T09:15:42.421442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.421447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \" New options:\"\n"} +{"Time":"2022-12-07T09:15:42.42145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \" * ssh-option: ForwardAgent=yes\"\n"} +{"Time":"2022-12-07T09:15:42.421457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.421465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \" Previous options: none\"\n"} +{"Time":"2022-12-07T09:15:42.421473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.421536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:575: 2022-12-07 08:15:42.421: cmd: matched \"Use new options?\" = \"\u003e New options differ from previous options:\\r\\n\\r\\n New options:\\r\\n * ssh-option: ForwardAgent=yes\\r\\n\\r\\n Previous options: none\\r\\n\\r\\n Use new options?\"\n"} +{"Time":"2022-12-07T09:15:42.421555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:576: 2022-12-07 08:15:42.421: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:42.421608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \" Use new options? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:42.42162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.427502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.427586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.42762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.427 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.42765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.427 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.427657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.427 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.427664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.427 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.427669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.432355+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} +{"Time":"2022-12-07T09:15:42.432366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} +{"Time":"2022-12-07T09:15:42.432369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.432 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.195208ms\", \"status_code\": 200, \"latency_ms\": 11, \"request_id\": \"54248d59-548c-441c-9f81-d7d3f6ae7e40\"}\n"} +{"Time":"2022-12-07T09:15:42.433354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.433 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"605.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e3113242-97ab-432a-886c-28873bd4a7c2\"}\n"} +{"Time":"2022-12-07T09:15:42.433586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.433: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} +{"Time":"2022-12-07T09:15:42.433594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.433: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.433597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.433: cmd: stdout: \" * Use new SSH options\"\n"} +{"Time":"2022-12-07T09:15:42.433602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.433: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:42.433673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.433: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.434592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:575: 2022-12-07 08:15:42.434: cmd: matched \"Continue?\" = \" (\\x1b[1myes\\x1b[0m/no) yes\\r\\n\\r\\n\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Use new SSH options\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} +{"Time":"2022-12-07T09:15:42.434623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:576: 2022-12-07 08:15:42.434: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:42.434779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.434: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:42.434786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.434: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.435348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.435: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} +{"Time":"2022-12-07T09:15:42.435363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.435: cmd: stdout: \"For example, try running:\"\n"} +{"Time":"2022-12-07T09:15:42.435368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.435: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.435385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.435: cmd: stdout: \"\\t$ ssh coder.keen-antonelli3\"\n"} +{"Time":"2022-12-07T09:15:42.435401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:80: 2022-12-07 08:15:42.435: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:42.435513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.435 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:42.43665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:42.436705+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.436711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.437644+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.43765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.437653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.437 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"629.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"95ea2a42-69e1-4dd1-850e-60bba8da5c8d\"}\n"} +{"Time":"2022-12-07T09:15:42.439374+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.439386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.43939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.439 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"121.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5ced7607-5e29-4d3e-8a86-f5a451fe308c\"}\n"} +{"Time":"2022-12-07T09:15:42.439603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.439 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"44.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d619834c-c9dc-4430-b85f-9f6bb96d2091\"}\n"} +{"Time":"2022-12-07T09:15:42.439715+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.439723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.439726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.439 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"506.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9f651811-5fc8-4a1b-878d-0234bd4b37db\"}\n"} +{"Time":"2022-12-07T09:15:42.43983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.439835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.439839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.439 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"560.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ce74afa8-efb8-4fd5-9d8b-cc3a25bf6abb\"}\n"} +{"Time":"2022-12-07T09:15:42.440283+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.440287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.44029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.440 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"469.083µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"879814c3-c3a5-4605-b4c0-a715ef311ca7\"}\n"} +{"Time":"2022-12-07T09:15:42.440331+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.440339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.440342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.440 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"486.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39af7136-c99a-4b97-b10f-d4ee93ebaea6\"}\n"} +{"Time":"2022-12-07T09:15:42.441153+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.441158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.441161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.441 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/organizations/fc89f23a-0974-4a78-aa0b-83c100bc0624/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"672.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5af1b1c2-b556-44b2-8b59-eac0182819c6\"}\n"} +{"Time":"2022-12-07T09:15:42.441167+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.441169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.441172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.441 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1adf028a-f5a3-4f26-a033-85a4b22a813d\"}\n"} +{"Time":"2022-12-07T09:15:42.441257+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.441261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.441263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" configssh_test.go:542: waiting for template version job 6b0b9fdd-18bc-4d6e-9482-3058593efa05\n"} +{"Time":"2022-12-07T09:15:42.443325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.443329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.443332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.443 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"434.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"995d7f9a-ea80-4318-859d-f07c0694cc3f\"}\n"} +{"Time":"2022-12-07T09:15:42.449396+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.449401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.449404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.449 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.449408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.449 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.449435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.449 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.449457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.449 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.449501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.449 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.461215+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.461226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.46123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.461 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.461386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.461 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.461395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.461 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.463705+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.463711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.463714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.463 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"638.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e5f1ab45-5c01-4cce-a361-240b4d705299\"}\n"} +{"Time":"2022-12-07T09:15:42.464026+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.464034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.464037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.463 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"433.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bca06b89-faa6-47d3-bc75-8302c97c36cc\"}\n"} +{"Time":"2022-12-07T09:15:42.464067+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.464077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.46408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.464 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"371.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"29d3fe17-b5d3-4070-b4a4-92f5191c2825\"}\n"} +{"Time":"2022-12-07T09:15:42.464614+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.46462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.464634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.464 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b0d5666f-3cc3-47e2-965c-9075b573b225\"}\n"} +{"Time":"2022-12-07T09:15:42.465682+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.465689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.465692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.465 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9e770560-d9f8-4c88-aac4-c6f75bf351df\"}\n"} +{"Time":"2022-12-07T09:15:42.466882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.466887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.46689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1721955a-0897-48dc-94cd-0117d60d7b1c\"}\n"} +{"Time":"2022-12-07T09:15:42.467669+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.467674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.467677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.467 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"340.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"63848ba0-8a8d-4bab-899b-eb8deeb716fe\"}\n"} +{"Time":"2022-12-07T09:15:42.478698+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.478704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.478706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.478 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.478754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.478 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.478839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.478 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} +{"Time":"2022-12-07T09:15:42.487721+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.487728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.48773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.487 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f66a8994-8ded-41c8-a5ba-217836e65b65\"}\n"} +{"Time":"2022-12-07T09:15:42.489001+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.489007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.489011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.488 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"396.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a26f90d-c1a2-4b9e-9bf5-a56ace6497bb\"}\n"} +{"Time":"2022-12-07T09:15:42.489158+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.489166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.489169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.489 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"424.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"156f0af4-02c5-40f0-9390-22c36d101f96\"}\n"} +{"Time":"2022-12-07T09:15:42.489474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/003/.ssh/config\n"} +{"Time":"2022-12-07T09:15:42.4896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:551: Wrote 314\n"} +{"Time":"2022-12-07T09:15:42.489664+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.489668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.489671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.489 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"397.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a36801d8-0993-4716-93eb-ee9e209201aa\"}\n"} +{"Time":"2022-12-07T09:15:42.490684+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.49069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.490694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.490 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e36c62d-8860-4d8e-9bcd-6bb6fcb1f0e4\"}\n"} +{"Time":"2022-12-07T09:15:42.491859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.49187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.491873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.491 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"388.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"23466e3f-eafc-4726-beb8-c4040407956a\"}\n"} +{"Time":"2022-12-07T09:15:42.492531+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.492542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.492545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.492 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.375µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"9e76e939-319f-4322-ae56-749d1fe483e0\"}\n"} +{"Time":"2022-12-07T09:15:42.492695+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.492706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.49271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.492 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"369.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8d84513-1fdf-4a1d-bc25-471d8d646502\"}\n"} +{"Time":"2022-12-07T09:15:42.492797+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.492806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.49281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.492 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49891658-89da-450b-8b63-d4b91221e8f4\"}\n"} +{"Time":"2022-12-07T09:15:42.493266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \"\u003e New options differ from previous options:\"\n"} +{"Time":"2022-12-07T09:15:42.493276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.49328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \" New options:\"\n"} +{"Time":"2022-12-07T09:15:42.493283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \" * ssh-option: ForwardAgent=no\"\n"} +{"Time":"2022-12-07T09:15:42.493288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.493291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \" Previous options:\"\n"} +{"Time":"2022-12-07T09:15:42.493293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \" * ssh-option: ForwardAgent=yes\"\n"} +{"Time":"2022-12-07T09:15:42.493296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.493341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:575: 2022-12-07 08:15:42.493: cmd: matched \"Use new options?\" = \"\u003e New options differ from previous options:\\r\\n\\r\\n New options:\\r\\n * ssh-option: ForwardAgent=no\\r\\n\\r\\n Previous options:\\r\\n * ssh-option: ForwardAgent=yes\\r\\n\\r\\n Use new options?\"\n"} +{"Time":"2022-12-07T09:15:42.493346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:576: 2022-12-07 08:15:42.493: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:42.493378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \" Use new options? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:42.493386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.500385+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.50039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.500394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.500 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.500437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.500 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.500455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.500 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.500476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.500 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.500544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.500 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.501343+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} +{"Time":"2022-12-07T09:15:42.501348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} +{"Time":"2022-12-07T09:15:42.50135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.501 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"8.326958ms\", \"status_code\": 200, \"latency_ms\": 8, \"request_id\": \"58feaf85-434e-40ce-be52-94ed35f0c219\"}\n"} +{"Time":"2022-12-07T09:15:42.501986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.501 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9839c9ef-c48a-485d-8057-3c7c97d3fd6c\"}\n"} +{"Time":"2022-12-07T09:15:42.502089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.502: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} +{"Time":"2022-12-07T09:15:42.502095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.502: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.502097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.502: cmd: stdout: \" * Use new SSH options\"\n"} +{"Time":"2022-12-07T09:15:42.502101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.502: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:42.502108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.502: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.502164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:575: 2022-12-07 08:15:42.502: cmd: matched \"Continue?\" = \" (\\x1b[1myes\\x1b[0m/no) yes\\r\\n\\r\\n\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Use new SSH options\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} +{"Time":"2022-12-07T09:15:42.502179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:576: 2022-12-07 08:15:42.502: cmd: stdin: \"no\\r\"\n"} +{"Time":"2022-12-07T09:15:42.502207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.502: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) no\"\n"} +{"Time":"2022-12-07T09:15:42.502328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:80: 2022-12-07 08:15:42.502: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:42.502367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.502 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:42.503488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:42.503518+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.503523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.512116+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.512124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.512128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.512 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:42.512132+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.512135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.512136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.512 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.512182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.512 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.512188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.512 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.512194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.512 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.512255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.512 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.513642+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.513648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.513651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.513 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a77f891f-8c51-4ab7-a9d6-eeff7ecf4eb1\"}\n"} +{"Time":"2022-12-07T09:15:42.514533+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.514539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.514543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.514 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"470.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5ea24f14-1f7e-4f5b-91a0-369b9bd3553a\"}\n"} +{"Time":"2022-12-07T09:15:42.516321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.516325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.516328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.516 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"397µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"29539695-9a34-4698-af9c-2eaac6b9add5\"}\n"} +{"Time":"2022-12-07T09:15:42.516332+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.516337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.516339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.516 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"410.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bcdf79d0-9b91-4baa-8dce-6c92a9e0a066\"}\n"} +{"Time":"2022-12-07T09:15:42.518579+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.518584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.518586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.518 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61dc9f37-3f67-4138-89a6-33e968db93d2\"}\n"} +{"Time":"2022-12-07T09:15:42.518665+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.518669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.518671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.518 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"455.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3e5ae6c5-b1ab-4a5d-9671-1fb5da281cff\"}\n"} +{"Time":"2022-12-07T09:15:42.533452+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.533469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.533472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.533538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.533592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:42.533623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.533658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.533673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.533691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"workspace_name\": \"epic-poincare8\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:42.533792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.533799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.53693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5396bde0-6a9e-4319-ac7f-3440949d1928\"}\n"} +{"Time":"2022-12-07T09:15:42.538722+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.538728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.538731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.538 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:42.538964+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.53897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.538973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f58fb1e-5964-4f8f-b5aa-67e56bd13602\"}\n"} +{"Time":"2022-12-07T09:15:42.539486+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.539491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.539493+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.539 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"269.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e297666a-44db-4f76-948f-7b09e2c282f1\"}\n"} +{"Time":"2022-12-07T09:15:42.54052+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.540526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.54053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.540 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"255.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b2491835-d227-406d-8a44-3181ced0057a\"}\n"} +{"Time":"2022-12-07T09:15:42.541739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.541744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.541746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.541 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"256.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c7caa147-e509-4172-8fbf-94a0a71bdc25\"}\n"} +{"Time":"2022-12-07T09:15:42.542531+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.542538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.54254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.542 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"233.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"793769f3-1807-454a-b355-600b7ca63b0d\"}\n"} +{"Time":"2022-12-07T09:15:42.551667+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.55168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.551683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.551 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.551703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.551 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.551739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.551 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} +{"Time":"2022-12-07T09:15:42.551868+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.551882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.551885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.551 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.551943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.551 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.551974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.551 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:42.552006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.551 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_prompt_on_no_changes2701350071/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.552023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.552 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_prompt_on_no_changes2701350071/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.552045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.552 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_prompt_on_no_changes2701350071/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.552061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.552 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"workspace_name\": \"funny-jones7\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:42.552165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.552 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.552169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.552 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.562651+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.56266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.562662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.562664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.562676+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.562677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.562679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.562681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.562688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.56269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.562691+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.562693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.562694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:42.562696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.562698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.5627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.562702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.562704+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.562705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.562706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.562708+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.562709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.56271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:42.562912+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.56292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.562923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b47b27bb-8973-414e-b5fe-fda930801839\"}\n"} +{"Time":"2022-12-07T09:15:42.564082+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.564129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.56431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.563 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b0631cb8-5a43-4b61-b683-cdc0abdbc3ca\"}\n"} +{"Time":"2022-12-07T09:15:42.565599+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.565607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.56561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.565 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a1a156af-3db6-420e-9aba-cff6b7ae819f\"}\n"} +{"Time":"2022-12-07T09:15:42.566023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run593224590/003/.ssh/config\n"} +{"Time":"2022-12-07T09:15:42.566038+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.56604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.566042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.566 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"73dc5d85-1af1-436c-9348-cf7eb0b1877f\"}\n"} +{"Time":"2022-12-07T09:15:42.566116+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.566171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.566173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" configssh_test.go:551: Wrote 320\n"} +{"Time":"2022-12-07T09:15:42.567356+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.567363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.567365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.567 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7fe7cbc5-b040-42e0-9dbd-9deff3faf817\"}\n"} +{"Time":"2022-12-07T09:15:42.56791+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.567917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.56792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.567 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"286.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f89b836a-adf3-4a7a-aada-124b2555cd28\"}\n"} +{"Time":"2022-12-07T09:15:42.568064+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} +{"Time":"2022-12-07T09:15:42.56807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} +{"Time":"2022-12-07T09:15:42.568072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.567 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.042µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"474869cc-0937-4754-a5f5-79867c557efb\"}\n"} +{"Time":"2022-12-07T09:15:42.568263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.568 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd1647d1-f9d1-44c5-afb6-b9b64af1029b\"}\n"} +{"Time":"2022-12-07T09:15:42.574368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.574 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.596334ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"de5a4055-5b22-4511-a106-26f50e1e5c80\"}\n"} +{"Time":"2022-12-07T09:15:42.575001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.574 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2aa349fd-6adf-4b1d-9c61-51065107ee8b\"}\n"} +{"Time":"2022-12-07T09:15:42.575198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" ptytest.go:103: 2022-12-07 08:15:42.575: cmd: stdout: \"No changes to make.\"\n"} +{"Time":"2022-12-07T09:15:42.575222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" ptytest.go:80: 2022-12-07 08:15:42.575: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:42.575383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.575 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:42.576173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:42.576186+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.57619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.585491+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.585537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.585541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.585 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.585544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.585 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.585546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.585 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.585548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.585 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.587981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"490.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58af2765-72db-4d5a-8044-597bef732d90\"}\n"} +{"Time":"2022-12-07T09:15:42.589057+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.589226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.589232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.588 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.589237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.589 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.589239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.589 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:42.589241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.589 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.589243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.589 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.589245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.589 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.589247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.589 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.589284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.589 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:42.590003+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.59002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.590029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"55bcfdc1-9d0b-4d04-90c8-4f9399fa3885\"}\n"} +{"Time":"2022-12-07T09:15:42.591981+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.591992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.591995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.591 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"693.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b92a1077-9ccd-4b80-a95d-d1187e2087c7\"}\n"} +{"Time":"2022-12-07T09:15:42.593322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.593354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.593361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.593 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"411.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"73a6e7c5-4549-47ee-8465-8b7cb963ae3d\"}\n"} +{"Time":"2022-12-07T09:15:42.596027+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.596037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.596041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.594 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.275083ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"7284d44f-afd1-4363-8848-dbc1d80775b5\"}\n"} +{"Time":"2022-12-07T09:15:42.601329+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.601381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.601399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.601 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"226.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"45e4e543-6800-4635-b042-5b9b43851e1f\"}\n"} +{"Time":"2022-12-07T09:15:42.60177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.601 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"134.916µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"83d1b85e-6879-49d2-a5c2-442db3f53bc3\"}\n"} +{"Time":"2022-12-07T09:15:42.602436+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.602467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.60247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.602 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.602473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.602 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.602486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.602 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.602489+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.602491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.602495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.602 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"451.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"aa625701-c321-4e46-a214-8dbc9011eaac\"}\n"} +{"Time":"2022-12-07T09:15:42.602499+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.602501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.602503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.602 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.603257+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.603265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.603268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/organizations/4d994c04-1e5d-4888-b3bb-45b97f28c20e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"539.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e78588c2-112e-4408-8c12-178d7340b2c5\"}\n"} +{"Time":"2022-12-07T09:15:42.603877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/organizations/4d994c04-1e5d-4888-b3bb-45b97f28c20e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"336.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0c1b6bc4-7d0e-4859-a9ea-0b8ac6f2a411\"}\n"} +{"Time":"2022-12-07T09:15:42.603963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" agent_test.go:49: waiting for template version job 6db1a143-8931-4a94-8942-f46d485850b2\n"} +{"Time":"2022-12-07T09:15:42.609626+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.609635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.609638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.609 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.667µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:42.611894+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.61192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.611927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.611 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ab5f8cb-adde-4481-821a-cc3c09752d89\"}\n"} +{"Time":"2022-12-07T09:15:42.61295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.612963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.612966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.612 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.612969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.612971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.612973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.612 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.612974+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.612976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.61298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.612 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.612987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.612 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} +{"Time":"2022-12-07T09:15:42.613116+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.61312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.613128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.613 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.614183+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.6142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.614202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.614 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61d8e8ed-77bd-407f-bd82-6e1e287ec842\"}\n"} +{"Time":"2022-12-07T09:15:42.617912+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.617946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.617954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.617 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"534.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8a9ab00-a825-43ba-90d4-1990ca594156\"}\n"} +{"Time":"2022-12-07T09:15:42.618418+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.618472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.618485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.617 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.084µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"3020d17c-1c05-4646-b7c9-d1c2aa559ca2\"}\n"} +{"Time":"2022-12-07T09:15:42.619173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.618 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"67.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62829e1a-7a5b-4f6d-ac47-191eab7060d7\"}\n"} +{"Time":"2022-12-07T09:15:42.62099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.62101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.621017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.619 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.408958ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"eda0d0a2-d777-4eb1-b5f6-89c730b54527\"}\n"} +{"Time":"2022-12-07T09:15:42.621024+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.621028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.621032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.620 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.240167ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"8387d91f-4241-4486-80af-7db4a63bff55\"}\n"} +{"Time":"2022-12-07T09:15:42.630799+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.630812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.630814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.630 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"963.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31f7c134-4753-47fb-ba39-0a4d1b7080ec\"}\n"} +{"Time":"2022-12-07T09:15:42.631395+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} +{"Time":"2022-12-07T09:15:42.631398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} +{"Time":"2022-12-07T09:15:42.631401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.631 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.068334ms\", \"status_code\": 200, \"latency_ms\": 11, \"request_id\": \"016dcec3-5df5-49bf-8a14-b3013f2a6e2a\"}\n"} +{"Time":"2022-12-07T09:15:42.631996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.631 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c61d558-857a-4b10-874c-2b476631d328\"}\n"} +{"Time":"2022-12-07T09:15:42.632211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} +{"Time":"2022-12-07T09:15:42.632217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.632219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:42.632222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.632266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" configssh_test.go:575: 2022-12-07 08:15:42.632: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} +{"Time":"2022-12-07T09:15:42.632282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" configssh_test.go:576: 2022-12-07 08:15:42.632: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:42.632376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:42.632403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.632697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} +{"Time":"2022-12-07T09:15:42.632702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"For example, try running:\"\n"} +{"Time":"2022-12-07T09:15:42.632705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.632707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"\\t$ ssh coder.eager-dhawan0\"\n"} +{"Time":"2022-12-07T09:15:42.632786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:80: 2022-12-07 08:15:42.632: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:42.632811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.632 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:42.633588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:42.633606+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.633609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.63597+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.635975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.635977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.635 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.636095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.636 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.636115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.636 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.63729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"424.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a36c1c95-5089-4a39-91c5-0bc7e1a4d794\"}\n"} +{"Time":"2022-12-07T09:15:42.637921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.637925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.637927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.637 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"6.959µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:42.639453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.639 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.639543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.639 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.641048+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.641053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.641056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.641 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"350.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06df2d88-8d87-45a2-a062-b7a7ff0a00ce\"}\n"} +{"Time":"2022-12-07T09:15:42.642052+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.642056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.642058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.642 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"322.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7dce1222-0fd7-4283-9cb7-d1bde20a88d9\"}\n"} +{"Time":"2022-12-07T09:15:42.642954+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.642959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.642961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.642 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c5f1014-fb05-4d19-8621-0c1484ba9de1\"}\n"} +{"Time":"2022-12-07T09:15:42.653602+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.653612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.653615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.653 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.653713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.653 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.653736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.653 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.655578+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.655584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.655586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.655 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"453.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6adad252-7dde-4329-99aa-828567f54095\"}\n"} +{"Time":"2022-12-07T09:15:42.662329+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.662344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.662348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.662 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"76f93a3d-3343-4c63-8fcb-f2e5d0741a5c\"}\n"} +{"Time":"2022-12-07T09:15:42.66324+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.663245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.663247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.66325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.663252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.663257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.663303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.663352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.663356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.663423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.663433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.665776+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.665782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.665787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.665 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"286.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20a8bc52-6821-405c-bfe9-7e9123afd2ee\"}\n"} +{"Time":"2022-12-07T09:15:42.666661+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.666665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.666667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.666 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"242.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fe56d3e5-fda0-44f5-9f84-0d58c22b9ad1\"}\n"} +{"Time":"2022-12-07T09:15:42.667713+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.667719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.667721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.667 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"caef2421-e53c-4780-9408-5d87e33fb917\"}\n"} +{"Time":"2022-12-07T09:15:42.680491+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.6805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.680502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.680 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"326.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f3a2e4a1-3489-4f20-b2e8-aba75e4c8db1\"}\n"} +{"Time":"2022-12-07T09:15:42.686888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.686895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.686897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.686 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.6869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.686 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.686969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.686 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.686982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.686 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.686996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.686 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.687246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.687 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8e1c7bc8-f898-4bc6-99cf-7bb3bd783611\"}\n"} +{"Time":"2022-12-07T09:15:42.68982+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.689825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.689828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.689832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.689856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.689863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.68988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.68989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.689907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.690006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.690036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.690 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.690503+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.690508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.69051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.690 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"285.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ac80ffe2-1e09-4a9b-89a4-ef4f73574ea0\"}\n"} +{"Time":"2022-12-07T09:15:42.69177+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.691775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.691778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.691 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"241.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"30d40ac2-ab0e-414d-967e-99e4e5127a9f\"}\n"} +{"Time":"2022-12-07T09:15:42.692653+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.692661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.692664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.692 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2081de90-43a2-48c8-992c-a43e12bdc9c4\"}\n"} +{"Time":"2022-12-07T09:15:42.700078+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.700084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.700086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:42.704315+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.704319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.704321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.704 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.704324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.704 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.704327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.704 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.70438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.704 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.70444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.704 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.704604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.704609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.704611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.704 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"246.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"42651648-a172-41ad-830d-6b9a7b1aaeee\"}\n"} +{"Time":"2022-12-07T09:15:42.712318+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.712322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.712324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.712 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"289.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2826acf7-54ee-40e5-8ea4-75f0aac4236b\"}\n"} +{"Time":"2022-12-07T09:15:42.713651+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.713655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.713657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.713 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.713661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.713 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.713679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.713 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.713698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.713 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.71372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.713 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.713753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.713 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.715696+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.715702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.71571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.715 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"251.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d860386-b8b7-4275-b42f-b1c4739119dc\"}\n"} +{"Time":"2022-12-07T09:15:42.716734+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.716738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.716743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.716 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"247.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"83372f9d-213d-4f58-aa04-622b58c7ecfe\"}\n"} +{"Time":"2022-12-07T09:15:42.717615+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.71762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.717627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.717 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"241µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f01cdbdd-0344-4ec5-8179-7329eb491b39\"}\n"} +{"Time":"2022-12-07T09:15:42.730407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.730413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.730414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"243.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f0385b22-5814-4a4f-afde-1041d4e08e2a\"}\n"} +{"Time":"2022-12-07T09:15:42.737083+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.737088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.73709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.737 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.737092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.737 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.737095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.737 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.737097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.737 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.73716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.737 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.737196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.737 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"252.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2fa0949e-f215-4a40-b18f-4413700436c3\"}\n"} +{"Time":"2022-12-07T09:15:42.74047+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.740475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.740477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.740 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.74048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.740 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.740501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.740 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.740527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.740 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.740551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.740 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.740594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.740 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.740878+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.740885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.740887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.740 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"290.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"acae28fa-0f53-4fc1-8fb8-ce5ce09733ad\"}\n"} +{"Time":"2022-12-07T09:15:42.74165+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.741654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.741656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.741 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"225.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d55e353-fadb-4166-9285-8ad19d76611d\"}\n"} +{"Time":"2022-12-07T09:15:42.742577+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.742586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.742588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.742 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"257.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3180f07c-28c8-4f46-8e5c-af682280c4f6\"}\n"} +{"Time":"2022-12-07T09:15:42.750863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.750872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.750874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.750 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.75093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.750 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.750981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.750 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:42.750997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.750 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"size_bytes\": 2, \"path\": \"/tmp/TestWorkspaceAgentAzure3749321051/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.751015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.750 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAzure3749321051/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.751034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAzure3749321051/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.751048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.751126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.751 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:42.75304+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.753045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.753047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.752 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"89.416µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c3868bc8-5303-4635-a48f-43167057ae0d\"}\n"} +{"Time":"2022-12-07T09:15:42.75321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.753 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"34.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"97059173-ce30-4d32-ac91-5e0b16425eaa\"}\n"} +{"Time":"2022-12-07T09:15:42.753764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.753 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"52de64b7-ad90-4cde-a7e6-bd39c18caf6a\"}\n"} +{"Time":"2022-12-07T09:15:42.754314+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.754318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.754319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"267.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"343c057d-b055-4d29-a93b-4ddf588a56e3\"}\n"} +{"Time":"2022-12-07T09:15:42.754376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.754382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.754385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/organizations/97761f7a-09ce-4fc6-bf13-d8f709bf737b/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.334µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b19c593e-c9c1-4d8e-b301-e568fa1ff44b\"}\n"} +{"Time":"2022-12-07T09:15:42.754447+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.754452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.754455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.754497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.754511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.754515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.754533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.754848+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.754852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.754853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/organizations/97761f7a-09ce-4fc6-bf13-d8f709bf737b/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"843b5e37-f84b-4405-8893-30381cad9167\"}\n"} +{"Time":"2022-12-07T09:15:42.754931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" agent_test.go:165: waiting for template version job c861bc99-a807-47cd-8c1d-5a91e0083bac\n"} +{"Time":"2022-12-07T09:15:42.76222+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.762225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.762227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.762 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"253.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd96dc73-8177-4e2d-80d2-6681d3ba9570\"}\n"} +{"Time":"2022-12-07T09:15:42.764002+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.764008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.764011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.763 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.764015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.763 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.764027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.764 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.76406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.764 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} +{"Time":"2022-12-07T09:15:42.765621+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.765625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.76563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"249.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bb32c734-2004-4942-baa7-aa27a5c693d8\"}\n"} +{"Time":"2022-12-07T09:15:42.76666+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.766666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.766668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.766 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"225.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6c039698-f0ea-412b-82f5-b58c90d1091f\"}\n"} +{"Time":"2022-12-07T09:15:42.767556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.76756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.767562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.767 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"236.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c22b3093-c8c0-4c29-bec4-1312c949ea07\"}\n"} +{"Time":"2022-12-07T09:15:42.768003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.767 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/organizations/06168ee8-4c9a-4b21-b363-4a3c657f0f89/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"243.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d18f2003-05c3-4edd-b1a5-34c54c7d502a\"}\n"} +{"Time":"2022-12-07T09:15:42.768715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.768 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/organizations/06168ee8-4c9a-4b21-b363-4a3c657f0f89/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"520.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a93b21c3-e16b-492f-85b3-32dc16558a15\"}\n"} +{"Time":"2022-12-07T09:15:42.768798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:545: waiting for workspace build job 85d029ff-5d97-4c3c-95a8-207c87a1c47c\n"} +{"Time":"2022-12-07T09:15:42.780341+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.780349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.780352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.780 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"231.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"098359b8-b550-429b-8e45-02c73da883f9\"}\n"} +{"Time":"2022-12-07T09:15:42.780374+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.780377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.780379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.780 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"242.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"09c98ac7-30ea-4193-84dd-1987d259aed1\"}\n"} +{"Time":"2022-12-07T09:15:42.78672+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.786736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.786748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.786 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"785ac4f7-30a5-4bcb-bfe5-101eb5d1869e\"}\n"} +{"Time":"2022-12-07T09:15:42.787249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.787 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.787277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.787 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.787303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.787 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} +{"Time":"2022-12-07T09:15:42.790651+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.790657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.790659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.790 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.790665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.790 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.790684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.790 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.790715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.790 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} +{"Time":"2022-12-07T09:15:42.790841+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.790845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.790848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.790 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"244.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"70f62814-6bae-4099-a655-b64494a41dbe\"}\n"} +{"Time":"2022-12-07T09:15:42.791689+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.791693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.791695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.791 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"240.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cc3262b1-54f5-4120-b1c7-f423a9b0840e\"}\n"} +{"Time":"2022-12-07T09:15:42.792133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.792 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/organizations/fc89f23a-0974-4a78-aa0b-83c100bc0624/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"234.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6556898a-513d-4951-ada0-05a1ffdd4997\"}\n"} +{"Time":"2022-12-07T09:15:42.792837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.792 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/organizations/fc89f23a-0974-4a78-aa0b-83c100bc0624/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"518.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"71e5ce2a-83d8-4296-a461-e0fbde4d5491\"}\n"} +{"Time":"2022-12-07T09:15:42.79292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" configssh_test.go:545: waiting for workspace build job 8915e63c-b5f1-4696-af2e-5d98a797b239\n"} +{"Time":"2022-12-07T09:15:42.794323+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.794328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.794329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.794 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"249.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3e63cff7-33de-40e2-b316-805e4cf3b7e8\"}\n"} +{"Time":"2022-12-07T09:15:42.798825+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.798828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.798831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.798 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"11.875µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:42.801434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.801 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.801566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.801 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.804566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"241.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a2e50966-e41b-4eb2-8422-73ddd2b2a132\"}\n"} +{"Time":"2022-12-07T09:15:42.804604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.804608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.80461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.804 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.804661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.804 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.804672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.804 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} +{"Time":"2022-12-07T09:15:42.805333+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.805337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.805338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.805 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"232.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7fba2ce-ae34-4cd1-ab5e-decb43041010\"}\n"} +{"Time":"2022-12-07T09:15:42.812128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.812132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.812134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.812 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"247.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a231c04-efa0-4487-85a2-575914942664\"}\n"} +{"Time":"2022-12-07T09:15:42.812392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/003/.ssh/config\n"} +{"Time":"2022-12-07T09:15:42.812445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" configssh_test.go:551: Wrote 253\n"} +{"Time":"2022-12-07T09:15:42.814299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.814 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.708µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"13798336-528f-43da-a771-b68bc99c89ec\"}\n"} +{"Time":"2022-12-07T09:15:42.814615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.814 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"724f9873-645e-4a12-9dcc-47d88ccb0c5b\"}\n"} +{"Time":"2022-12-07T09:15:42.815551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.815558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.81556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.815 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a91051a-b835-4a8f-b26f-13dcfd119eb3\"}\n"} +{"Time":"2022-12-07T09:15:42.815927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_prompt_on_no_changes2701350071/003/.ssh/config\n"} +{"Time":"2022-12-07T09:15:42.815979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" configssh_test.go:551: Wrote 314\n"} +{"Time":"2022-12-07T09:15:42.817058+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.817063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.817065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.817 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"90.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3761c87c-a2da-432e-99b2-b4d84d1d2ccc\"}\n"} +{"Time":"2022-12-07T09:15:42.817279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.817 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a61fbbe0-7d65-44ec-9f8d-e26955e8089b\"}\n"} +{"Time":"2022-12-07T09:15:42.81781+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.817815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.817817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.817 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"fa3b7571-e7ff-4676-9c1e-d2c6fd67cf11\"}\n"} +{"Time":"2022-12-07T09:15:42.81786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.817874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.817876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.817 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2e6142d3-9176-4289-888b-104c59f349cb\"}\n"} +{"Time":"2022-12-07T09:15:42.81799+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.817998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.817 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8b72a58c-1956-4b66-b744-07d29c13b495\"}\n"} +{"Time":"2022-12-07T09:15:42.818366+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.818371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.818374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.818 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"286.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7b472ca6-1969-4eaa-8720-8f2b3b9fbbb3\"}\n"} +{"Time":"2022-12-07T09:15:42.818551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.818556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.818558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.818 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/organizations/7b6b98bb-5412-4210-ad57-bfe4b3d6ee8a/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"528.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"990c60c2-5836-4fca-9522-297cb06b440a\"}\n"} +{"Time":"2022-12-07T09:15:42.818974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.818 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/organizations/7b6b98bb-5412-4210-ad57-bfe4b3d6ee8a/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"257.334µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0ba12a72-a3ab-45cd-9ff7-7a4275279324\"}\n"} +{"Time":"2022-12-07T09:15:42.819063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" agent_test.go:107: waiting for template version job 59e1fb14-3ad6-4fd1-8914-f9176610c90d\n"} +{"Time":"2022-12-07T09:15:42.819179+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.819186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.81919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.819 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"70ce5951-9276-480f-8055-5c96967fda01\"}\n"} +{"Time":"2022-12-07T09:15:42.825766+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.825781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.825797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.825 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"7.495583ms\", \"status_code\": 200, \"latency_ms\": 7, \"request_id\": \"6886b49d-8347-441b-a3c0-2b4a84e749df\"}\n"} +{"Time":"2022-12-07T09:15:42.826324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.826 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"294.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"695af480-836b-414d-ba66-cdb2c4340a2b\"}\n"} +{"Time":"2022-12-07T09:15:42.826453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" ptytest.go:103: 2022-12-07 08:15:42.826: cmd: stdout: \"No changes to make.\"\n"} +{"Time":"2022-12-07T09:15:42.826463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.826465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.826469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.826 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.556625ms\", \"status_code\": 200, \"latency_ms\": 11, \"request_id\": \"4448672f-2485-4a91-81c9-f8b1fce4311d\"}\n"} +{"Time":"2022-12-07T09:15:42.826568+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.826573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.826575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" ptytest.go:80: 2022-12-07 08:15:42.826: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:42.826632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.826 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:42.827072+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.827076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.827078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"55efdd31-cb24-4a47-bbe2-9499affd673e\"}\n"} +{"Time":"2022-12-07T09:15:42.827218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} +{"Time":"2022-12-07T09:15:42.827225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.827227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:42.82723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.827233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" configssh_test.go:575: 2022-12-07 08:15:42.827: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} +{"Time":"2022-12-07T09:15:42.827238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" configssh_test.go:576: 2022-12-07 08:15:42.827: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:42.827263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:42.827268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.827474+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} +{"Time":"2022-12-07T09:15:42.827479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} +{"Time":"2022-12-07T09:15:42.827481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:42.827505+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:42.82751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:42.827644+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} +{"Time":"2022-12-07T09:15:42.827649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} +{"Time":"2022-12-07T09:15:42.827651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} +{"Time":"2022-12-07T09:15:42.827653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"For example, try running:\"\n"} +{"Time":"2022-12-07T09:15:42.827655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.827659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"\\t$ ssh coder.epic-poincare8\"\n"} +{"Time":"2022-12-07T09:15:42.827699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:80: 2022-12-07 08:15:42.827: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:42.827736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.827 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:42.82862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:42.828643+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates"} +{"Time":"2022-12-07T09:15:42.828646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":"=== CONT TestTemplateList/NoTemplates\n"} +{"Time":"2022-12-07T09:15:42.829956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:42.829963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:42.829965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"99.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3ce1395d-7811-4874-9d06-7bd748b4bb54\"}\n"} +{"Time":"2022-12-07T09:15:42.830182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"48.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"66659d07-8308-4e72-9826-fdf9c7ba7c1b\"}\n"} +{"Time":"2022-12-07T09:15:42.830248+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.830253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.830267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"382.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7187c8b8-f649-445c-95b3-0ce72e1d320e\"}\n"} +{"Time":"2022-12-07T09:15:42.830682+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates"} +{"Time":"2022-12-07T09:15:42.830687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":"=== CONT TestTemplateList/NoTemplates\n"} +{"Time":"2022-12-07T09:15:42.830689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" t.go:81: 2022-12-07 08:15:42.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57739\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"83.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f77823e4-8a12-46ee-8f86-f257657bd8a9\"}\n"} +{"Time":"2022-12-07T09:15:42.830795+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:42.830799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:42.830802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2a985a23-9dc1-492c-98b8-43691ae6f50a\"}\n"} +{"Time":"2022-12-07T09:15:42.830866+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates"} +{"Time":"2022-12-07T09:15:42.830874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":"=== CONT TestTemplateList/NoTemplates\n"} +{"Time":"2022-12-07T09:15:42.830876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" t.go:81: 2022-12-07 08:15:42.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57739\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"39.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"da819d97-ce27-421e-a05a-2b6fa19675d9\"}\n"} +{"Time":"2022-12-07T09:15:42.830999+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.831003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.831006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"430.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d625a2f0-5a21-4900-bfd6-de9bc5983fb9\"}\n"} +{"Time":"2022-12-07T09:15:42.831455+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:42.831459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:42.831461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/organizations/4c078594-ccaa-40a8-87cf-c5e6d3ec3a86/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"491.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"825e71e6-1d66-44bd-bedf-48a4fc1b5236\"}\n"} +{"Time":"2022-12-07T09:15:42.831531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" templatelist_test.go:21: waiting for template version job efc83f98-7732-4302-8631-7ece953e32b7\n"} +{"Time":"2022-12-07T09:15:42.832729+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates"} +{"Time":"2022-12-07T09:15:42.832736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":"=== CONT TestTemplateList/NoTemplates\n"} +{"Time":"2022-12-07T09:15:42.832738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" t.go:81: 2022-12-07 08:15:42.832 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57739\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.625µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"ae1e76b9-d7d3-4dc7-8e5c-7b7b07159ee2\"}\n"} +{"Time":"2022-12-07T09:15:42.832908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" t.go:81: 2022-12-07 08:15:42.832 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57739\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e30f6168-ab50-4858-b8c9-eea1e1de2ddb\"}\n"} +{"Time":"2022-12-07T09:15:42.833457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" t.go:81: 2022-12-07 08:15:42.833 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57739\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"93a61fcf-0885-4040-84df-3cc51271eaf3\"}\n"} +{"Time":"2022-12-07T09:15:42.838721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" t.go:81: 2022-12-07 08:15:42.838 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57739\", \"path\": \"/api/v2/organizations/fec7c9b1-6e92-4439-b608-dc06581244d6/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.080166ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"13f7b402-241b-4742-920b-507127443cdd\"}\n"} +{"Time":"2022-12-07T09:15:42.838847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" ptytest.go:103: 2022-12-07 08:15:42.838: cmd: stdout: \"\u003e No templates found in testuser! Create one:\"\n"} +{"Time":"2022-12-07T09:15:42.838853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" ptytest.go:103: 2022-12-07 08:15:42.838: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.838855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" ptytest.go:103: 2022-12-07 08:15:42.838: cmd: stdout: \" $ coder templates create \u003cdirectory\u003e\"\n"} +{"Time":"2022-12-07T09:15:42.838858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" ptytest.go:103: 2022-12-07 08:15:42.838: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:42.838861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" templatelist_test.go:69: 2022-12-07 08:15:42.838: cmd: matched \"No templates found in\" = \"\u003e No templates found in\"\n"} +{"Time":"2022-12-07T09:15:42.838876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" templatelist_test.go:70: 2022-12-07 08:15:42.838: cmd: matched \"testuser\" = \" testuser\"\n"} +{"Time":"2022-12-07T09:15:42.838882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" templatelist_test.go:71: 2022-12-07 08:15:42.838: cmd: matched \"Create one:\" = \"! Create one:\"\n"} +{"Time":"2022-12-07T09:15:42.83892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" ptytest.go:80: 2022-12-07 08:15:42.838: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:42.83942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:42.839446+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName"} +{"Time":"2022-12-07T09:15:42.839449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName","Output":"=== CONT TestTemplatePull/NoName\n"} +{"Time":"2022-12-07T09:15:42.840921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:42.840924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:42.843386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.843 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"90.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2fc4412d-ef37-4bbe-b633-5409a2f6a67d\"}\n"} +{"Time":"2022-12-07T09:15:42.843564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.843 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"38.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"96329a4c-7ed9-4f6d-8c44-a7efb963e170\"}\n"} +{"Time":"2022-12-07T09:15:42.843914+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.843921+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.843923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.843 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"420.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7bdc648d-e2d4-4032-a1bb-e200a51692f9\"}\n"} +{"Time":"2022-12-07T09:15:42.844161+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:42.844168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:42.84417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.844 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"586d67ec-043e-460f-8e4e-878d4e7a9119\"}\n"} +{"Time":"2022-12-07T09:15:42.844777+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.844783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.844794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.844 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cf5a2211-5ac1-4677-b5bc-a187595d0001\"}\n"} +{"Time":"2022-12-07T09:15:42.84483+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:42.844836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:42.844838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.844 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/organizations/9ef329ad-0fb4-4e8a-8035-89acd959e76f/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"518.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bd3ac57a-da93-4c03-8588-90b4f0bbe1a6\"}\n"} +{"Time":"2022-12-07T09:15:42.844893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" templatepull_test.go:86: waiting for template version job ec38815c-e23c-412f-909d-d06f50e631a6\n"} +{"Time":"2022-12-07T09:15:42.84495+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.844953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.844955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.844 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"340.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e1dac23d-6e6a-405e-b93a-c4cd72e5f361\"}\n"} +{"Time":"2022-12-07T09:15:42.85243+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.85244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.852443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.852447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.852478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.852488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.852497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.852501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:42.852506+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.852508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.852513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.852569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.852591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.852609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.852782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.852807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.855456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.855 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"821dbe71-529c-4ec3-a19e-55c13b64fd29\"}\n"} +{"Time":"2022-12-07T09:15:42.855862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.855867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.855869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.855 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"338.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f2b01b55-8af7-427d-9058-84929f5e7b32\"}\n"} +{"Time":"2022-12-07T09:15:42.857688+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:42.857691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:42.857693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.857 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"329.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bd80feff-9f04-4c57-87c7-08702ed78ae8\"}\n"} +{"Time":"2022-12-07T09:15:42.869301+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.869309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.869312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.869 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cb1398db-ff7e-47ef-9888-6d293c9cce17\"}\n"} +{"Time":"2022-12-07T09:15:42.86932+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.869322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.869326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.869 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"346.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"963a3a7e-56af-4a84-864a-6cac07245f1c\"}\n"} +{"Time":"2022-12-07T09:15:42.869467+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.869478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.869481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.869 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"247.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ab28da2e-25e9-4e2e-be11-194db638d97e\"}\n"} +{"Time":"2022-12-07T09:15:42.870353+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:42.870358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:42.870361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.870 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33cc5f2e-54dd-4a5c-98a6-cda2a3776db0\"}\n"} +{"Time":"2022-12-07T09:15:42.880446+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.880458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.880461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4cfc9b26-7bc8-4a1a-8aff-8d950d19309e\"}\n"} +{"Time":"2022-12-07T09:15:42.880466+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.880467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.88047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4ddfe51a-a176-4716-98e8-acfece2e9b02\"}\n"} +{"Time":"2022-12-07T09:15:42.882108+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:42.882113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:42.882115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.882 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d8f5ed8a-e7a5-42a8-b109-ac6b8dc4b6a9\"}\n"} +{"Time":"2022-12-07T09:15:42.894283+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.894292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.894295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.894 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"494.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"096e4dc0-df62-4041-a13a-7efb0ea73a16\"}\n"} +{"Time":"2022-12-07T09:15:42.894392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.894402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.894404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.894 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c60e93bb-b5ff-4455-9113-eb8c0c7f42f3\"}\n"} +{"Time":"2022-12-07T09:15:42.894555+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.894567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.894569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.894 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f58a25b-47d0-4e8a-854e-5a1db5ccec40\"}\n"} +{"Time":"2022-12-07T09:15:42.895453+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:42.89546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:42.895465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.895 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"340.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5935c835-e0f7-4dc0-8fe1-955a5d08957d\"}\n"} +{"Time":"2022-12-07T09:15:42.903348+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.903359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.903363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:42.903369+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.903371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.903373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.903409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.903423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:42.903444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.903475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.903479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.903481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:42.903486+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.903487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.90349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.903553+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.90356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.903563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:42.903578+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.903581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.903584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.903588+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.90359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.903596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"size_bytes\": 2, \"path\": \"/tmp/TestWorkspaceAgentGoogleCloud3993542410/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.903623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentGoogleCloud3993542410/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.903648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentGoogleCloud3993542410/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.903666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:42.903764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:42.904567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.904571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.904573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.904 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"388.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f21aa0b2-57e5-458e-8084-f34f31e649c3\"}\n"} +{"Time":"2022-12-07T09:15:42.905411+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.905416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.905418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.905 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"81379658-486d-47ed-84ae-9875e752bf7f\"}\n"} +{"Time":"2022-12-07T09:15:42.907189+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:42.907193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:42.907195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.907 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"336.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1108ed79-524f-41a2-b2fa-e15cda599983\"}\n"} +{"Time":"2022-12-07T09:15:42.916945+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.916969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.916973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.916 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:42.916978+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:42.91698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:42.916983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.916 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} +{"Time":"2022-12-07T09:15:42.917099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} +{"Time":"2022-12-07T09:15:42.917133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:42.91718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.917194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.91722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.917244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/3166569989.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.917266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} +{"Time":"2022-12-07T09:15:42.917383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} +{"Time":"2022-12-07T09:15:42.918679+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.918685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.918688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.918 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e1df3fd9-cfca-4bfe-991e-23123782d8b6\"}\n"} +{"Time":"2022-12-07T09:15:42.919302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.919308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.919311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.919 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"332.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40057a66-1c8b-43a1-8653-267a6ca51eef\"}\n"} +{"Time":"2022-12-07T09:15:42.919576+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.919585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.919587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.919 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"336.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"56bf3c1d-1f09-4760-933f-ff6b2a9f7ba7\"}\n"} +{"Time":"2022-12-07T09:15:42.920353+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:42.920359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:42.920361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.920 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"065ea00b-067b-4469-a3e4-490dcb46fced\"}\n"} +{"Time":"2022-12-07T09:15:42.929214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:42.929218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:42.929221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.929 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:42.929735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.929742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.929745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.929 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"341d9173-abab-4111-b8ba-d5879d03ddb3\"}\n"} +{"Time":"2022-12-07T09:15:42.930414+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.93042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.930422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.930 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"332.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5da5b51c-3b08-4e22-b614-9e9b87b27c2a\"}\n"} +{"Time":"2022-12-07T09:15:42.932229+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:42.932233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:42.932235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c81ac86b-af93-4546-b7cb-bd199bb8f54e\"}\n"} +{"Time":"2022-12-07T09:15:42.942848+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:42.942853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:42.942856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.942 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:42.943498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.943506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.943509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.943 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0e50c886-ac85-4b47-98ae-22fa658b6e2c\"}\n"} +{"Time":"2022-12-07T09:15:42.944401+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.944406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.944409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.944 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d3a9e42a-0bba-4197-a8c7-2c07cf400d9c\"}\n"} +{"Time":"2022-12-07T09:15:42.944555+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.94456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.944564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.944 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1ba4067-0cf0-4573-a87d-15337ff0b32b\"}\n"} +{"Time":"2022-12-07T09:15:42.945431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:42.945437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:42.945439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.945 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a2a65f82-1b07-42d6-b1da-6db93a490387\"}\n"} +{"Time":"2022-12-07T09:15:42.952252+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.952262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.952265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.952 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"22.083µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:42.953893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.953901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.953905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.953 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.953911+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.953914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.953918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.953 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:42.953928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.953929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.953932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.953 [INFO]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"resource_name\": \"somename\", \"resource_type\": \"someinstance\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:42.954032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.953 [INFO]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"resource_name\": \"somename\", \"resource_type\": \"someinstance\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:42.95404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.953 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.954046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.953 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.954075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.954 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} +{"Time":"2022-12-07T09:15:42.9541+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.954105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.954109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.954 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:42.954557+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.954565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.954569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.954 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"404.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e284109a-0e37-4fd4-9a53-ae41f0b52fc4\"}\n"} +{"Time":"2022-12-07T09:15:42.955546+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.955554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.955558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.955 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"451.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"14804abf-ba82-4bc4-8a02-472702db9b61\"}\n"} +{"Time":"2022-12-07T09:15:42.955784+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.955789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.955792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.955 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/organizations/4d994c04-1e5d-4888-b3bb-45b97f28c20e/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"934.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ef60debe-7aab-4cd2-b006-06d3d3c3a8ca\"}\n"} +{"Time":"2022-12-07T09:15:42.9559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" agent_test.go:51: waiting for workspace build job ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\n"} +{"Time":"2022-12-07T09:15:42.957207+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:42.957212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:42.957215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.957 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d4db973f-3293-4b5e-9ca0-7763da849663\"}\n"} +{"Time":"2022-12-07T09:15:42.968144+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.968156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.968159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:42.968167+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:42.968171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:42.968174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} +{"Time":"2022-12-07T09:15:42.968276+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.968284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.96829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:42.968295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:42.968298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:42.9683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} +{"Time":"2022-12-07T09:15:42.968328+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.968336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.968339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:42.968391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"size_bytes\": 2, \"path\": \"/tmp/TestWorkspaceAgentAWS3412012430/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.968416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAWS3412012430/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.968452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAWS3412012430/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.968493+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:42.968603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:42.968717+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.968725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.968729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2090a947-5bab-42f9-937c-9f265a99b5fb\"}\n"} +{"Time":"2022-12-07T09:15:42.96944+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.969447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.969451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.969 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bb266257-6dcc-4fdf-b229-392fc629c7a5\"}\n"} +{"Time":"2022-12-07T09:15:42.969653+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.969661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.969664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.969 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"414.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"26b0e81d-e642-49aa-bd70-9f60c32aeee8\"}\n"} +{"Time":"2022-12-07T09:15:42.970551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:42.970556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:42.970559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.970 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"840b1f96-cb39-44ba-a603-de7535eb27ce\"}\n"} +{"Time":"2022-12-07T09:15:42.979425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:42.979432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:42.979435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:42.979517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:42.979587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:42.97961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateListListTemplates3295948017/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.979651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateListListTemplates3295948017/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.979696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateListListTemplates3295948017/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.97971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:42.979838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:42.980598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:42.980606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:42.980609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.980 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"418.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"29e8f358-56fe-48ff-b6c2-c09aa96d5a9f\"}\n"} +{"Time":"2022-12-07T09:15:42.981548+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:42.981553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:42.981556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.981 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e2e5fa1-ce1a-4765-8f09-0f7404461df0\"}\n"} +{"Time":"2022-12-07T09:15:42.982165+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:42.982173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:42.982192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"431.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"694cc33c-40a6-4165-9dbd-f58db1af0f50\"}\n"} +{"Time":"2022-12-07T09:15:42.993337+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:42.993348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:42.993352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:42.993487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:42.993538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"size_bytes\": 4096}\n"} +{"Time":"2022-12-07T09:15:42.993608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"size_bytes\": 40, \"path\": \"/tmp/TestTemplatePullToFile3821239648/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.993667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePullToFile3821239648/002/1.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.993708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePullToFile3821239648/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.993761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePullToFile3821239648/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:42.993789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:42.993988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:622\u003e\t(*Runner).runTemplateImportParse\tparse job logged\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"level\": \"TRACE\", \"output\": \"c7c8306b-331a-4111-b67f-6b8fface30c4\"}\n"} +{"Time":"2022-12-07T09:15:42.99403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:42.994215+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:42.994225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:42.994229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.994 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"719.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a7988d31-d4ff-4b33-83fe-1c2a3ecb778f\"}\n"} +{"Time":"2022-12-07T09:15:42.994595+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:42.994607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:42.994611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.994 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"560.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a38d2cb3-8a78-4733-9647-e4a676f9506d\"}\n"} +{"Time":"2022-12-07T09:15:42.994878+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:42.994888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:42.994896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.994 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"553.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f04ac4ac-93c9-4a17-823f-285d91896b84\"}\n"} +{"Time":"2022-12-07T09:15:42.995632+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:42.99564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:42.995647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.995 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"509µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd0fe3df-90ca-4392-ac60-8eec563de985\"}\n"} +{"Time":"2022-12-07T09:15:43.005184+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.005192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.005196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:43.005202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.005272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.005282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.005294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.005338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:43.005358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:43.005632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.005675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:43.005741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"545.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"535e24ab-756c-49cf-8df4-3a6405125852\"}\n"} +{"Time":"2022-12-07T09:15:43.006618+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.006636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.006639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.006 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"501.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bc10cfb7-89fa-41a9-be65-26e1c367618b\"}\n"} +{"Time":"2022-12-07T09:15:43.007233+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.007241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.007244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.007 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"481.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4768e8e9-db35-4d18-a8c6-333ca7d190cc\"}\n"} +{"Time":"2022-12-07T09:15:43.01607+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.016077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.016081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.016 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"33.083µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:43.018402+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.018411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.018416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} +{"Time":"2022-12-07T09:15:43.018426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.018471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.018518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.018532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.018575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} +{"Time":"2022-12-07T09:15:43.0187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} +{"Time":"2022-12-07T09:15:43.018716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:43.018722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:43.018811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:43.018821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:43.018827+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.018831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.018835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:43.018876+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.018879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.018883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"request_id\": \"041e3f9a-592d-4b53-aa7c-4e6513dcd54d\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:43.019015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"request_id\": \"041e3f9a-592d-4b53-aa7c-4e6513dcd54d\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:43.019032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.019055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.01906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"607.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f9c0df8-ae2b-4e2b-9bce-85065fac0672\"}\n"} +{"Time":"2022-12-07T09:15:43.019244+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.019267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.019272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.019 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.019278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.019281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.019285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"request_id\": \"041e3f9a-592d-4b53-aa7c-4e6513dcd54d\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:43.019385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"request_id\": \"041e3f9a-592d-4b53-aa7c-4e6513dcd54d\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:43.019699+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.019713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.019719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"627.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"30e2fdeb-5789-4906-af10-3644112009a1\"}\n"} +{"Time":"2022-12-07T09:15:43.019932+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.01994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.019944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"582.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b2ed9e4-c940-48a9-aa81-bf3643ee4448\"}\n"} +{"Time":"2022-12-07T09:15:43.020782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.020792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.020796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.020 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"583.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c969bad-02de-4cb4-9f93-49b2e30208cc\"}\n"} +{"Time":"2022-12-07T09:15:43.02942+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.029428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.029431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.029 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.875µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:43.029977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.029 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:43.030198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.030 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.030755+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.030764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.030769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.030 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"579.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b0f837de-e1b1-48c8-9512-839117ac7520\"}\n"} +{"Time":"2022-12-07T09:15:43.031716+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.031724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.031728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.031 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"580.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8b48258b-0670-49dc-84d5-f9dc7b1a8e13\"}\n"} +{"Time":"2022-12-07T09:15:43.032459+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.032473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.032477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"610.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f3c3083d-c9da-4420-9d07-d4a7455d4182\"}\n"} +{"Time":"2022-12-07T09:15:43.042924+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.042934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.042939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.042 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"10.541µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:43.044054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.044065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.044071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.043 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"736.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33818db9-0a2c-4c02-8101-9cc404d45a90\"}\n"} +{"Time":"2022-12-07T09:15:43.044251+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.044257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.044262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.04451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.044524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.044529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:43.044537+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.044541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.044545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.044 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.044555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.044 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:43.044675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"size_bytes\": 2, \"path\": \"/tmp/TestWorkspaceAgentAzure3749321051/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.044752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAzure3749321051/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.044768+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.044774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.044778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.044 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.044787+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.044792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.044796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAzure3749321051/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.044845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"workspace_name\": \"blissful-tu6\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:43.044983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.044994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.044999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"840.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5320cf4e-85f2-43f0-8318-880743f21d6e\"}\n"} +{"Time":"2022-12-07T09:15:43.045064+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.045073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.045113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"742.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eff7d965-9312-45bd-bfc4-f99d4890ce92\"}\n"} +{"Time":"2022-12-07T09:15:43.04512+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.045124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.045128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.045 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.045178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.045 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.045862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.045876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.045881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.045 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"683.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"964c7b38-9408-46a9-a352-be3665b00dc6\"}\n"} +{"Time":"2022-12-07T09:15:43.056152+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.056163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.056167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.056 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:43.056246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.056 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.056319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.056 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.056344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.056 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:43.056353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.056 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:43.056525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.056 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:43.058725+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.058827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.058836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.079625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e8d4805e-7e16-45f6-97aa-d2149efb5341\"}\n"} +{"Time":"2022-12-07T09:15:43.058845+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.058849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.058853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.559583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4690ba7c-273e-43d6-bfbe-9dd7af48de4c\"}\n"} +{"Time":"2022-12-07T09:15:43.059914+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.05993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.059938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.059 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.941084ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"7a9c64dd-82bd-443a-aac4-a764bc28f172\"}\n"} +{"Time":"2022-12-07T09:15:43.069621+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.069644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.06965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.069 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:43.069912+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.069929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.069934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.069 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} +{"Time":"2022-12-07T09:15:43.06994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.069944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.069947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.069 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.070234+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.070244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.070628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.069 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:186\u003e\t(*Runner).Run\tsending FailedJob\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} +{"Time":"2022-12-07T09:15:43.07064+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.070644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.070649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.069 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.070695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.070 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.070729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.070 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.070759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.070 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:43.070903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.070 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:43.071241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.071 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.071339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.071 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:43.071386+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.071396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.071401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.627667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b52978e8-e84c-45cf-b4e2-049d42e24858\"}\n"} +{"Time":"2022-12-07T09:15:43.071409+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.071413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.071418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.409709ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"8b9dcbff-8f35-4c3e-ab0d-0d10752376c5\"}\n"} +{"Time":"2022-12-07T09:15:43.071427+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.071431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.071434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"928.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"41d0d02f-5971-4b7c-aa59-8948ba66a103\"}\n"} +{"Time":"2022-12-07T09:15:43.071461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.071466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.07147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.680209ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"36a2bf51-0801-4349-97ac-e17efbaa630b\"}\n"} +{"Time":"2022-12-07T09:15:43.081185+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.081195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.0812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:43.081207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.081253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.081294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.081332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.081359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:43.081387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:43.081615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.081663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:43.081883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.081893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.081904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"701.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ddcfa25-fe15-4d1d-ae32-c723fb27e441\"}\n"} +{"Time":"2022-12-07T09:15:43.081974+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.081981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.08199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"755.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ec7db2fe-de87-4aa9-b950-17cf85d4e134\"}\n"} +{"Time":"2022-12-07T09:15:43.082355+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.082364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.082368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.082 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"591.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8f92a5fa-4331-444a-8824-b3a6afe07f0e\"}\n"} +{"Time":"2022-12-07T09:15:43.094346+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.094363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.094369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"588.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"73a1e2ef-db39-40c9-a718-0f34a7a95596\"}\n"} +{"Time":"2022-12-07T09:15:43.09468+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.09469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.094696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"615.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"56bfd724-346b-4c08-9669-1ab18d35c99f\"}\n"} +{"Time":"2022-12-07T09:15:43.094705+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.094712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.094715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:43.094761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.094782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.094851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.094864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"stage\": \"Parse parameters\", \"output\": \"c7c8306b-331a-4111-b67f-6b8fface30c4\"}\n"} +{"Time":"2022-12-07T09:15:43.094894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.094958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:43.094995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:43.09508+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.095092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.095097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"691.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ac1a528-d32c-4223-831f-42aab39feedd\"}\n"} +{"Time":"2022-12-07T09:15:43.095235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.095245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.09525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.095 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.095259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.095 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:43.09535+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.095359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.095364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.095 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.095375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.095 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.095409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.095 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.095447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.095 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.095915+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.095926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.09593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.095 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"722.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a177c4d-4f95-4583-ab55-9b8fd4176b04\"}\n"} +{"Time":"2022-12-07T09:15:43.105333+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.10535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.105355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/909b64ca-55ab-4c74-9114-5d967924ba50\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"903.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4b0a3373-4f17-4be2-8910-df46e1e54c92\"}\n"} +{"Time":"2022-12-07T09:15:43.105899+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.105908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.105914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"662.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0f9d9563-34a9-4e2a-9ae6-667333837868\"}\n"} +{"Time":"2022-12-07T09:15:43.106655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.106 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:43.10674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.106 [INFO]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"resource_name\": \"somename\", \"resource_type\": \"someinstance\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:43.106755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.106 [INFO]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"resource_name\": \"somename\", \"resource_type\": \"someinstance\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:43.10684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.106 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:43.106851+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.106856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.106868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.106 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"715µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b24d6a04-69e6-4d25-90b7-3d215b160310\"}\n"} +{"Time":"2022-12-07T09:15:43.10691+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.10692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.106925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.106 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:43.10699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.106 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} +{"Time":"2022-12-07T09:15:43.107525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.107537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.107542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.107 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"717.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c229970-ba1a-4269-8f57-9b9ab2ffafeb\"}\n"} +{"Time":"2022-12-07T09:15:43.119979+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.120006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.120013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.119 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"963.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"46b37f11-58be-41a9-8afe-74a6008abb9f\"}\n"} +{"Time":"2022-12-07T09:15:43.120021+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.120025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.120029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.119 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"687.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57b84223-395b-46fd-86c7-9f18cf04f668\"}\n"} +{"Time":"2022-12-07T09:15:43.120832+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.120845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.12085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"696.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"14933d5d-f40a-4d83-9ef8-c7b074826e27\"}\n"} +{"Time":"2022-12-07T09:15:43.121408+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.121415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.12142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:470\u003e\t(*Server).FailJob\tFailJob starting\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} +{"Time":"2022-12-07T09:15:43.121425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.121428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.121432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"642.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d8598951-e3fa-42ff-8e2f-b22400827abb\"}\n"} +{"Time":"2022-12-07T09:15:43.121444+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.121447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.121451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} +{"Time":"2022-12-07T09:15:43.121455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.121 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:191\u003e\t(*Runner).Run\tsent FailedJob\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} +{"Time":"2022-12-07T09:15:43.121459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} +{"Time":"2022-12-07T09:15:43.122282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/909b64ca-55ab-4c74-9114-5d967924ba50/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.020559709s\", \"status_code\": 101, \"latency_ms\": 1020, \"request_id\": \"041e3f9a-592d-4b53-aa7c-4e6513dcd54d\"}\n"} +{"Time":"2022-12-07T09:15:43.122296+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.122299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.122303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:43.122308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.122313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.122318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:43.122322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:43.122327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:43.122419+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.122428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.122434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.122 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/909b64ca-55ab-4c74-9114-5d967924ba50\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"704.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1be4fdb3-9658-4b2d-bb1b-854bd72d0fc1\"}\n"} +{"Time":"2022-12-07T09:15:43.123485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.123 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/909b64ca-55ab-4c74-9114-5d967924ba50\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"707.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5c51a2e3-ddb5-4e57-a6df-4c1a5acad55f\"}\n"} +{"Time":"2022-12-07T09:15:43.124531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.124 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/909b64ca-55ab-4c74-9114-5d967924ba50/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"714.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9a22df0a-8346-4a6a-bcb5-ca7db07bccdd\"}\n"} +{"Time":"2022-12-07T09:15:43.125489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.125 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/909b64ca-55ab-4c74-9114-5d967924ba50/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eaba0669-866a-4fe5-ad49-c80fe7adef09\"}\n"} +{"Time":"2022-12-07T09:15:43.126391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.126 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f239cea3-2326-4017-ac80-5595be6a4421\"}\n"} +{"Time":"2022-12-07T09:15:43.127311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.127 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"614.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"67e98185-41e5-4980-88d1-3db8efeb7f31\"}\n"} +{"Time":"2022-12-07T09:15:43.128961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.128 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.26325ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"c4f3d373-fcd7-4ee9-a381-42a9d0f363aa\"}\n"} +{"Time":"2022-12-07T09:15:43.129978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.129 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"620.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"944f7a16-3ec5-45f0-a8fa-900ad82246c1\"}\n"} +{"Time":"2022-12-07T09:15:43.130772+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.13078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.130793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.130 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"564.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"be26f17e-d18e-475a-8c88-59dd568166be\"}\n"} +{"Time":"2022-12-07T09:15:43.131787+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.131796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.131799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.131 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:43.131806+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.131817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.131822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.131 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"568.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ecc415cb-b6f6-4ce9-a0be-0221697c5760\"}\n"} +{"Time":"2022-12-07T09:15:43.131829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.131834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.131837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.131 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.131904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.131 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.131927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.131 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:43.131986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.131 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:43.132028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:43.132425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.132 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"657.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0eb0ae8d-aaee-4da9-8419-6f37e0c8400a\"}\n"} +{"Time":"2022-12-07T09:15:43.132439+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.132444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.132449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.132 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/organizations/97761f7a-09ce-4fc6-bf13-d8f709bf737b/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.229625ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"8ef7cbb8-9f5a-4d81-bd55-06489456b131\"}\n"} +{"Time":"2022-12-07T09:15:43.132573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" agent_test.go:167: waiting for workspace build job 0a2be663-5a42-4d36-8892-5f3a44d53efc\n"} +{"Time":"2022-12-07T09:15:43.144978+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.144995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.145019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.144 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"677.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8039c7a8-8283-4298-bff1-14f2740e2f37\"}\n"} +{"Time":"2022-12-07T09:15:43.145071+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.14508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.145091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.144 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"683.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f3adffb7-33f7-416b-9349-d6eca84a35db\"}\n"} +{"Time":"2022-12-07T09:15:43.1451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.145105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.14511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.144 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"697.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c1641e9-8a4f-4b76-819e-841f2182bf15\"}\n"} +{"Time":"2022-12-07T09:15:43.145463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.145473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.145478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:43.14549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.145539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.145589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:43.145653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:43.145712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.145723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.145729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.145744+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.145748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.145752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:43.145937+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.14595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.145957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.145966+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.145972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.145976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"671.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2466a378-915e-4f1f-89fe-51b2da01f164\"}\n"} +{"Time":"2022-12-07T09:15:43.145986+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.145991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.145995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.145 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.15789+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.157903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.157907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.157 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"649.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6ac9d7ab-2b4f-4865-b087-73a25c55eeb0\"}\n"} +{"Time":"2022-12-07T09:15:43.157969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.157976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.15798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.157 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"696.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7b85192-11f6-4d91-b247-dbc7aa793f2e\"}\n"} +{"Time":"2022-12-07T09:15:43.15863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.158643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.158648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"719.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5cd0004-764a-433c-b193-b71e998e3048\"}\n"} +{"Time":"2022-12-07T09:15:43.167649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.16769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.167739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.167 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.168029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.167 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.168038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.167 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:43.16866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.167 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.168677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.168 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.168685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.168 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.168692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.168 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"workspace_name\": \"silly-goldwasser1\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:43.168699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.168 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.168705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.168 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.169983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.169998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.170004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.169 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.2795ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ee4bd885-f04f-4288-b641-f80730cca3e6\"}\n"} +{"Time":"2022-12-07T09:15:43.170316+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.170324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.170329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.170 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"885.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"247bc17b-26d1-44d3-a739-8951a31aa716\"}\n"} +{"Time":"2022-12-07T09:15:43.171496+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.171508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.171515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.171 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"871.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"72db56f9-a583-4258-a9dc-ce016ecff8de\"}\n"} +{"Time":"2022-12-07T09:15:43.171524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.171528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.171533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.171 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"838.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ae9b221-db7b-4e58-91e1-d7b3266fbfc6\"}\n"} +{"Time":"2022-12-07T09:15:43.172412+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.172421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.172426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.172 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:43.172551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.172 [INFO]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"resource_name\": \"somename\", \"resource_type\": \"someinstance\", \"transition\": \"start\"}\n"} +{"Time":"2022-12-07T09:15:43.172562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.172 [INFO]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"resource_name\": \"somename\", \"resource_type\": \"someinstance\", \"transition\": \"stop\"}\n"} +{"Time":"2022-12-07T09:15:43.172656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.172 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:43.172667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.172 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:43.172852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.172 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} +{"Time":"2022-12-07T09:15:43.182689+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.182718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.182726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.182 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.067834ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0cbf1332-69cd-49a4-a35a-67af7cbb5ab5\"}\n"} +{"Time":"2022-12-07T09:15:43.182735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.182739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.182744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.182 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"798.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"05d55a71-3e75-4996-b903-3700127e948b\"}\n"} +{"Time":"2022-12-07T09:15:43.18328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.182 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:43.183294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.183 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:43.183301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.183 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:43.183307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.183 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} +{"Time":"2022-12-07T09:15:43.18428+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.184289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.184294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"920.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d505c386-7592-4288-ab73-a5a62e19f52c\"}\n"} +{"Time":"2022-12-07T09:15:43.185267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.18547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.185577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:43.185668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"size_bytes\": 2, \"path\": \"/tmp/TestWorkspaceAgentGoogleCloud3993542410/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.185737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentGoogleCloud3993542410/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.185808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentGoogleCloud3993542410/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.185876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"workspace_name\": \"gifted-hertz7\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:43.18608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.186152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.186 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.19944+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.199481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.199492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.195 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.248333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"6553f765-aa89-4e8d-8c2f-d4015e999234\"}\n"} +{"Time":"2022-12-07T09:15:43.199503+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.199509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.199516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.195 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.239917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bfd1cdfb-7eb4-4d49-9774-6d463a14df51\"}\n"} +{"Time":"2022-12-07T09:15:43.199526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.199532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.19954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.197 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.627334ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e285add1-d69d-48fa-9a80-0853293015f0\"}\n"} +{"Time":"2022-12-07T09:15:43.202293+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.202318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.202324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.199 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:43.202332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.199 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:43.202339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.199 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:43.202345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.200 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} +{"Time":"2022-12-07T09:15:43.202352+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.202356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.20236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.200 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/organizations/7b6b98bb-5412-4210-ad57-bfe4b3d6ee8a/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.89225ms\", \"status_code\": 201, \"latency_ms\": 3, \"request_id\": \"65f7ad80-3332-4e79-a952-cc9a3397d1be\"}\n"} +{"Time":"2022-12-07T09:15:43.204511+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.204542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.20455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.202 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"964.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0f8ce76b-45a4-45c4-ab58-158c06a063db\"}\n"} +{"Time":"2022-12-07T09:15:43.20456+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.204565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.20457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" agent_test.go:109: waiting for workspace build job 7d830772-f996-428b-b890-dc2c451b6c80\n"} +{"Time":"2022-12-07T09:15:43.204576+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.204581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.204586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.202 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.204592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.202 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.204624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.202 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.20463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.202 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.204644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.203 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.205054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.205066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.205072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.204 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/organizations/9ef329ad-0fb4-4e8a-8035-89acd959e76f/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.82575ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"348f1265-0de4-4990-8d4f-64acad88e597\"}\n"} +{"Time":"2022-12-07T09:15:43.208076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.099083ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"32aee547-781b-4bf7-a03e-40aad96f8cbc\"}\n"} +{"Time":"2022-12-07T09:15:43.208119+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.208124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.20813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.098917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0b1320fd-e681-4ccf-bc76-ed41d66a491e\"}\n"} +{"Time":"2022-12-07T09:15:43.21237+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.21238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.212385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"956.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fa6e8238-e852-49d6-89d0-11662bc3ba0b\"}\n"} +{"Time":"2022-12-07T09:15:43.212392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.212396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.2124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"996.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1f9d8cf-8032-4a84-bf58-700b4f64cc13\"}\n"} +{"Time":"2022-12-07T09:15:43.212407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.212411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.212415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.211 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/organizations/9ef329ad-0fb4-4e8a-8035-89acd959e76f/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.7235ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"46bedff0-8b1d-45d1-9558-2f417920328b\"}\n"} +{"Time":"2022-12-07T09:15:43.212481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.212497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.212504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.212 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/organizations/4c078594-ccaa-40a8-87cf-c5e6d3ec3a86/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.945583ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"16fe7424-8c95-459d-b4e8-5fb2b221fd6a\"}\n"} +{"Time":"2022-12-07T09:15:43.212639+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.212652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.212657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.212 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.212841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.212 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.21299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.212 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:43.213091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.212 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.213116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.213 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.213185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.213 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.213202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.213 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"workspace_name\": \"hungry-chatterjee0\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:43.213474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.213 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.213487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.213 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.213693+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.213702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.213708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.213 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"694.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b439d33f-09da-4937-9fa1-41c0a0a212d5\"}\n"} +{"Time":"2022-12-07T09:15:43.215346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.215 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/organizations/4c078594-ccaa-40a8-87cf-c5e6d3ec3a86/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.291208ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"d24d638c-57de-430a-be1e-0ee707b5047e\"}\n"} +{"Time":"2022-12-07T09:15:43.215524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" templatelist_test.go:25: waiting for template version job 73bfa419-0a02-43b2-8c86-971e0426881e\n"} +{"Time":"2022-12-07T09:15:43.218671+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.218683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.218688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.218 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"43.209µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"7c30cc3d-2e4b-4f2f-ad65-dd161a0aaa6b\"}\n"} +{"Time":"2022-12-07T09:15:43.219324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.218 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"41.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4aeb838-2e2e-448a-87b0-9031a02948c2\"}\n"} +{"Time":"2022-12-07T09:15:43.219341+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.219346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.219351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.219 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"813.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"37c2954a-7506-4869-a694-1268194a2c68\"}\n"} +{"Time":"2022-12-07T09:15:43.220348+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.220461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.22047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.219 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.220478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.219 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.220485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.219 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.220491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.219 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.220498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.220504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.220508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.220 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"735.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97a58884-d630-40d5-a946-eb5afed549a3\"}\n"} +{"Time":"2022-12-07T09:15:43.220527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.22053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.220535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.220 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.016542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"96e97f18-8207-40c2-9ed3-c9a1b1cda274\"}\n"} +{"Time":"2022-12-07T09:15:43.22138+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} +{"Time":"2022-12-07T09:15:43.221397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} +{"Time":"2022-12-07T09:15:43.221402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.221 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/organizations/9ef329ad-0fb4-4e8a-8035-89acd959e76f/templates/gifted-nightingale6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"620.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2510ce2d-9086-42b5-9339-70bb7cf5e579\"}\n"} +{"Time":"2022-12-07T09:15:43.222506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.222 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templates/2b2a4f24-93e5-4bc7-84dc-f493a6de0f80/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"728.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"36409854-84e7-413b-8115-36386d692885\"}\n"} +{"Time":"2022-12-07T09:15:43.2236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.223 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/files/d15c8d43-3741-486c-9692-ccbb678d37b4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"647.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e5259dbe-243c-43b1-a2e7-e327c6a9dfea\"}\n"} +{"Time":"2022-12-07T09:15:43.223943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" templatepull_test.go:118: 2022-12-07 08:15:43.223: cmd: matched \"already exists\" = \"\u003e \\\"/tmp/TestTemplatePullToFile3821239648/003/actual.tar\\\" already exists\"\n"} +{"Time":"2022-12-07T09:15:43.223959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" templatepull_test.go:119: 2022-12-07 08:15:43.223: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:43.224061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" ptytest.go:103: 2022-12-07 08:15:43.223: cmd: stdout: \"\u003e \\\"/tmp/TestTemplatePullToFile3821239648/003/actual.tar\\\" already exists, do you want to overwrite it? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:43.224463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" ptytest.go:80: 2022-12-07 08:15:43.224: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:43.224685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.224 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:43.226371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:43.226454+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.226467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.230516+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.23053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.230535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.229 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.23054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.229 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.230544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.230 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:43.230554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.230 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateListListTemplates3295948017/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.230559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.230 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateListListTemplates3295948017/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.230562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.230 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateListListTemplates3295948017/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.230565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.230 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.230658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.230 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:43.231264+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.23128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.231284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.230 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.324541ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c4fb7c3e-2cd9-4c40-b343-fd0ddfe45c82\"}\n"} +{"Time":"2022-12-07T09:15:43.232207+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.232239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.232409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.232 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"202.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"45c46ca6-9532-45b8-a661-cdfac2327a59\"}\n"} +{"Time":"2022-12-07T09:15:43.232945+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.232952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.232956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.232 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"896.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57aec3c1-06da-4f06-a6ac-10293fb80948\"}\n"} +{"Time":"2022-12-07T09:15:43.232962+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.232965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.232968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.232 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"82.791µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"be9d71f6-6613-4a12-b340-956035047fe2\"}\n"} +{"Time":"2022-12-07T09:15:43.233916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.233 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"665.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9decf74a-7a4d-4ec4-80ed-b6c36a1ed37b\"}\n"} +{"Time":"2022-12-07T09:15:43.234337+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.234374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.234386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.234 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"714.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"864636e4-0141-4cf8-aa82-352aac0d26db\"}\n"} +{"Time":"2022-12-07T09:15:43.235098+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.235113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.235118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/organizations/7dcd4d30-d852-4826-97b1-a1ada8075804/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"951.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f0769fc4-d104-43ea-85e1-ded3f868f9fd\"}\n"} +{"Time":"2022-12-07T09:15:43.235303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" templatepull_test.go:48: waiting for template version job f7825a2e-9821-42c5-a05b-d9fda1b29ea0\n"} +{"Time":"2022-12-07T09:15:43.236441+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.23645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.236454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.236 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.236472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.236 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.236503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.236 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.23653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.236 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.242908+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.242918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.242922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.242 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"645.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a14d651-3a5f-45f5-bf75-c6843d20690d\"}\n"} +{"Time":"2022-12-07T09:15:43.244222+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.244229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.244231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.244 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"448.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d292c200-26f8-4805-b017-888a9bfa2efd\"}\n"} +{"Time":"2022-12-07T09:15:43.245044+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.245049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.245052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.244 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"503.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae96c641-48e4-43aa-9b4f-46bd6b197b0b\"}\n"} +{"Time":"2022-12-07T09:15:43.253648+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.253663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.253666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.253 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.253668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.253 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.253672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.253 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.253674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.253 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.253744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.253 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.253801+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.253825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.253827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.253 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"376.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"51ed1043-94f1-46af-9188-73f21a9b4e6a\"}\n"} +{"Time":"2022-12-07T09:15:43.256615+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.256621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.256623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.256 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"285.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40ee9c4b-068d-48aa-b73b-0ac7e318b990\"}\n"} +{"Time":"2022-12-07T09:15:43.258217+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.258224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.258234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.258 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a29ed1a4-7113-4096-aba8-59614ed92bbb\"}\n"} +{"Time":"2022-12-07T09:15:43.261334+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.261347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.26135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"448.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0efb591e-3387-417a-adf3-d2f21804701a\"}\n"} +{"Time":"2022-12-07T09:15:43.263862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.263874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.263877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.263 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.263883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.263 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.263886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.263 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.26393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.263 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.266267+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.266272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.266275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.266 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"332.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4464d04-f61d-4a6c-b877-4c5e438ade47\"}\n"} +{"Time":"2022-12-07T09:15:43.268579+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.268584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.268587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.268 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"289µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7997f901-0e12-4b45-8636-971c2103243e\"}\n"} +{"Time":"2022-12-07T09:15:43.269425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.269437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.26944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.269 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"317.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"674eeee8-7ea1-4fa1-9c68-6917b2f40f0e\"}\n"} +{"Time":"2022-12-07T09:15:43.269816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.269 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.27003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.269 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.270035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.269 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.27926+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.279276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.279278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.279 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bbbea92c-524e-4163-96ba-62dbd7679fb8\"}\n"} +{"Time":"2022-12-07T09:15:43.2808+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.28081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.280812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.280 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.280977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.280 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.281393+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.281398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.2814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.281 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dfee8afa-56c1-4ec7-8456-103d273c6153\"}\n"} +{"Time":"2022-12-07T09:15:43.283114+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.283118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.28312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.283 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"99531632-12db-49e8-9d08-660dca40136b\"}\n"} +{"Time":"2022-12-07T09:15:43.285892+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.285897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.285898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"254µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"63cbf1d4-ce07-4898-81e0-063da82e0bf0\"}\n"} +{"Time":"2022-12-07T09:15:43.286729+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.28674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.286743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.286 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.286852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.286 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.286873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.286 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.291667+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.291676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.291679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.291 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"70e650ec-3439-4be1-998a-c45d4fb59d7f\"}\n"} +{"Time":"2022-12-07T09:15:43.293453+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.293456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.293458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.293 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"260.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7b47e75a-894c-4476-b53b-9c4b688b422d\"}\n"} +{"Time":"2022-12-07T09:15:43.294344+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.294351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.294353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.294 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"301.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f92031d6-1490-480e-b148-0f5d4525c215\"}\n"} +{"Time":"2022-12-07T09:15:43.304243+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.304267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.304273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.303 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.304279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.304 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:43.304284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.304 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.304289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.304 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} +{"Time":"2022-12-07T09:15:43.304548+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.304553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.304557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.304 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"921.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9158ec0c-8c11-4458-a6bf-5d675928705d\"}\n"} +{"Time":"2022-12-07T09:15:43.307156+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.307184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.307191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.307 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"809.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"180e0cb2-138b-425d-b422-8ada599af7c0\"}\n"} +{"Time":"2022-12-07T09:15:43.309465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.309481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.309487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.309 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.342958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"652c1acb-5f8f-4572-8178-bc69d34b977c\"}\n"} +{"Time":"2022-12-07T09:15:43.31141+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.311423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.311429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.311 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"709.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4b551dda-f5e1-4e76-bf98-c9a7021372fd\"}\n"} +{"Time":"2022-12-07T09:15:43.311815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.311823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.311828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" agent_test.go:63: waiting for workspace agents (workspace 3ce79da1-0253-457b-805e-b3d89ae81a3f)\n"} +{"Time":"2022-12-07T09:15:43.314411+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.314425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.314427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.314 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.314509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.314 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.314539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.314 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.316111+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.316116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.316118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.316 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"289.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eb0e8877-ce00-48c5-9f76-c7445b6e2d6b\"}\n"} +{"Time":"2022-12-07T09:15:43.318863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.318878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.318884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"611.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db138ebb-8ed4-446a-b57e-865fdea5e794\"}\n"} +{"Time":"2022-12-07T09:15:43.319516+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.31955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.319557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.319 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"550.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ce9c1e2-9fa4-414d-98c2-c221f27202d2\"}\n"} +{"Time":"2022-12-07T09:15:43.320226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.320 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.32024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.320 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.320272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.320 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.320314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.320 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.320389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.320 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.328673+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.328677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.328679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.32873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.328767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:43.328803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.328832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.328854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.328885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/3166569989.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.328919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.329042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} +{"Time":"2022-12-07T09:15:43.329049+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.329051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.329053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.329 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4aeac218-5883-4834-87c1-cfb9ba0f4579\"}\n"} +{"Time":"2022-12-07T09:15:43.330877+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.330891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.330894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.330 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:43.330999+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.331008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.331013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.330 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.331022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.330 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.331039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.331 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.331064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.331 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.331091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.331 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.33113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.331 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.33116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.331 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.331325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.331 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.331374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.331 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.333228+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.333232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.333235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.333 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"222d6117-5d1f-4d8c-a6c8-dbd768ea55d5\"}\n"} +{"Time":"2022-12-07T09:15:43.336259+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.336268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.336272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.336 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"446.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8ff715f9-ee39-45b2-b0ab-3882c4af1f8f\"}\n"} +{"Time":"2022-12-07T09:15:43.337003+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.33701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.337013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.336 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.337033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.336 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.337058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.337 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.337087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.337 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.337158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.337 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.337584+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.337592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.337595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.337 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"557.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4327df01-0edb-4261-b457-4c4a77b85b9d\"}\n"} +{"Time":"2022-12-07T09:15:43.337733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.341449+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.341456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.341459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.341 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d8da5c44-ce82-4982-8983-76986bc05318\"}\n"} +{"Time":"2022-12-07T09:15:43.343591+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.343596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.343599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.343 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"55aa054b-6d75-47f7-a311-342daf935abb\"}\n"} +{"Time":"2022-12-07T09:15:43.344253+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.344257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.344259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.344 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"726087c8-289e-423b-9d01-11c36cb15c00\"}\n"} +{"Time":"2022-12-07T09:15:43.35421+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.354218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.354221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.354 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"385.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"04967576-2537-4a6b-a965-7105dbcc9998\"}\n"} +{"Time":"2022-12-07T09:15:43.358524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.35853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.358533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.358 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"359.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39d712ca-55bf-400b-b8b6-a00c589652e0\"}\n"} +{"Time":"2022-12-07T09:15:43.360944+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.360949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.360951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.360 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b44ce1b8-131c-4d40-9aac-fe02a44917f2\"}\n"} +{"Time":"2022-12-07T09:15:43.362382+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.362387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.362389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6f11c8eb-f6d0-4ca0-874c-cd89a89a5127\"}\n"} +{"Time":"2022-12-07T09:15:43.362511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.364919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.364923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.364925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.364 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.364929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.364 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.36495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.364 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.364968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.364 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.365024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.364 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.366027+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.36603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.366032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.365 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"291.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6835e2e6-a1b6-4fbc-ac9d-e930c0a40931\"}\n"} +{"Time":"2022-12-07T09:15:43.368614+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.368618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.368621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.368 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"27a74a74-e83a-4ba3-a050-ce8829342f84\"}\n"} +{"Time":"2022-12-07T09:15:43.369289+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.369293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.369295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.369 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7fc92d4-a4e6-40b7-b44d-8163cc527471\"}\n"} +{"Time":"2022-12-07T09:15:43.370607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.370 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.370626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.370 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.370653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.370 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.370657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.370 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.370708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.370 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.378902+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.378919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.378928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e3a5b2a0-b9f4-4d9a-baa6-8183601f39a2\"}\n"} +{"Time":"2022-12-07T09:15:43.379151+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.379155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.379157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.379 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.379272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.379 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.381172+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.381179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.381182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.381266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.381314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"size_bytes\": 4096}\n"} +{"Time":"2022-12-07T09:15:43.381349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"size_bytes\": 40, \"path\": \"/tmp/TestTemplatePullStdout4132114214/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.381558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePullStdout4132114214/002/1.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.38176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePullStdout4132114214/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.381892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePullStdout4132114214/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.381909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.382162+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.382171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.382176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.382 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.382244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.382 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.382253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.382 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.382307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.382 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.382348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.382 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.382358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.382 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.382601+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.38261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.382612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.382 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:622\u003e\t(*Runner).runTemplateImportParse\tparse job logged\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"level\": \"TRACE\", \"output\": \"835db55d-053b-4959-9b6f-f86024098153\"}\n"} +{"Time":"2022-12-07T09:15:43.382726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.382 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:43.383495+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.383501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.383503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.383 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"609.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f30db63d-2312-448e-8250-eb5d11b1e8da\"}\n"} +{"Time":"2022-12-07T09:15:43.387662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.387 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.387675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.387 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.387705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.387 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.387773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.387 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.387929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.387 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.388445+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.388449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.388451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.388 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"722.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6fea0ae0-1092-41e7-b6a7-487dc0a25759\"}\n"} +{"Time":"2022-12-07T09:15:43.388524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.388533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.388535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.388 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"786.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2cf53d88-7f5f-4e83-b980-219693e73920\"}\n"} +{"Time":"2022-12-07T09:15:43.388655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.39115+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.391155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.391158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.391 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c739c039-62e9-4115-b664-7fb064d388ac\"}\n"} +{"Time":"2022-12-07T09:15:43.393589+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.393594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.393597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.393 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b488f3a-5d97-4a3d-9aef-ce244c1b7cda\"}\n"} +{"Time":"2022-12-07T09:15:43.394274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.394281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.394283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.394 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd8f7f71-dcef-45fc-858f-e41db38f955b\"}\n"} +{"Time":"2022-12-07T09:15:43.404095+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.404101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.404102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.404 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"306.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"451b0211-5f21-4092-9171-207457247b8c\"}\n"} +{"Time":"2022-12-07T09:15:43.408427+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.408433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.408435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.408 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"270.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a3e8312-936b-4e24-a34e-0254f67c00a3\"}\n"} +{"Time":"2022-12-07T09:15:43.410816+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.410819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.41082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"227.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e2c21c18-6c14-4290-8a95-27f738e29562\"}\n"} +{"Time":"2022-12-07T09:15:43.412325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.412331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.412332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40a416d8-30dc-4192-84d8-0de0f85fb5ce\"}\n"} +{"Time":"2022-12-07T09:15:43.41241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.415473+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.415477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.415479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.415 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.415484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.415 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.415502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.415 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.415522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.415 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.415553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.415866+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.41587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.415872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"228.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a8703a2d-5a48-4d95-9e2f-a1719d6cab77\"}\n"} +{"Time":"2022-12-07T09:15:43.418494+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.418497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.418499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.418 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"240.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3342bfe-e04b-4607-b0a9-2d1b9a4c7fb8\"}\n"} +{"Time":"2022-12-07T09:15:43.419216+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.419219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.419221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.419 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"269.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d6f7f4b9-981e-425c-8ead-4f4c74a31bdf\"}\n"} +{"Time":"2022-12-07T09:15:43.420956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.420 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.420961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.420 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.421002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.420 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} +{"Time":"2022-12-07T09:15:43.428727+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.428733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.428735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.428 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"21.125µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:43.428931+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.428934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.428936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.428 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"87ef07b6-706e-4284-ad28-d63d80e69c7e\"}\n"} +{"Time":"2022-12-07T09:15:43.429277+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.429281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.429282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.429293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.429304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.429322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.429337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.429347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.429365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.429398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:43.429408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:43.429425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:43.429465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:43.429469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:43.429475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.42948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.4295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:43.42954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:43.429571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:43.432777+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.432782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.432784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.432 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.432786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.432788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.432789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.432 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.432792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.432 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.432796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.432 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.432799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.432 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} +{"Time":"2022-12-07T09:15:43.432802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.432803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.432805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.432 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.433051+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.433055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.433057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.433 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a6c44b7-46a4-44ae-af84-d8ab81206969\"}\n"} +{"Time":"2022-12-07T09:15:43.435873+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.435877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.435879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9c3e57dd-4351-4ff4-aa23-675ae30b500b\"}\n"} +{"Time":"2022-12-07T09:15:43.437243+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.437248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.43725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.437 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"890a4f69-6b1a-406c-a2fd-3839f515460c\"}\n"} +{"Time":"2022-12-07T09:15:43.437338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.438095+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.438098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.4381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.438 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.43811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.438 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:43.438135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.438 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.438161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.438 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} +{"Time":"2022-12-07T09:15:43.441156+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.441159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.441161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.441 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"232.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"202f01ae-149e-4f37-9b63-73eac15d17df\"}\n"} +{"Time":"2022-12-07T09:15:43.441643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.441 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/organizations/4c078594-ccaa-40a8-87cf-c5e6d3ec3a86/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"253.291µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"847b10fc-0b76-4f44-90bb-7cf8086dafda\"}\n"} +{"Time":"2022-12-07T09:15:43.443479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.443483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.443485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.443 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9832fb6e-9898-444e-9d2e-9055d4e717e5\"}\n"} +{"Time":"2022-12-07T09:15:43.443676+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.44368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.443681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.443 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"78747851-56d5-49e9-a872-023e402ceea7\"}\n"} +{"Time":"2022-12-07T09:15:43.443841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.443 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7322c60f-3b83-4232-8830-01cb46a9e51c\"}\n"} +{"Time":"2022-12-07T09:15:43.444248+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.444252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.444254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.444 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c8ace941-2644-4870-9bf9-1add660b7b54\"}\n"} +{"Time":"2022-12-07T09:15:43.444278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.44428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.444282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.444 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c10e390-3e9b-4ea3-b8fc-c852b658d71a\"}\n"} +{"Time":"2022-12-07T09:15:43.444467+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.44447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.444472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/003/.ssh/config\n"} +{"Time":"2022-12-07T09:15:43.444552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:551: Wrote 320\n"} +{"Time":"2022-12-07T09:15:43.446279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.446 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.834µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"9bd8c838-f908-4a5b-8d6e-eb590c5c9039\"}\n"} +{"Time":"2022-12-07T09:15:43.446409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.446 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a560679a-c9cc-46bb-bed0-4ebb0af8d4d9\"}\n"} +{"Time":"2022-12-07T09:15:43.446733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \"\u003e New options differ from previous options:\"\n"} +{"Time":"2022-12-07T09:15:43.446738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:43.446741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \" New options:\"\n"} +{"Time":"2022-12-07T09:15:43.446743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \" * ssh-option: ForwardAgent=yes\"\n"} +{"Time":"2022-12-07T09:15:43.446745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:43.446747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \" Previous options: none\"\n"} +{"Time":"2022-12-07T09:15:43.446756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:43.4469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:575: 2022-12-07 08:15:43.446: cmd: matched \"Use new options?\" = \"\u003e New options differ from previous options:\\r\\n\\r\\n New options:\\r\\n * ssh-option: ForwardAgent=yes\\r\\n\\r\\n Previous options: none\\r\\n\\r\\n Use new options?\"\n"} +{"Time":"2022-12-07T09:15:43.446906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:576: 2022-12-07 08:15:43.446: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:43.446909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \" Use new options? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:43.446917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:43.449698+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} +{"Time":"2022-12-07T09:15:43.449702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} +{"Time":"2022-12-07T09:15:43.449704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/organizations/4c078594-ccaa-40a8-87cf-c5e6d3ec3a86/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.236125ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"d6b76ebc-d387-4238-9eeb-2d1993247834\"}\n"} +{"Time":"2022-12-07T09:15:43.449876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" ptytest.go:103: 2022-12-07 08:15:43.449: cmd: stdout: \"NAME LAST UPDATED USED BY \"\n"} +{"Time":"2022-12-07T09:15:43.449882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" ptytest.go:103: 2022-12-07 08:15:43.449: cmd: stdout: \"bold-perlman7 December 7, 2022 - active developers \"\n"} +{"Time":"2022-12-07T09:15:43.449884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" ptytest.go:103: 2022-12-07 08:15:43.449: cmd: stdout: \"dreamy-ptolemy9 December 7, 2022 - active developers \"\n"} +{"Time":"2022-12-07T09:15:43.449887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" templatelist_test.go:47: 2022-12-07 08:15:43.449: cmd: matched \"bold-perlman7\" = \"NAME LAST UPDATED USED BY \\r\\nbold-perlman7\"\n"} +{"Time":"2022-12-07T09:15:43.449889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" templatelist_test.go:47: 2022-12-07 08:15:43.449: cmd: matched \"dreamy-ptolemy9\" = \" December 7, 2022 - active developers \\r\\ndreamy-ptolemy9\"\n"} +{"Time":"2022-12-07T09:15:43.449914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" ptytest.go:80: 2022-12-07 08:15:43.449: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:43.449979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.449 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:43.450532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:43.450545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList","Output":"--- PASS: TestTemplateList (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.450548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" --- PASS: TestTemplateList/NoTemplates (0.01s)\n"} +{"Time":"2022-12-07T09:15:43.45055+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Elapsed":0.01} +{"Time":"2022-12-07T09:15:43.450553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" --- PASS: TestTemplateList/ListTemplates (0.62s)\n"} +{"Time":"2022-12-07T09:15:43.450555+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Elapsed":0.62} +{"Time":"2022-12-07T09:15:43.450557+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateList","Elapsed":0} +{"Time":"2022-12-07T09:15:43.450559+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract"} +{"Time":"2022-12-07T09:15:43.45056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":"=== CONT TestTemplateInit/Extract\n"} +{"Time":"2022-12-07T09:15:43.451751+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.451764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.451767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.451 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.122084ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"edd80e0b-0466-4730-8475-29adaf18f710\"}\n"} +{"Time":"2022-12-07T09:15:43.452466+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract"} +{"Time":"2022-12-07T09:15:43.452474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":"=== CONT TestTemplateInit/Extract\n"} +{"Time":"2022-12-07T09:15:43.452476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \"A template defines infrastructure as code to be provisioned for individual \"\n"} +{"Time":"2022-12-07T09:15:43.452478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \"developer workspaces. Select an example to be copied to the active directory: \"\n"} +{"Time":"2022-12-07T09:15:43.452479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:43.452481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \"Extracting \\x1b[;maws-ecs-container\\x1b[0m to ./../../../../../tmp/TestTemplateInitExtract335406681/001...\"\n"} +{"Time":"2022-12-07T09:15:43.452686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \"Create your template by running:\"\n"} +{"Time":"2022-12-07T09:15:43.452693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \" \"\n"} +{"Time":"2022-12-07T09:15:43.452695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \" \\x1b[;mcd \"\n"} +{"Time":"2022-12-07T09:15:43.452696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \" ./../../../../../tmp/TestTemplateInitExtract335406681/001 \"\n"} +{"Time":"2022-12-07T09:15:43.452698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \" \u0026\u0026 coder templates create\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:43.452705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:43.452708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \"Examples provide a starting point and are expected to be edited! 🎨 \"\n"} +{"Time":"2022-12-07T09:15:43.45271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:80: 2022-12-07 08:15:43.452: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:43.453071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit","Output":"--- PASS: TestTemplateInit (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.453075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" --- PASS: TestTemplateInit/Extract (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.453078+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Elapsed":0} +{"Time":"2022-12-07T09:15:43.45308+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit","Elapsed":0} +{"Time":"2022-12-07T09:15:43.453081+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile"} +{"Time":"2022-12-07T09:15:43.453082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile","Output":"=== CONT TestCreateParameterMapFromFile/CreateParameterMapFromFile\n"} +{"Time":"2022-12-07T09:15:43.453172+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.453176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.453177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.453 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"414.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6f3795bf-cf0f-4253-ba16-2658527b607c\"}\n"} +{"Time":"2022-12-07T09:15:43.453271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} +{"Time":"2022-12-07T09:15:43.453275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:43.453277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \" * Use new SSH options\"\n"} +{"Time":"2022-12-07T09:15:43.45328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:43.453282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:43.453349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:575: 2022-12-07 08:15:43.453: cmd: matched \"Continue?\" = \" (\\x1b[1myes\\x1b[0m/no) yes\\r\\n\\r\\n\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Use new SSH options\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} +{"Time":"2022-12-07T09:15:43.453355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:576: 2022-12-07 08:15:43.453: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:43.45342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:43.453425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:43.453444+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename"} +{"Time":"2022-12-07T09:15:43.453448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename","Output":"=== CONT TestCreateParameterMapFromFile/WithInvalidFilename\n"} +{"Time":"2022-12-07T09:15:43.45348+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML"} +{"Time":"2022-12-07T09:15:43.453485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML","Output":"=== CONT TestCreateParameterMapFromFile/WithInvalidYAML\n"} +{"Time":"2022-12-07T09:15:43.453642+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.453649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.453654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} +{"Time":"2022-12-07T09:15:43.453657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"For example, try running:\"\n"} +{"Time":"2022-12-07T09:15:43.453659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:43.453663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"\\t$ ssh coder.silly-goldwasser1\"\n"} +{"Time":"2022-12-07T09:15:43.453696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:80: 2022-12-07 08:15:43.453: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:43.453736+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.453741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.453743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.453 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"425.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"38eab6a1-7915-4aab-b31b-a0cdd330eaf9\"}\n"} +{"Time":"2022-12-07T09:15:43.453782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.453785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.453788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.453 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:43.453916+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples"} +{"Time":"2022-12-07T09:15:43.453922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples","Output":"=== CONT Test_formatExamples/No_examples\n"} +{"Time":"2022-12-07T09:15:43.453924+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename"} +{"Time":"2022-12-07T09:15:43.453925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename","Output":"=== CONT TestCreateParameterMapFromFile/WithEmptyFilename\n"} +{"Time":"2022-12-07T09:15:43.453928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile","Output":"--- PASS: TestCreateParameterMapFromFile (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.45393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile","Output":" --- PASS: TestCreateParameterMapFromFile/CreateParameterMapFromFile (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.453932+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile","Elapsed":0} +{"Time":"2022-12-07T09:15:43.453935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename","Output":" --- PASS: TestCreateParameterMapFromFile/WithInvalidFilename (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.453936+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename","Elapsed":0} +{"Time":"2022-12-07T09:15:43.453938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML","Output":" --- PASS: TestCreateParameterMapFromFile/WithInvalidYAML (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.45394+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML","Elapsed":0} +{"Time":"2022-12-07T09:15:43.453942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename","Output":" --- PASS: TestCreateParameterMapFromFile/WithEmptyFilename (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.453943+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename","Elapsed":0} +{"Time":"2022-12-07T09:15:43.453944+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile","Elapsed":0} +{"Time":"2022-12-07T09:15:43.453945+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands"} +{"Time":"2022-12-07T09:15:43.453946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands","Output":"=== CONT Test_formatExamples/No_description_outputs_commands\n"} +{"Time":"2022-12-07T09:15:43.453949+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples"} +{"Time":"2022-12-07T09:15:43.45395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples","Output":"=== CONT Test_formatExamples/Output_examples\n"} +{"Time":"2022-12-07T09:15:43.453952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples","Output":"--- PASS: Test_formatExamples (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.453954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples","Output":" --- PASS: Test_formatExamples/No_examples (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.453956+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples","Elapsed":0} +{"Time":"2022-12-07T09:15:43.453957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands","Output":" --- PASS: Test_formatExamples/No_description_outputs_commands (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.453959+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands","Elapsed":0} +{"Time":"2022-12-07T09:15:43.453961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples","Output":" --- PASS: Test_formatExamples/Output_examples (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.453964+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples","Elapsed":0} +{"Time":"2022-12-07T09:15:43.453966+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples","Elapsed":0} +{"Time":"2022-12-07T09:15:43.453967+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges"} +{"Time":"2022-12-07T09:15:43.453969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges","Output":"=== CONT Test_parsePortForwards/TCP_mixed_ports_and_ranges\n"} +{"Time":"2022-12-07T09:15:43.453971+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range"} +{"Time":"2022-12-07T09:15:43.453973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range","Output":"=== CONT Test_parsePortForwards/Bad_port_range\n"} +{"Time":"2022-12-07T09:15:43.453975+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range"} +{"Time":"2022-12-07T09:15:43.453978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range","Output":"=== CONT Test_parsePortForwards/Bad_dest_port_range\n"} +{"Time":"2022-12-07T09:15:43.45398+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range"} +{"Time":"2022-12-07T09:15:43.453982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range","Output":"=== CONT Test_parsePortForwards/UDP_with_port_range\n"} +{"Time":"2022-12-07T09:15:43.453985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards","Output":"--- PASS: Test_parsePortForwards (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.453986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges","Output":" --- PASS: Test_parsePortForwards/TCP_mixed_ports_and_ranges (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.453995+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges","Elapsed":0} +{"Time":"2022-12-07T09:15:43.453996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range","Output":" --- PASS: Test_parsePortForwards/Bad_port_range (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.453998+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range","Elapsed":0} +{"Time":"2022-12-07T09:15:43.453999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range","Output":" --- PASS: Test_parsePortForwards/Bad_dest_port_range (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.454+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range","Elapsed":0} +{"Time":"2022-12-07T09:15:43.454003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range","Output":" --- PASS: Test_parsePortForwards/UDP_with_port_range (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.454005+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range","Elapsed":0} +{"Time":"2022-12-07T09:15:43.454007+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards","Elapsed":0} +{"Time":"2022-12-07T09:15:43.454008+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.454009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.454837+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} +{"Time":"2022-12-07T09:15:43.454842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} +{"Time":"2022-12-07T09:15:43.454844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:43.454865+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.454868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.456391+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.456395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.456398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.456 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"85.084µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7f15fea3-771f-48a7-8009-6429058f8b2e\"}\n"} +{"Time":"2022-12-07T09:15:43.456581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.456 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"34.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"df8e5ee7-2e39-42b8-afab-04e6717f480e\"}\n"} +{"Time":"2022-12-07T09:15:43.457098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"eeb16db1-fa30-4bbf-bcdd-38f57db696d4\"}\n"} +{"Time":"2022-12-07T09:15:43.45712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.457128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.45713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"65.083µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8a9da1a2-839d-4995-9539-cd19ef491477\"}\n"} +{"Time":"2022-12-07T09:15:43.457317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"47.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e0ea9aff-90da-4681-945e-e36edaa14411\"}\n"} +{"Time":"2022-12-07T09:15:43.457744+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.45775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.457752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/organizations/046c8003-1d27-4678-bd29-73003e99045c/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"486.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f399023d-a6e4-4d71-83ef-0cb3ac259f72\"}\n"} +{"Time":"2022-12-07T09:15:43.457802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.457805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.457806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"333.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4bc68276-4a59-4725-95cf-b6ffc4c8d3d0\"}\n"} +{"Time":"2022-12-07T09:15:43.457823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.457825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.457827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" templateedit_test.go:26: waiting for template version job e81eb357-6627-4da1-b686-52b1c2e636e6\n"} +{"Time":"2022-12-07T09:15:43.458394+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.458398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.458399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.458 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/organizations/dcac5162-993e-4a9a-9727-4e1afb1d6761/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"449.584µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"54d89342-fd18-4d2a-a06c-5ee98ccaf03b\"}\n"} +{"Time":"2022-12-07T09:15:43.45845+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.458452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.458454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.458 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e2004431-97ac-43e9-97d4-128166510ef1\"}\n"} +{"Time":"2022-12-07T09:15:43.458476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.458481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.458484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" templateversions_test.go:20: waiting for template version job 9e48682a-5d86-4f29-989f-cfe87439157d\n"} +{"Time":"2022-12-07T09:15:43.459773+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.459778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.459781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" agent_test.go:179: waiting for workspace agents (workspace 51122e25-bf32-4d6b-8553-329b17e25956)\n"} +{"Time":"2022-12-07T09:15:43.461461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.461465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.461467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.461 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"382.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c7dd729-5399-4390-9137-2bf45f722f65\"}\n"} +{"Time":"2022-12-07T09:15:43.46271+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.462731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.462744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.462 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f78affc6-4d05-4e60-a073-bd11b254c10b\"}\n"} +{"Time":"2022-12-07T09:15:43.462807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.466026+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} +{"Time":"2022-12-07T09:15:43.466029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} +{"Time":"2022-12-07T09:15:43.466031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.465 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.466034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.466 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.466052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.466 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} +{"Time":"2022-12-07T09:15:43.469152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.469 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"396.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e120bfa0-dc06-4e56-b999-0ac8e0d3261f\"}\n"} +{"Time":"2022-12-07T09:15:43.46935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/003/.ssh/config\n"} +{"Time":"2022-12-07T09:15:43.469393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" configssh_test.go:551: Wrote 28\n"} +{"Time":"2022-12-07T09:15:43.471017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.470 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"4842e5dc-2269-40a1-9b23-84e3e23deb8e\"}\n"} +{"Time":"2022-12-07T09:15:43.471193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"805ebac2-73a6-4e1b-ada6-d2043f253c0b\"}\n"} +{"Time":"2022-12-07T09:15:43.476574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.476 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.158708ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"6409a968-64d5-4329-bd32-9e68e359e025\"}\n"} +{"Time":"2022-12-07T09:15:43.477057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.477 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"312.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"89c370bf-09fc-4673-a4e2-e18a2a305c1a\"}\n"} +{"Time":"2022-12-07T09:15:43.477158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} +{"Time":"2022-12-07T09:15:43.477161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:43.477163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/003/.ssh/config\"\n"} +{"Time":"2022-12-07T09:15:43.477165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:43.477168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" configssh_test.go:575: 2022-12-07 08:15:43.477: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} +{"Time":"2022-12-07T09:15:43.477184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" configssh_test.go:576: 2022-12-07 08:15:43.477: cmd: stdin: \"yes\\r\"\n"} +{"Time":"2022-12-07T09:15:43.477228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} +{"Time":"2022-12-07T09:15:43.477235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:43.477467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} +{"Time":"2022-12-07T09:15:43.477475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"For example, try running:\"\n"} +{"Time":"2022-12-07T09:15:43.477496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"\"\n"} +{"Time":"2022-12-07T09:15:43.477517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"\\t$ ssh coder.hungry-chatterjee0\"\n"} +{"Time":"2022-12-07T09:15:43.477547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:80: 2022-12-07 08:15:43.477: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:43.477568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.477 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:43.478256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:43.47828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow","Output":"--- PASS: TestConfigSSH_FileWriteAndOptionsFlow (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.478284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run (1.05s)\n"} +{"Time":"2022-12-07T09:15:43.478293+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Elapsed":1.05} +{"Time":"2022-12-07T09:15:43.478297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set (0.89s)\n"} +{"Time":"2022-12-07T09:15:43.478299+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Elapsed":0.89} +{"Time":"2022-12-07T09:15:43.4783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created (1.28s)\n"} +{"Time":"2022-12-07T09:15:43.478302+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Elapsed":1.28} +{"Time":"2022-12-07T09:15:43.478304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options (1.18s)\n"} +{"Time":"2022-12-07T09:15:43.478306+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Elapsed":1.18} +{"Time":"2022-12-07T09:15:43.478307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes (1.36s)\n"} +{"Time":"2022-12-07T09:15:43.478309+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Elapsed":1.36} +{"Time":"2022-12-07T09:15:43.478314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options (0.73s)\n"} +{"Time":"2022-12-07T09:15:43.478315+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Elapsed":0.73} +{"Time":"2022-12-07T09:15:43.478317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no (1.38s)\n"} +{"Time":"2022-12-07T09:15:43.478318+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Elapsed":1.38} +{"Time":"2022-12-07T09:15:43.478319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run (0.85s)\n"} +{"Time":"2022-12-07T09:15:43.478323+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Elapsed":0.85} +{"Time":"2022-12-07T09:15:43.478325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run (0.93s)\n"} +{"Time":"2022-12-07T09:15:43.478328+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Elapsed":0.93} +{"Time":"2022-12-07T09:15:43.47833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes (1.20s)\n"} +{"Time":"2022-12-07T09:15:43.478331+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Elapsed":1.2} +{"Time":"2022-12-07T09:15:43.478333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF (1.13s)\n"} +{"Time":"2022-12-07T09:15:43.478334+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Elapsed":1.13} +{"Time":"2022-12-07T09:15:43.478336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options (1.05s)\n"} +{"Time":"2022-12-07T09:15:43.478338+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Elapsed":1.05} +{"Time":"2022-12-07T09:15:43.478339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content (1.04s)\n"} +{"Time":"2022-12-07T09:15:43.478342+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Elapsed":1.04} +{"Time":"2022-12-07T09:15:43.478343+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow","Elapsed":0} +{"Time":"2022-12-07T09:15:43.478344+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.478346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.478559+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.478561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.478563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.478 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"371.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"79813731-7b48-4dca-a9d1-7d0497053993\"}\n"} +{"Time":"2022-12-07T09:15:43.479644+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.479647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.479649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.479666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.479686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.479705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.47976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.479809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.479812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:43.479814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:43.479816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:43.479825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:43.479882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:43.479889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:43.480598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.480601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.480603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.480 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"88.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"66284e6d-5bed-4439-bd2c-a1a6dac69d3c\"}\n"} +{"Time":"2022-12-07T09:15:43.480769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.480 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"29.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bf4efb1a-deb4-4ae8-b06a-cd0ca6940f4b\"}\n"} +{"Time":"2022-12-07T09:15:43.481283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.481 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"acabf76b-4e7e-438f-b8b1-996fa020aa86\"}\n"} +{"Time":"2022-12-07T09:15:43.481896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.481 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/organizations/94504e47-9b88-4dce-bfd1-707352f945a9/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"44e0b290-68cb-479f-831e-8932ddfa9a00\"}\n"} +{"Time":"2022-12-07T09:15:43.48197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" templateedit_test.go:189: waiting for template version job 914e97d9-7853-4b28-ac18-4c16445a3e29\n"} +{"Time":"2022-12-07T09:15:43.483007+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.48301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.483012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.482 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.483025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.48304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.483056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.483075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"stage\": \"Parse parameters\", \"output\": \"835db55d-053b-4959-9b6f-f86024098153\"}\n"} +{"Time":"2022-12-07T09:15:43.483091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.483111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.48313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.483247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.483269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.483987+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.483993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.483995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"533.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bd2b5ffb-7600-47ef-8a5e-04a04594f83f\"}\n"} +{"Time":"2022-12-07T09:15:43.484826+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.484863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.484874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.484 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"473.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1f9655f3-c783-420a-9849-4734b2964e2b\"}\n"} +{"Time":"2022-12-07T09:15:43.486526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.486544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.486547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.486 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"551.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"70cdf96f-bd87-46de-9154-4c186e272aaa\"}\n"} +{"Time":"2022-12-07T09:15:43.486752+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.486776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.486782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.486 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"93723bb3-33fa-46db-a419-8cb0c98f80d9\"}\n"} +{"Time":"2022-12-07T09:15:43.486789+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.486793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.486797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.488389+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.488405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.48841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.488 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"537.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8fcc9fba-8a97-4e22-969e-27ac5e71536d\"}\n"} +{"Time":"2022-12-07T09:15:43.488506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.50457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.504579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.504582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.504 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"424.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4efb79f7-08be-4807-a3f4-bfac193b7dce\"}\n"} +{"Time":"2022-12-07T09:15:43.507641+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.507652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.507655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.507 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"357.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"30de32e2-37b7-47e9-b70d-7390730dd3f5\"}\n"} +{"Time":"2022-12-07T09:15:43.508245+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.50825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.508252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.508 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"965d22ab-552c-4c19-8d3a-f3a9f46d1ca2\"}\n"} +{"Time":"2022-12-07T09:15:43.508823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.508827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.508829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.508 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"227.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8d3e885f-24cd-48e1-920c-10ca51f2f9ba\"}\n"} +{"Time":"2022-12-07T09:15:43.510277+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.510284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.510287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"717bbaf9-9c54-4a75-a150-5b2adcad64de\"}\n"} +{"Time":"2022-12-07T09:15:43.510442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.510654+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.510659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.510661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"259.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d24f7f1-1b81-4953-8673-ef95a6ec5a47\"}\n"} +{"Time":"2022-12-07T09:15:43.512186+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.512191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.512193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.512 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"249.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"debf67d0-51d9-41ca-9b55-51a90f5d1544\"}\n"} +{"Time":"2022-12-07T09:15:43.512268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.528443+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.528448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.52845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.528 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e04be919-06bc-40ce-be2b-d4aebf151ad4\"}\n"} +{"Time":"2022-12-07T09:15:43.530092+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.530096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.5301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.530 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.530102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.530 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.530106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.530 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.530159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.530 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.530183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.530 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.530197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.530 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} +{"Time":"2022-12-07T09:15:43.530427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.530 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.328084ms\", \"status_code\": 101, \"latency_ms\": 399, \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\"}\n"} +{"Time":"2022-12-07T09:15:43.53136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.531 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"317.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40a53c34-b083-4c0f-86d6-a97f9a32d7d4\"}\n"} +{"Time":"2022-12-07T09:15:43.531774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.531 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"228.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f4a847cb-112f-4bef-a7e8-991483c96c7d\"}\n"} +{"Time":"2022-12-07T09:15:43.532163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"232.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cc18feb3-d056-43d6-b745-6b5387168caa\"}\n"} +{"Time":"2022-12-07T09:15:43.532325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.532329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.532331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"252µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53c5d3c2-231b-4f1c-a5f1-b3bf19fe71f6\"}\n"} +{"Time":"2022-12-07T09:15:43.532555+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.532559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.53256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"246.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f78506f9-93b6-4903-9884-65797a8f370c\"}\n"} +{"Time":"2022-12-07T09:15:43.532928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"233.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1835a0e8-448f-4bfa-a255-69eb6cf762f8\"}\n"} +{"Time":"2022-12-07T09:15:43.533168+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.533173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.533175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"237.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b69e1275-ee88-4289-b0fa-930b5882bf06\"}\n"} +{"Time":"2022-12-07T09:15:43.533323+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.533326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.533329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"230.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e464ad5-b765-418a-a6b0-30d4c0d14309\"}\n"} +{"Time":"2022-12-07T09:15:43.533332+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.533334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.533335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.533359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.533366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.533385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.533403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.533457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.533738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.533742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.533755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"257.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9f35abe3-831b-4456-a308-f146fb9bdace\"}\n"} +{"Time":"2022-12-07T09:15:43.533824+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.533827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.533829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"241.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cad26e9d-f080-4c1f-b406-06c626f70f02\"}\n"} +{"Time":"2022-12-07T09:15:43.534145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.534148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.53415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.534 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templates/a745dfb2-e349-43c4-8ee1-7346defa546c/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"233.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4b35cbf9-b8c4-4d48-96bf-5ea0b541c9b7\"}\n"} +{"Time":"2022-12-07T09:15:43.535224+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.535228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.53523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7fcab6f5-b2dd-4c0d-b45e-864e18a27ca2\"}\n"} +{"Time":"2022-12-07T09:15:43.535308+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.535312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.535314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templates/a745dfb2-e349-43c4-8ee1-7346defa546c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"335.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e9f81bd5-905d-4051-a461-b986d25494d6\"}\n"} +{"Time":"2022-12-07T09:15:43.535318+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.535319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.535321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.535624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.535627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.535629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"229.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"343bc7ab-b3e0-4993-b809-d4644867be59\"}\n"} +{"Time":"2022-12-07T09:15:43.535732+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.535737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.535739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"239.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"08a5bddd-d12e-4116-b100-b7e45240dd38\"}\n"} +{"Time":"2022-12-07T09:15:43.536087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"218.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8ddb6abc-b497-48ef-ad9e-94a36af4e845\"}\n"} +{"Time":"2022-12-07T09:15:43.537241+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.537244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.537246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"256.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f52f1da0-59cb-4e9d-9741-d87c651c9760\"}\n"} +{"Time":"2022-12-07T09:15:43.537331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.538164+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.538168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.538177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.791µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"1ddd380d-0220-4754-bd4c-8d5e05e56442\"}\n"} +{"Time":"2022-12-07T09:15:43.538341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a764622-fd46-4796-86fa-ccd6a09c9527\"}\n"} +{"Time":"2022-12-07T09:15:43.53879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"92935b39-967f-4bb0-8a06-92d44cfc2bc2\"}\n"} +{"Time":"2022-12-07T09:15:43.539203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.539 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templates/intelligent-euler0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"253.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dd1d2e5f-22f3-438b-813d-6a9809e3196d\"}\n"} +{"Time":"2022-12-07T09:15:43.539773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.539 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"232.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1e5bd527-07cf-4945-abcb-c7b12f4f7489\"}\n"} +{"Time":"2022-12-07T09:15:43.540352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.540 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"443.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c0418b8a-1147-4b8b-a41d-7944f980f406\"}\n"} +{"Time":"2022-12-07T09:15:43.540735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.540 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"224.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20da9c22-9824-4031-8915-7c3586422a7d\"}\n"} +{"Time":"2022-12-07T09:15:43.554149+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.554153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.554154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.554 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"282.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e3ad894-4701-4a6c-bcce-067b4ce27f68\"}\n"} +{"Time":"2022-12-07T09:15:43.555821+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.555825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.555826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.555 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:43.556458+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.556462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.556464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.556 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:43.557471+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.557474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.557476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9a96bb23-6486-4688-a10c-aa3569caa8c4\"}\n"} +{"Time":"2022-12-07T09:15:43.558242+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.558246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.558248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.558 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2566c591-57f5-4335-9725-b5908c73fd62\"}\n"} +{"Time":"2022-12-07T09:15:43.558828+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.558831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.558832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.558 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"226.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bec312be-1701-4c12-a47e-d7961c16a4a2\"}\n"} +{"Time":"2022-12-07T09:15:43.560294+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.5603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.560302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.560 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e965a87a-a89a-47f7-8b42-62011dd84b60\"}\n"} +{"Time":"2022-12-07T09:15:43.560452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.560578+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.560583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.560585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.560 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"231.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e5ed97c5-553b-4322-815b-e0f8be8a97cf\"}\n"} +{"Time":"2022-12-07T09:15:43.56236+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.562363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.562364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.562 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"288.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f3ddedf-2142-4ad5-97b7-f079eb37bcf9\"}\n"} +{"Time":"2022-12-07T09:15:43.562468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.579176+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.579179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.579181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"282.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0787dc2d-62c0-43d6-b256-b40af8a57581\"}\n"} +{"Time":"2022-12-07T09:15:43.579777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.579871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.579916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:43.579946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"size_bytes\": 2, \"path\": \"/tmp/TestWorkspaceAgentAWS3412012430/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.579974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAWS3412012430/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.580001+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.580004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.580018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.579 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:43.58002+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.580022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.580025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAWS3412012430/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.580028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"workspace_name\": \"clever-haslett1\", \"state_length\": 0, \"parameters\": null}\n"} +{"Time":"2022-12-07T09:15:43.580089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.580 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.580129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.580 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.582662+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.582665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.582667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.582 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f81cdafe-3d72-44f4-b758-43a58f20b76f\"}\n"} +{"Time":"2022-12-07T09:15:43.583204+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.583206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.583209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.583 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"256.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1e5698c-c91b-423d-84a5-21f35ae1c1e0\"}\n"} +{"Time":"2022-12-07T09:15:43.583546+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.58355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.583552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.583 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.583556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.583 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.583602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.583 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.583606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.583 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} +{"Time":"2022-12-07T09:15:43.583863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.583866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.583868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.583 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a409ef5e-0891-4c1f-9cd4-7debb5db96fd\"}\n"} +{"Time":"2022-12-07T09:15:43.585321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.585329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.585332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"294.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11d666ac-c89a-4ee3-8ae9-513d3270a7f4\"}\n"} +{"Time":"2022-12-07T09:15:43.585417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.585655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.585658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.585659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"283.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0d4894df-d19c-4dd1-b823-042ab998ba21\"}\n"} +{"Time":"2022-12-07T09:15:43.586116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/organizations/7dcd4d30-d852-4826-97b1-a1ada8075804/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4e709fc3-c331-4a43-96c5-73c2b2cb54e1\"}\n"} +{"Time":"2022-12-07T09:15:43.586594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8fc4f931-5e0b-4e97-b1ee-23e54802b40f\"}\n"} +{"Time":"2022-12-07T09:15:43.587192+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.587195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.587197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ccc4b16b-1535-42dc-9d28-6ceacbe71e17\"}\n"} +{"Time":"2022-12-07T09:15:43.587251+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.587254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.587256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/organizations/7dcd4d30-d852-4826-97b1-a1ada8075804/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"488.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5deff197-37df-40db-81b3-aa10febced7e\"}\n"} +{"Time":"2022-12-07T09:15:43.587306+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.587309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.587311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.58922+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} +{"Time":"2022-12-07T09:15:43.589223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} +{"Time":"2022-12-07T09:15:43.589224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.708µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"ddfeff68-812f-49e1-8a2f-8fbb4b4f155a\"}\n"} +{"Time":"2022-12-07T09:15:43.58941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"88a8a110-fcb6-4514-9c09-1752b13f1a90\"}\n"} +{"Time":"2022-12-07T09:15:43.589859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"283.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fbb8ff82-997b-4fe8-a464-b5563baf4130\"}\n"} +{"Time":"2022-12-07T09:15:43.590334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/organizations/7dcd4d30-d852-4826-97b1-a1ada8075804/templates/competent-joliot8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7cb31f3b-3f9f-4583-be67-c7d7f11f51eb\"}\n"} +{"Time":"2022-12-07T09:15:43.590776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templates/014d5c45-1490-4140-b4b7-417d2b59583b/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"81256858-537b-41e1-8430-3c45f32a764a\"}\n"} +{"Time":"2022-12-07T09:15:43.591197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.591 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/files/d2d5ba52-74e4-459e-a0e3-5f3410476790\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b5e10b81-ba82-48cf-8419-b498291f327d\"}\n"} +{"Time":"2022-12-07T09:15:43.591251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.591 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:43.591864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:43.591887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull","Output":"--- PASS: TestTemplatePull (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.591891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName","Output":" --- PASS: TestTemplatePull/NoName (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.591893+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName","Elapsed":0} +{"Time":"2022-12-07T09:15:43.591896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" --- PASS: TestTemplatePull/ToFile (0.39s)\n"} +{"Time":"2022-12-07T09:15:43.591902+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Elapsed":0.39} +{"Time":"2022-12-07T09:15:43.591906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" --- PASS: TestTemplatePull/Stdout (0.37s)\n"} +{"Time":"2022-12-07T09:15:43.591907+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Elapsed":0.37} +{"Time":"2022-12-07T09:15:43.591909+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull","Elapsed":0} +{"Time":"2022-12-07T09:15:43.59191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.591912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.594397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.594 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"100.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4b3feb23-16bd-406f-b0a1-506976592627\"}\n"} +{"Time":"2022-12-07T09:15:43.594617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.594 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"28630e72-755b-44b0-9294-c44a369e3c52\"}\n"} +{"Time":"2022-12-07T09:15:43.595152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.595 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"336.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"080ebf54-dea7-4cea-bdd4-8756499e91c9\"}\n"} +{"Time":"2022-12-07T09:15:43.595772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.595 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/organizations/047eb5cf-956d-499f-9848-5bab513f4f0e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cfe01cdc-0c95-427c-8be5-7770c7eeb3b8\"}\n"} +{"Time":"2022-12-07T09:15:43.595856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" templateedit_test.go:139: waiting for template version job decd79f6-b816-4196-b5d3-7a5542b9f700\n"} +{"Time":"2022-12-07T09:15:43.605269+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.605273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.605275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.605 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4581ee4c-6813-44f3-8c9d-8fc8f723c77c\"}\n"} +{"Time":"2022-12-07T09:15:43.605992+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.605996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.605999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.605 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.606053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.606 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.606097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.606 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:43.606129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditFirstEmptyThenModified2894296849/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.606151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditFirstEmptyThenModified2894296849/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.606172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditFirstEmptyThenModified2894296849/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.606188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.606286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.606 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:43.606605+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.606609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.606611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.606626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.606666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:43.606688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateVersionsListVersions3032643930/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.606708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateVersionsListVersions3032643930/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.606725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateVersionsListVersions3032643930/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.606738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.606792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:43.608041+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.608047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.608049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.608 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c0bb136-bd65-4968-9fae-5d7d74fe1e7d\"}\n"} +{"Time":"2022-12-07T09:15:43.608889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.608896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.608898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.608 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"91108e9a-d1bd-4596-90b4-9e6591d77c99\"}\n"} +{"Time":"2022-12-07T09:15:43.609295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.609299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.609302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.609 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bd0f92a9-7ea8-4b7d-87c4-8f4eca5bd001\"}\n"} +{"Time":"2022-12-07T09:15:43.610753+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.610756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.610758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.610 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"379.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6158c987-adda-452d-ba7e-a976ceab4c9d\"}\n"} +{"Time":"2022-12-07T09:15:43.610853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.612974+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.61298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.612983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.612 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d446e2d-0cc1-489f-b153-84f62a887c1d\"}\n"} +{"Time":"2022-12-07T09:15:43.613073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.622365+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.622369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.622371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.622 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"98988ecc-319b-418c-8c85-d5581454fb9f\"}\n"} +{"Time":"2022-12-07T09:15:43.628723+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.628727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.628728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.628 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"301.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"be7c2b62-700c-4c05-ad70-ec3fe305aab4\"}\n"} +{"Time":"2022-12-07T09:15:43.630298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.630325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.630327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.63033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.630336+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.630338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.630339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.630345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.630347+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.630348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.63035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.630353+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.630357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.63036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.630364+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.630368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.63037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:43.630402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditWithPropertiesThenEmptyEdit1517124398/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.630416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditWithPropertiesThenEmptyEdit1517124398/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.630442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditWithPropertiesThenEmptyEdit1517124398/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.630451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.63053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:43.632627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"714a341f-818b-4b61-91ed-4eee3b838a0b\"}\n"} +{"Time":"2022-12-07T09:15:43.633216+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.633219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.633221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.633 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"245.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d91e4481-cefa-4909-879b-2b39dddbf3ea\"}\n"} +{"Time":"2022-12-07T09:15:43.633858+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.633862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.633864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.633 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"240.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b49e4d86-cbdc-42aa-bdfd-24f2416308f8\"}\n"} +{"Time":"2022-12-07T09:15:43.635284+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.63529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.635291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"286.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d16b67e0-c705-40b4-b451-029240c75f38\"}\n"} +{"Time":"2022-12-07T09:15:43.635387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.63742+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.637423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.637425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1077697c-115e-45b3-91c4-6947fb91a3fe\"}\n"} +{"Time":"2022-12-07T09:15:43.637519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.646595+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.646607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.646609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.646 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5bd9b02d-8cec-4361-93ba-5b6cd47fdd27\"}\n"} +{"Time":"2022-12-07T09:15:43.653822+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.653825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.653827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.653 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"291.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"86924298-05e0-4ce9-8504-0a0a4f266ae3\"}\n"} +{"Time":"2022-12-07T09:15:43.655032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.655036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.655038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.655 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"13.125µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:43.655788+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.655799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.655802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.655 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"5.291µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:43.656406+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.65641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.656412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.656 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.656573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.656 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.65688+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.656884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.656886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.656 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.656972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.656 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.657429+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.657433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.657435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.657 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c33d7b0a-e9e6-4f2c-8f98-9103bfc242e3\"}\n"} +{"Time":"2022-12-07T09:15:43.658334+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.65834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.658342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.658 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"306.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e2bc4fc9-1f79-4776-a357-aba08d200775\"}\n"} +{"Time":"2022-12-07T09:15:43.658903+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.658906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.658909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.658 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d92f03d0-c7d0-4eff-8e1d-2935bfd1b7ef\"}\n"} +{"Time":"2022-12-07T09:15:43.660374+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.660377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.66038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"78ea916c-7a02-408f-96cb-29e378917fb6\"}\n"} +{"Time":"2022-12-07T09:15:43.660469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.662463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.662467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.662469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.662 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"363.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12b9813b-1359-4fdf-ae5a-9a823d983ce0\"}\n"} +{"Time":"2022-12-07T09:15:43.662566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.671889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.671893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.671895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.671 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"307.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11958710-cc50-4c6e-a44a-cf3ac5700d2a\"}\n"} +{"Time":"2022-12-07T09:15:43.678859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.678865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.678868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.678 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12f274e1-51a9-4b05-8b57-51739d8f9128\"}\n"} +{"Time":"2022-12-07T09:15:43.679284+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.679288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.67929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.679 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"5µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:43.68063+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.680643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.680646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.680 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.680649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.680651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.680654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.680 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.680754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.680 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.680766+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.680769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.680772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.680 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.680828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.680 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.682665+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.682669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.682672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.682 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"350.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"54085a29-f68b-4d3b-8654-5d5e9dbbd184\"}\n"} +{"Time":"2022-12-07T09:15:43.683309+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.683315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.683317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.683 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"326.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bd816e43-2929-478d-9d28-dfe1dc200aae\"}\n"} +{"Time":"2022-12-07T09:15:43.683952+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.683957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.68396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.683 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"330.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"50ef2c9b-3934-49a3-9fe3-eb37d9d778f5\"}\n"} +{"Time":"2022-12-07T09:15:43.68541+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.685415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.685417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.685 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"804833c9-a751-4f33-a6f8-11bc19196cbb\"}\n"} +{"Time":"2022-12-07T09:15:43.685524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.687509+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.687515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.687518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.687 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"382.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8856061-7804-423b-9d8b-f7c959216a0c\"}\n"} +{"Time":"2022-12-07T09:15:43.687636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.694399+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.694404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.694407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.694 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:43.696574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.696 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f7531d0c-978d-46b8-9db1-59bf5c453af0\"}\n"} +{"Time":"2022-12-07T09:15:43.704022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.704028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.70403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.703 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"420.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f4cce1f-dfc0-4a4f-909d-ece5322b8aab\"}\n"} +{"Time":"2022-12-07T09:15:43.706461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.706472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.706476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.417µs\", \"status_code\": 401, \"latency_ms\": 0, \"request_id\": \"89d3e76c-e0da-43e7-b718-7029ebb1e970\"}\n"} +{"Time":"2022-12-07T09:15:43.706542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.706546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.706549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.706556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.706618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.706626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.706631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.70666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.706699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.706845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.706885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.706892+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.706894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.706899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaceagents/azure-instance-identity\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"177.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"01e2e229-7bb0-421e-87ed-05796f2eb7cd\"}\n"} +{"Time":"2022-12-07T09:15:43.707002+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.707008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.707011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.707034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.707063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.707131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.707174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.707196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.70725+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.707254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.707257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.707 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"6b7d145f-1604-4b9a-930a-bc050a1d301b\", \"agent_id\": \"05901413-311b-472b-a1af-812b8c3f32ad\", \"agent_version\": \"v0.0.0-devel\"}\n"} +{"Time":"2022-12-07T09:15:43.707271+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.707275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.707278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.707307+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.70731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.707316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"138.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6b7d145f-1604-4b9a-930a-bc050a1d301b\"}\n"} +{"Time":"2022-12-07T09:15:43.707392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.707401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.707404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.707 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.707458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.707676+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.70768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.707683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"479.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1c40413a-79e9-474e-bc08-a40ee0f4128c\"}\n"} +{"Time":"2022-12-07T09:15:43.707706+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.707711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.707715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"73.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"add9f64f-5c86-46ac-9746-0b7b87fadf3e\"}\n"} +{"Time":"2022-12-07T09:15:43.708392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.708397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.7084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.708 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7bc94657-1c2b-430c-9342-ff18c42d3379\"}\n"} +{"Time":"2022-12-07T09:15:43.709033+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.709042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.709047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.708 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"396.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"102a038f-ff73-4056-a686-7af2b8a97f80\"}\n"} +{"Time":"2022-12-07T09:15:43.71054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.710547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.710551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.710 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"99a2a657-e7e7-4803-9101-acd226c460e1\"}\n"} +{"Time":"2022-12-07T09:15:43.71072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.710963+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.710971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.710975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.710 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"66cddf7e-cb3f-4b10-8ab2-7e89b628bf09\", \"agent\": {\"id\": \"05901413-311b-472b-a1af-812b8c3f32ad\", \"created_at\": \"2022-12-07T08:15:43.304011Z\", \"updated_at\": \"2022-12-07T08:15:43.304012Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"a4e393cd-9fdd-4562-88a7-0f29e2e8cfee\", \"auth_token\": \"3567a44b-0797-431e-b3d7-526362f137d0\", \"auth_instance_id\": {\"String\": \"instanceidentifier\", \"Valid\": true}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false},"} +{"Time":"2022-12-07T09:15:43.710991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" \"directory\": \"\", \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} +{"Time":"2022-12-07T09:15:43.712693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.712 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"632.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9b8266d5-671c-4012-81fc-75b18e06a959\"}\n"} +{"Time":"2022-12-07T09:15:43.713404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.713 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ec3429f4-feaf-47b0-aa25-2805dcbecef9\"}\n"} +{"Time":"2022-12-07T09:15:43.714118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.714 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaceagents/05901413-311b-472b-a1af-812b8c3f32ad/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e53839e9-ecd4-4624-9c23-9570438eb259\"}\n"} +{"Time":"2022-12-07T09:15:43.722167+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.722176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.722192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.722 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"443.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b50870e0-43c4-4ffe-b8da-9b1bd2000f23\"}\n"} +{"Time":"2022-12-07T09:15:43.724897+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.724904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.724907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.724 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"28.167µs\", \"status_code\": 401, \"latency_ms\": 0, \"request_id\": \"9ac10ee3-b9dd-4370-93f3-043f0065ac17\"}\n"} +{"Time":"2022-12-07T09:15:43.72537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.725 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaceagents/google-instance-identity\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"253.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d581e065-ebee-42e1-b1ea-1964c4a832e6\"}\n"} +{"Time":"2022-12-07T09:15:43.725603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.725 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"a3332839-0350-4b31-92ef-568b82f21c43\", \"agent_id\": \"f8f80ea7-ff3b-44fe-a68c-7f04769582fa\", \"agent_version\": \"v0.0.0-devel\"}\n"} +{"Time":"2022-12-07T09:15:43.72564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.725 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"75.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a3332839-0350-4b31-92ef-568b82f21c43\"}\n"} +{"Time":"2022-12-07T09:15:43.725897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.725 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b71bb465-8d5e-4492-a22c-7978c9787a33\"}\n"} +{"Time":"2022-12-07T09:15:43.7283+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.72831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.728314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.728 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"494.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bc3e2b76-1a93-4b61-b647-82869b3979ae\"}\n"} +{"Time":"2022-12-07T09:15:43.728639+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.728646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.72865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.728 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"1745a428-bb14-4e97-8a82-12da81c1bf56\", \"agent\": {\"id\": \"f8f80ea7-ff3b-44fe-a68c-7f04769582fa\", \"created_at\": \"2022-12-07T08:15:43.438089Z\", \"updated_at\": \"2022-12-07T08:15:43.438089Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"7d45a6aa-86b7-4772-97cc-d1c966c9291b\", \"auth_token\": \"b68a1880-0dbf-455c-9465-90f5f0e9e739\", \"auth_instance_id\": {\"String\": \"instanceidentifier\", \"Valid\": true}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false},"} +{"Time":"2022-12-07T09:15:43.728657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" \"directory\": \"\", \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} +{"Time":"2022-12-07T09:15:43.730897+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.730905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.730909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.730 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.730917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.730 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.730941+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.730944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.730946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.730 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.730974+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.730977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.730979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.730 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.730985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.730988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.73099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.730 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.731016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.730 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.73102+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.731022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.731026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.730 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.731091+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.731095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.731098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.731 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.731102+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.731104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.731106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.731 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.73111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.731 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.731116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.731 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.731191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.731194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.731197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.731 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.731302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.731308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.73131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.731 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.731337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.731 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.732788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.732 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"464.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad96008e-f267-4d47-8fd7-27f18700a512\"}\n"} +{"Time":"2022-12-07T09:15:43.733414+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.733422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.733425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7ee9488a-46c1-4c5f-9922-a992a8f503f3\"}\n"} +{"Time":"2022-12-07T09:15:43.734052+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.734058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.734061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.734 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9c7cf739-0778-4532-980e-7fec3b6092e1\"}\n"} +{"Time":"2022-12-07T09:15:43.735413+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.735418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.735421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.735 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"461.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aa6f5244-3078-4ddc-b733-d4d26d5a8151\"}\n"} +{"Time":"2022-12-07T09:15:43.736111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"441.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9887dd18-4652-4ee8-be06-9d36463696db\"}\n"} +{"Time":"2022-12-07T09:15:43.736797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaceagents/f8f80ea7-ff3b-44fe-a68c-7f04769582fa/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0d0e5cb5-e79b-43b3-a100-a3ca44577bf4\"}\n"} +{"Time":"2022-12-07T09:15:43.744882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.744889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.744892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.744 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.74499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.744 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.745065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.745 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:43.745115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.745 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditWithPropertiesThenModified1795971574/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.745144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.745 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditWithPropertiesThenModified1795971574/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.745177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.745 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditWithPropertiesThenModified1795971574/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.7452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.745 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.745317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.745 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:43.746599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.746 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"489.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"98b7439d-84d1-423e-871d-cc255cc92db0\"}\n"} +{"Time":"2022-12-07T09:15:43.753871+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.753881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.753884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.753 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"562.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"00e7b82b-d365-4112-b5bd-b90b27f88ed9\"}\n"} +{"Time":"2022-12-07T09:15:43.757411+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.757424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.757427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.757442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.757533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.757541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.757546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.757607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.757635+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.75764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.757652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.757705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.757729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.757767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.757811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.757896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.758152+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.758161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.758165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"605.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"973cc3bf-190a-405b-8ae0-b85306d406b7\"}\n"} +{"Time":"2022-12-07T09:15:43.758598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.75861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.758614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"536.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"28ac5ac2-1a53-4608-8a9d-0c99ec94fbf2\"}\n"} +{"Time":"2022-12-07T09:15:43.759265+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.759277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.759282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"536.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"77e9c8f0-885c-42ed-8e0a-7bb5bbece1f6\"}\n"} +{"Time":"2022-12-07T09:15:43.77204+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.772052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.772056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.771 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"491.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"73e10edd-868d-49b1-8850-b0f133e98047\"}\n"} +{"Time":"2022-12-07T09:15:43.779407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.779418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.779423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.779 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"767.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3d7443b1-1e44-4b0d-abcb-29461740f052\"}\n"} +{"Time":"2022-12-07T09:15:43.781758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.781 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.781864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.781 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.781871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.781 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.781975+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.782032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.782041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.781 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.782055+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.782062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.782116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.781 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.782144+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.782148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.782153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.781 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.782158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.782 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.7822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.782 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.782259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.782 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.782378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.782 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.782393+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.782397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.782401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.782 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.784049+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.784065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.78407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.43375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2389f108-1b17-4dd9-ac24-65f436a488c4\"}\n"} +{"Time":"2022-12-07T09:15:43.785718+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.785738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.785743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.181417ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f2263756-4a1c-4f52-923a-e578d7842425\"}\n"} +{"Time":"2022-12-07T09:15:43.785841+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.78585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.785856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.260416ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"03891d89-0f5f-4cf8-9e91-6c1d2ccee368\"}\n"} +{"Time":"2022-12-07T09:15:43.79322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.793237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.793241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.792 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"10.666µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:43.795512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.795 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.795687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.795 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.796678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.796 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"574.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4888cb6f-c8b6-41a8-8f8f-150f74ceea7c\"}\n"} +{"Time":"2022-12-07T09:15:43.80406+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.804069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.804073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.803 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"640.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7ceb2865-ec9e-46db-8e5d-2ee5ed4a460b\"}\n"} +{"Time":"2022-12-07T09:15:43.807762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.807775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.80778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.807 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.807787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.807 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.807793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.807 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.80787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.807 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} +{"Time":"2022-12-07T09:15:43.808017+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.808025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.808029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.807 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.808036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.808 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.808043+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.808053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.808058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.807 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"495.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3a793808-b2b4-42c3-95b5-bd7ed9e07351\"}\n"} +{"Time":"2022-12-07T09:15:43.808065+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.808068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.808071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.808 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.808141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.808 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} +{"Time":"2022-12-07T09:15:43.808608+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.808618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.808621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.808 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"539.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a5556b45-015d-491a-be90-17637bf36e06\"}\n"} +{"Time":"2022-12-07T09:15:43.809143+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.809152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.809155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"449.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"02e914d8-de6e-4efe-8707-87ac07292386\"}\n"} +{"Time":"2022-12-07T09:15:43.809471+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.809478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.809482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/organizations/046c8003-1d27-4678-bd29-73003e99045c/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"563.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"28a14c77-894c-41a0-a0c8-d54e9e20681c\"}\n"} +{"Time":"2022-12-07T09:15:43.809911+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.809919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.809923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/organizations/dcac5162-993e-4a9a-9727-4e1afb1d6761/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"445µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"fa0b4475-d297-4ebc-8ab4-124e4a98750a\"}\n"} +{"Time":"2022-12-07T09:15:43.813164+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.813174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.813179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.813 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.042µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"581717e1-c706-41f1-91d4-742a2df6d546\"}\n"} +{"Time":"2022-12-07T09:15:43.813428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.813 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"29.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"35528133-21b9-4df7-88b0-df5d51d68e5a\"}\n"} +{"Time":"2022-12-07T09:15:43.813438+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.81344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.813443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.813 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.083µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"dfa0c935-a7bb-4597-8333-19dde2c36a10\"}\n"} +{"Time":"2022-12-07T09:15:43.81368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.813 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a877a79e-a923-4328-8628-4ead79837bef\"}\n"} +{"Time":"2022-12-07T09:15:43.81414+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.814146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.81415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.814 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"480.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3209067d-9b53-48dd-9949-966396b849ab\"}\n"} +{"Time":"2022-12-07T09:15:43.814354+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.814364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.814367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.814 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"442.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6bdcf0d6-fa0b-4112-bca6-a49955301ce1\"}\n"} +{"Time":"2022-12-07T09:15:43.814785+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.814794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.814798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.814 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/organizations/046c8003-1d27-4678-bd29-73003e99045c/templates/serene-mendeleev9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"425µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"85d8c523-2a5c-4bd1-92c3-648a7d592254\"}\n"} +{"Time":"2022-12-07T09:15:43.814979+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.814985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.814988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.814 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/organizations/dcac5162-993e-4a9a-9727-4e1afb1d6761/templates/loving-wilson3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"430.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"092f65da-bc52-4a1e-989a-f6d8eaed79d0\"}\n"} +{"Time":"2022-12-07T09:15:43.815479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.815487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.815491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.815 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templates/ffc20efa-06d3-4727-8fec-f21e216ac4eb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"416.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"884bc15d-ebc8-4e54-a578-00a2c6b1fff7\"}\n"} +{"Time":"2022-12-07T09:15:43.815628+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.815636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.815639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.815 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templates/4fe89977-4e35-411f-9968-98d28fedd4ad/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6b975e36-13dd-46f7-9be8-fa1a6bc034af\"}\n"} +{"Time":"2022-12-07T09:15:43.815879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" ptytest.go:103: 2022-12-07 08:15:43.815: cmd: stdout: \"NAME CREATED AT CREATED BY STATUS ACTIVE \"\n"} +{"Time":"2022-12-07T09:15:43.815901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" ptytest.go:103: 2022-12-07 08:15:43.815: cmd: stdout: \"silly_carver7 2022-12-07T08:15:43Z testuser Succeeded \\x1b[;mActive\\x1b[0m \"\n"} +{"Time":"2022-12-07T09:15:43.815906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" templateversions_test.go:37: 2022-12-07 08:15:43.815: cmd: matched \"silly_carver7\" = \"NAME CREATED AT CREATED BY STATUS ACTIVE \\r\\nsilly_carver7\"\n"} +{"Time":"2022-12-07T09:15:43.815912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" templateversions_test.go:38: 2022-12-07 08:15:43.815: cmd: matched \"testuser\" = \" 2022-12-07T08:15:43Z testuser\"\n"} +{"Time":"2022-12-07T09:15:43.815931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" templateversions_test.go:39: 2022-12-07 08:15:43.815: cmd: matched \"Active\" = \" Succeeded \\x1b[;mActive\"\n"} +{"Time":"2022-12-07T09:15:43.815967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" ptytest.go:80: 2022-12-07 08:15:43.815: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:43.816028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.815 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:43.816208+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.816216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.816219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.816 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templates/ffc20efa-06d3-4727-8fec-f21e216ac4eb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"05cc832c-2056-465e-8715-7bc275586a93\"}\n"} +{"Time":"2022-12-07T09:15:43.816405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.816 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:43.817244+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} +{"Time":"2022-12-07T09:15:43.817252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} +{"Time":"2022-12-07T09:15:43.817255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:43.817263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions","Output":"--- PASS: TestTemplateVersions (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.817267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" --- PASS: TestTemplateVersions/ListVersions (0.36s)\n"} +{"Time":"2022-12-07T09:15:43.817272+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Elapsed":0.36} +{"Time":"2022-12-07T09:15:43.81729+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions","Elapsed":0} +{"Time":"2022-12-07T09:15:43.817293+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.817296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.817643+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} +{"Time":"2022-12-07T09:15:43.81765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} +{"Time":"2022-12-07T09:15:43.817654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:43.817657+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.817659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.820906+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.820917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.82092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.820 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"132.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"815747f0-8548-4dd4-83d8-a995218beaf0\"}\n"} +{"Time":"2022-12-07T09:15:43.820925+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.820928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.82093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.820 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"135.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ac06c7fc-5a29-427a-a32f-8da065859f6c\"}\n"} +{"Time":"2022-12-07T09:15:43.821161+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.821173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.821176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.821 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"61.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b1a5f4d1-a242-481f-85c8-bf526b5a02c9\"}\n"} +{"Time":"2022-12-07T09:15:43.821186+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.821206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.821214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.821 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"46.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0bcba3cf-e8d5-49d3-99e1-254ab07b8905\"}\n"} +{"Time":"2022-12-07T09:15:43.822056+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.822063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.822065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.821 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"624µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e4a8517b-ade4-4fec-9cd3-b48053dafe5a\"}\n"} +{"Time":"2022-12-07T09:15:43.822104+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.822109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.822114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.822 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"607.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3db765c4-69d7-49a2-a9f7-3c117c8d76b2\"}\n"} +{"Time":"2022-12-07T09:15:43.82223+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.822237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.82224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.822 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"604.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"331b4283-af2f-40f6-8fdd-bee5eaf39f0c\"}\n"} +{"Time":"2022-12-07T09:15:43.82303+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.823036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.82304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.822 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/organizations/5570ef26-ff61-466e-9be7-4dd94bf3b9af/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"775.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a365f082-c411-4fe3-85d4-d86588b720ba\"}\n"} +{"Time":"2022-12-07T09:15:43.823134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" templateedit_test.go:107: waiting for template version job a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\n"} +{"Time":"2022-12-07T09:15:43.823175+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.823179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.823182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.823 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/organizations/8b0345d4-ff46-4dcb-88f0-19e0a4b8ba24/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"846.584µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"25d7c2ef-f664-4384-b97e-3aa8189f040d\"}\n"} +{"Time":"2022-12-07T09:15:43.82329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" templateedit_test.go:71: waiting for template version job 4829f292-5c86-472c-89f4-b13d93547bed\n"} +{"Time":"2022-12-07T09:15:43.829352+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.829357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.82936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"593.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b213aa5-2d93-4a74-abf9-8e0d44fb3382\"}\n"} +{"Time":"2022-12-07T09:15:43.832486+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.832494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.832497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.832 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.832504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.832 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.832526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.832531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.832535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.832 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.832543+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.832545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.832548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.832 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.832581+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.832585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.832591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.832 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"7d830772-f996-428b-b890-dc2c451b6c80\", \"timeout\": \"0s\"}\n"} +{"Time":"2022-12-07T09:15:43.832597+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.8326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.832611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.832 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} +{"Time":"2022-12-07T09:15:43.832618+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.832621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.832623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.832 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.832727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.832 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} +{"Time":"2022-12-07T09:15:43.83337+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} +{"Time":"2022-12-07T09:15:43.833384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} +{"Time":"2022-12-07T09:15:43.833388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.833 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"88b157a6-6a93-4279-89bd-24d95f1c78a5\"}\n"} +{"Time":"2022-12-07T09:15:43.834085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/organizations/94504e47-9b88-4dce-bfd1-707352f945a9/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"73ceb6f2-fc6b-437b-828c-51ad6a822a7c\"}\n"} +{"Time":"2022-12-07T09:15:43.834737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templates/e15c2a60-196c-42ac-bec3-857473f12abc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62bfae7f-6c81-4f26-9f91-76dbcbf5acd9\"}\n"} +{"Time":"2022-12-07T09:15:43.838394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.838 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.625µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"ec50173d-a86e-4052-a705-a55e0e1df86e\"}\n"} +{"Time":"2022-12-07T09:15:43.838604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.838 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6c3dd8b5-9b04-486c-9051-28ba4b875b11\"}\n"} +{"Time":"2022-12-07T09:15:43.839332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.839 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"411.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"158b3442-9200-4ac9-aa1b-0ec7e8fa09e8\"}\n"} +{"Time":"2022-12-07T09:15:43.839933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.839 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/organizations/94504e47-9b88-4dce-bfd1-707352f945a9/templates/beautiful-elgamal3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"393.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"440d37cc-d9e4-4286-a985-02e6c5b13f16\"}\n"} +{"Time":"2022-12-07T09:15:43.840588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.840 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templates/e15c2a60-196c-42ac-bec3-857473f12abc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e55b8020-3796-43d6-a02b-e2bbb4f37df0\"}\n"} +{"Time":"2022-12-07T09:15:43.841202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.841 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templates/e15c2a60-196c-42ac-bec3-857473f12abc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ea36742a-8183-4658-9739-eda6f9c7129c\"}\n"} +{"Time":"2022-12-07T09:15:43.841317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.841 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:43.842086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:43.842113+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date"} +{"Time":"2022-12-07T09:15:43.842118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date","Output":"=== CONT TestVerifyWorkspaceOutdated/Up-to-date\n"} +{"Time":"2022-12-07T09:15:43.842127+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated"} +{"Time":"2022-12-07T09:15:43.842129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated","Output":"=== CONT TestVerifyWorkspaceOutdated/Outdated\n"} +{"Time":"2022-12-07T09:15:43.842136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated","Output":"--- PASS: TestVerifyWorkspaceOutdated (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.842139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date","Output":" --- PASS: TestVerifyWorkspaceOutdated/Up-to-date (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.842142+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date","Elapsed":0} +{"Time":"2022-12-07T09:15:43.842144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated","Output":" --- PASS: TestVerifyWorkspaceOutdated/Outdated (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.842148+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated","Elapsed":0} +{"Time":"2022-12-07T09:15:43.842152+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated","Elapsed":0} +{"Time":"2022-12-07T09:15:43.842154+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK"} +{"Time":"2022-12-07T09:15:43.842156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK","Output":"=== CONT TestRoot/FormatCobraError/OK\n"} +{"Time":"2022-12-07T09:15:43.844497+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose"} +{"Time":"2022-12-07T09:15:43.844505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose","Output":"=== CONT TestRoot/FormatCobraError/Verbose\n"} +{"Time":"2022-12-07T09:15:43.844511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot","Output":"--- PASS: TestRoot (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.844515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header","Output":" --- PASS: TestRoot/Header (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.844518+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header","Elapsed":0} +{"Time":"2022-12-07T09:15:43.844521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version","Output":" --- PASS: TestRoot/Version (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.844523+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version","Elapsed":0} +{"Time":"2022-12-07T09:15:43.844525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError","Output":" --- PASS: TestRoot/FormatCobraError (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.844528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK","Output":" --- PASS: TestRoot/FormatCobraError/OK (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.84453+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK","Elapsed":0} +{"Time":"2022-12-07T09:15:43.844532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose","Output":" --- PASS: TestRoot/FormatCobraError/Verbose (0.00s)\n"} +{"Time":"2022-12-07T09:15:43.846258+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose","Elapsed":0} +{"Time":"2022-12-07T09:15:43.846262+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError","Elapsed":0} +{"Time":"2022-12-07T09:15:43.846264+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRoot","Elapsed":0} +{"Time":"2022-12-07T09:15:43.846267+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.84627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.846272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.846286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.846307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.846339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.846349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.846384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.846413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.846551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:43.846579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.847742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.847 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"479.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3e4c79b7-34e0-48f0-b9d4-6f0e93aabab0\"}\n"} +{"Time":"2022-12-07T09:15:43.849502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.849511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.849514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.849 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"515.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d0211407-f50c-4cb6-b798-61fd05443891\"}\n"} +{"Time":"2022-12-07T09:15:43.84952+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.849524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.849526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.849 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"540.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7602b64f-e1eb-449a-8033-0e921236d578\"}\n"} +{"Time":"2022-12-07T09:15:43.854192+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.854197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.8542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.854 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"517.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bce2b123-0e0d-4f9a-90ae-57cc54650794\"}\n"} +{"Time":"2022-12-07T09:15:43.856185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" agent_test.go:121: waiting for workspace agents (workspace bf785a82-1705-4e26-97ee-0f8c0e07c175)\n"} +{"Time":"2022-12-07T09:15:43.870114+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} +{"Time":"2022-12-07T09:15:43.87012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} +{"Time":"2022-12-07T09:15:43.870122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.870 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaceagents/05901413-311b-472b-a1af-812b8c3f32ad/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"53.902333ms\", \"status_code\": 101, \"latency_ms\": 53, \"request_id\": \"bb26a310-834d-4789-a201-12cd02f93413\"}\n"} +{"Time":"2022-12-07T09:15:43.870157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.870 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"109.143041ms\", \"status_code\": 0, \"latency_ms\": 109, \"request_id\": \"2f46097f-1d22-4bd5-a3bd-2c57b1da4d7e\"}\n"} +{"Time":"2022-12-07T09:15:43.870276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.870 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"159.438417ms\", \"status_code\": 101, \"latency_ms\": 159, \"request_id\": \"66cddf7e-cb3f-4b10-8ab2-7e89b628bf09\"}\n"} +{"Time":"2022-12-07T09:15:43.870375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:43.870412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.870 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"103.765583ms\", \"status_code\": 0, \"latency_ms\": 103, \"request_id\": \"9db95b02-0843-4743-94af-0803587266cd\"}\n"} +{"Time":"2022-12-07T09:15:43.870931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:43.872066+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.872071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.872073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"915fb293-036c-4d4d-a818-783e923174cc\"}\n"} +{"Time":"2022-12-07T09:15:43.874247+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.874252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.874256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.874 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"379.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"14fb2e88-68ec-4af6-ae0e-d4d9c7378bb7\"}\n"} +{"Time":"2022-12-07T09:15:43.874269+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.874273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.874275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.874 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"411.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"106919a5-104e-41d1-ae15-33fe6895c06c\"}\n"} +{"Time":"2022-12-07T09:15:43.882495+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.8825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.882502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.882 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"428.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dd224e62-20b3-49f1-a583-dd2a12afe450\"}\n"} +{"Time":"2022-12-07T09:15:43.88261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.897593+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.897604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.897606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.897 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.897609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.897 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.897612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.897 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:43.897631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.897 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.897734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.897 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.897872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.897 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.898122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.898 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"701.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7eaef988-7c79-495f-9c72-6f61828a73a5\"}\n"} +{"Time":"2022-12-07T09:15:43.898785+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.898789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.898791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.898 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da03d94c-5172-4787-b95f-c28f21f60434\"}\n"} +{"Time":"2022-12-07T09:15:43.898795+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.898796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.898798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.898 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"338.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d2a295c6-a632-4bd8-aad4-d8dd8e207db5\"}\n"} +{"Time":"2022-12-07T09:15:43.899873+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} +{"Time":"2022-12-07T09:15:43.899879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} +{"Time":"2022-12-07T09:15:43.899882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.899 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaceagents/f8f80ea7-ff3b-44fe-a68c-7f04769582fa/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"60.847709ms\", \"status_code\": 101, \"latency_ms\": 60, \"request_id\": \"911725e4-9ab7-467f-8408-23537dc6d879\"}\n"} +{"Time":"2022-12-07T09:15:43.900146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.900 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"171.616125ms\", \"status_code\": 101, \"latency_ms\": 171, \"request_id\": \"1745a428-bb14-4e97-8a82-12da81c1bf56\"}\n"} +{"Time":"2022-12-07T09:15:43.900152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.900 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"120.748042ms\", \"status_code\": 0, \"latency_ms\": 120, \"request_id\": \"0a5b3e8d-e832-4334-b92b-902e37f0f5b7\"}\n"} +{"Time":"2022-12-07T09:15:43.900345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.900 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"106.84425ms\", \"status_code\": 0, \"latency_ms\": 106, \"request_id\": \"854989eb-e3ff-441c-85e1-f0fcb4ec2dd9\"}\n"} +{"Time":"2022-12-07T09:15:43.900397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.900 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:43.900914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:43.90863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.908634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.908636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.908 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"500µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90163752-784f-44f7-9f75-b399ce5dfcfe\"}\n"} +{"Time":"2022-12-07T09:15:43.908729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.920994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.921012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.921016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.920 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:43.921022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.921023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.921026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.920 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} +{"Time":"2022-12-07T09:15:43.922398+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.922403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.922405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.922 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"396.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"03d87b6b-546d-44bc-90c4-bbf0250e8ee3\"}\n"} +{"Time":"2022-12-07T09:15:43.924604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.924607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.924609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.924 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"de17d868-0bc5-4eb8-a33b-adf1bd412220\"}\n"} +{"Time":"2022-12-07T09:15:43.924656+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.924662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.924665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.924 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"45a6d858-c89d-4689-8015-77552a1a7bc4\"}\n"} +{"Time":"2022-12-07T09:15:43.932675+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.932679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.932681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2af844a8-d119-47d2-ba1a-944dfa0560bf\"}\n"} +{"Time":"2022-12-07T09:15:43.932793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.946512+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.946516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.946518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.946 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a187872-089a-4128-be3a-bc35bb376584\"}\n"} +{"Time":"2022-12-07T09:15:43.948117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.948 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.948141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.948 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.948155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.948 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.948221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.948 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} +{"Time":"2022-12-07T09:15:43.948669+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.948673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.948676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.948 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"735e79ec-909f-498c-a1fa-e43755cdc5db\"}\n"} +{"Time":"2022-12-07T09:15:43.948751+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.948755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.948757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.948 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e73d1239-963a-450e-bee2-2dae8c953056\"}\n"} +{"Time":"2022-12-07T09:15:43.957729+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.957736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.957738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.957 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"385.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"970a1ecb-8898-4e33-99de-5e2752739a24\"}\n"} +{"Time":"2022-12-07T09:15:43.957819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.971604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.971618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.971622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:43.971627+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.971629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.971632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:43.971722+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.971728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.971731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.971 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:43.971735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.971737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.97174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.971 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:43.971771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.971 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:43.971802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.971811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.971813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.971 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"size_bytes\": 3072}\n"} +{"Time":"2022-12-07T09:15:43.97183+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.971834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.971836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditInvalidDisplayName2565145702/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.971849+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.971851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.971853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditFirstEmptyThenNotModified1696336287/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.971881+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.971883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.97189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditInvalidDisplayName2565145702/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.971894+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.971896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.971898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditFirstEmptyThenNotModified1696336287/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.971982+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.97199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.971992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditInvalidDisplayName2565145702/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.971996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.971999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.972002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditFirstEmptyThenNotModified1696336287/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.972005+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.972006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.972008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:43.972011+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.972013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.972015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:43.972072+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.972076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.972078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.972 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:43.972109+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.972113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.972115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.972 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:43.97212+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.972122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.972125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"04bd5b5c-ddc7-46d7-9afc-74c412475790\"}\n"} +{"Time":"2022-12-07T09:15:43.972782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/organizations/047eb5cf-956d-499f-9848-5bab513f4f0e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"424.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3ac29c92-0090-4b7e-9470-c79b84f344eb\"}\n"} +{"Time":"2022-12-07T09:15:43.973388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.973 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templates/0dccf1fe-8491-4f95-acef-c3155f66f257\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a991f1f3-eb0d-4886-883c-7144cee0310a\"}\n"} +{"Time":"2022-12-07T09:15:43.973708+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.973711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.973713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.973 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8489aa69-9a82-4baf-a208-fc21197ca0d4\"}\n"} +{"Time":"2022-12-07T09:15:43.973904+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.973909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.973912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.973 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"462.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06685cd1-a95b-43a7-93e9-ba27ed2fedad\"}\n"} +{"Time":"2022-12-07T09:15:43.976096+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} +{"Time":"2022-12-07T09:15:43.976102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} +{"Time":"2022-12-07T09:15:43.976105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.976 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.084µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"4d443905-ff95-4003-b295-062844925c82\"}\n"} +{"Time":"2022-12-07T09:15:43.976322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.976 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"29.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e938cfba-d423-4f84-8162-088a078bea60\"}\n"} +{"Time":"2022-12-07T09:15:43.976957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.976 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"429.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"50e1253e-c860-460a-aebc-59ad93f80e28\"}\n"} +{"Time":"2022-12-07T09:15:43.977517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.977 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/organizations/047eb5cf-956d-499f-9848-5bab513f4f0e/templates/optimistic-cerf7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"429a3b9d-cbc0-4590-bb48-adf352970f81\"}\n"} +{"Time":"2022-12-07T09:15:43.978054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.978 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templates/0dccf1fe-8491-4f95-acef-c3155f66f257\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a37eba17-f7f5-4d0e-9141-dbef05cfadcb\"}\n"} +{"Time":"2022-12-07T09:15:43.978564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.978 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templates/0dccf1fe-8491-4f95-acef-c3155f66f257\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"329.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"196f95d1-3707-4368-80fc-264c30fc22a9\"}\n"} +{"Time":"2022-12-07T09:15:43.978659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.978 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:43.97927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:43.983024+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:43.983029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:43.983032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"494.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"772b9bc1-39ca-4611-9d1d-0384142e68ee\"}\n"} +{"Time":"2022-12-07T09:15:43.983141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:43.99739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:43.997398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:43.9974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:43.997498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:43.997554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"size_bytes\": 3584}\n"} +{"Time":"2022-12-07T09:15:43.99759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.997629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.997657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.997693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/3110653544.tf\", \"mode\": \"-rw-------\"}\n"} +{"Time":"2022-12-07T09:15:43.997702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:43.997788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"parameter_schemas\": null}\n"} +{"Time":"2022-12-07T09:15:43.999572+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:43.999576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:43.999579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.999 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"485.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6af7835-ad12-4b5f-8ac0-d47741d4e30b\"}\n"} +{"Time":"2022-12-07T09:15:43.999583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:43.999585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:43.999587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.999 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b65c92c4-0f57-40fc-a637-27452ff25005\"}\n"} +{"Time":"2022-12-07T09:15:44.00767+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:44.007675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:44.007677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.007 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"77831ffb-dded-41ce-a782-32619306a424\"}\n"} +{"Time":"2022-12-07T09:15:44.007795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:44.019954+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.019958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.01996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.019 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"21.75µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:44.020006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.02001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.020012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.019 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.458µs\", \"interval\": \"1h0m0s\"}\n"} +{"Time":"2022-12-07T09:15:44.022305+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.022311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.022313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.022 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:44.022409+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.022414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.022418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.022 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:44.022442+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.022448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.022451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.022 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:44.022585+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.02259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.022593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.022 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:44.023882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.023 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"429.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"175820cc-0e8f-4dd2-8e26-c7b8a2b4956b\"}\n"} +{"Time":"2022-12-07T09:15:44.02389+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.023893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.023896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.023 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"402.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d249adf7-2a3b-49e4-9936-42d814124cdb\"}\n"} +{"Time":"2022-12-07T09:15:44.032827+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:44.032833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:44.032836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"445.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3507d137-a8e2-4e35-8e27-c343bdcacc55\"}\n"} +{"Time":"2022-12-07T09:15:44.032964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:44.048944+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:44.048955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:44.048959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.048 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.049144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.049 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:44.049435+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.04944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.049443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.049 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"480.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"22e782e2-5579-4f47-ab04-cdf8121b0981\"}\n"} +{"Time":"2022-12-07T09:15:44.049531+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.049538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.049541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.049 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"529.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fe31b118-48fc-4b8e-86a0-183bf33bedc2\"}\n"} +{"Time":"2022-12-07T09:15:44.057938+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:44.057945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:44.057948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"594.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"050dcfb4-b7eb-4b82-8c67-fcda8e16ce7a\"}\n"} +{"Time":"2022-12-07T09:15:44.058104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:44.073579+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.073591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.073595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:44.073608+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.073612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.073618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:44.073664+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.073673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.073678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.073688+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.073691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.073695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.073743+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.073752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.073756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.073764+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.073768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.073774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.073787+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.07379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.073794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.0738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.073804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.073808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.073905+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.07391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.073914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.073918+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.073925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.073928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.073941+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.073947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.073951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:44.073955+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.073958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.073961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:44.073965+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.073968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.073972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:44.073976+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.073979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.073986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:44.074159+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.074167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.074172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.074 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:44.074184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.074 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:44.074246+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.074292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.074302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.074 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:44.074312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.074 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:44.074496+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.074502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.074507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.074 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"637.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aa34980b-3881-4773-b56d-e92dba1b2040\"}\n"} +{"Time":"2022-12-07T09:15:44.074514+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.074519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.07455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.074 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"698.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"547fd5a2-c5dd-4c2c-b6af-15492fb9aca4\"}\n"} +{"Time":"2022-12-07T09:15:44.082928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:44.082935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:44.082941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.082 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"654.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9b63d552-d7ed-4252-abff-a619b7de7fd3\"}\n"} +{"Time":"2022-12-07T09:15:44.083141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:44.099385+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:44.099401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:44.099407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.099447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.09951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.108489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.108569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.108575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.10858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.108584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:44.108589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:44.108595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:44.1086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:44.108605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\", \"stage\": \"Setting up\"}\n"} +{"Time":"2022-12-07T09:15:44.10861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\", \"stage\": \"No README.md provided\"}\n"} +{"Time":"2022-12-07T09:15:44.108723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.100 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} +{"Time":"2022-12-07T09:15:44.108729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\", \"stage\": \"Parsing template parameters\"}\n"} +{"Time":"2022-12-07T09:15:44.108735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.100 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.108741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:44.108746+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.10875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.108754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"766µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4001411-7467-4d07-9ca1-deb49baa20cd\"}\n"} +{"Time":"2022-12-07T09:15:44.108761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.108764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.108768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"884.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"60ae1c67-3456-4879-bb8d-8be9ec90873e\"}\n"} +{"Time":"2022-12-07T09:15:44.109228+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:44.109237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:44.109242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.109 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.406166ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0caa95aa-b732-48c1-b8fe-f22aaf1da4ab\"}\n"} +{"Time":"2022-12-07T09:15:44.109537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} +{"Time":"2022-12-07T09:15:44.111745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"71.875µs\", \"status_code\": 401, \"latency_ms\": 0, \"request_id\": \"2f1e3869-a9bf-4c12-9f9d-0ce82143653e\"}\n"} +{"Time":"2022-12-07T09:15:44.112368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaceagents/aws-instance-identity\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"307.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"970d53f5-29b6-4a4a-8198-c77494b2ba56\"}\n"} +{"Time":"2022-12-07T09:15:44.112674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.112 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"ec75c2c0-e4fa-4b38-b7bd-6429eebb364d\", \"agent_id\": \"f2e0f4bc-6d92-4680-bb38-69d4846b8409\", \"agent_version\": \"v0.0.0-devel\"}\n"} +{"Time":"2022-12-07T09:15:44.11273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"120.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ec75c2c0-e4fa-4b38-b7bd-6429eebb364d\"}\n"} +{"Time":"2022-12-07T09:15:44.113361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.113 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"96.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"df73788c-156a-4aa7-bc33-4512cbb7a4a2\"}\n"} +{"Time":"2022-12-07T09:15:44.11703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.116 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"6808910b-648a-4270-9de7-3a49f9ddf7d4\", \"agent\": {\"id\": \"f2e0f4bc-6d92-4680-bb38-69d4846b8409\", \"created_at\": \"2022-12-07T08:15:43.832535Z\", \"updated_at\": \"2022-12-07T08:15:43.832535Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"089dabfc-b480-4d98-9ab0-35cdd7bbac10\", \"auth_token\": \"63d2485c-0403-479c-8252-649116c07c9d\", \"auth_instance_id\": {\"String\": \"instanceidentifier\", \"Valid\": true}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false},"} +{"Time":"2022-12-07T09:15:44.117058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" \"directory\": \"\", \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} +{"Time":"2022-12-07T09:15:44.124443+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.124463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.124476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:44.124485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.12449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.124494+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.124498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.124504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:44.124534+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.124537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.12454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:44.124544+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.124547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.12455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.124578+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.124581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.124584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:44.124588+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.124591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.124594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.124635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:44.124684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:44.124727+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.124731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.124735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"596.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c96f47ad-4a2b-49a3-9f5e-c3f669a978bd\"}\n"} +{"Time":"2022-12-07T09:15:44.124751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:44.124762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.124765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.124769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"662.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"99b7cb9d-22c7-4fdc-81e9-9e7d9c4cf9af\"}\n"} +{"Time":"2022-12-07T09:15:44.124839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:44.1323+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:44.132313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:44.132318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.132 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"801.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a464961-3cc1-4977-9d1d-d45023dad7e5\"}\n"} +{"Time":"2022-12-07T09:15:44.133366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.133 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"637.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44b9eef3-0126-49af-9b4a-77176912461c\"}\n"} +{"Time":"2022-12-07T09:15:44.134353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.134 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaceagents/f2e0f4bc-6d92-4680-bb38-69d4846b8409/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"621.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"781a4b72-98d5-415b-815a-a115f90fc096\"}\n"} +{"Time":"2022-12-07T09:15:44.150278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.150325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.150333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.149 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.327542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b9c1b2c3-9c45-4a6b-bb50-0e59afac52bb\"}\n"} +{"Time":"2022-12-07T09:15:44.158569+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.158587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.158592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.149 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.318416ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2b8037d2-5dac-48ba-9df7-69a34e0a8193\"}\n"} +{"Time":"2022-12-07T09:15:44.1586+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:44.158603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:44.158607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.150 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.158611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.158615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} +{"Time":"2022-12-07T09:15:44.158619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.158624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.158627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:44.158631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:44.158634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:44.158638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\", \"stage\": \"Detecting persistent resources\"}\n"} +{"Time":"2022-12-07T09:15:44.158641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\", \"stage\": \"Detecting ephemeral resources\"}\n"} +{"Time":"2022-12-07T09:15:44.158645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\", \"stage\": \"Cleaning Up\"}\n"} +{"Time":"2022-12-07T09:15:44.158649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.152 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.174738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.174749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.174754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"681µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ec6db0ad-698f-440d-ad24-88e1aa84e63a\"}\n"} +{"Time":"2022-12-07T09:15:44.174763+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.174766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.174771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"668.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"14e94768-94fd-4966-8265-76be4e943a46\"}\n"} +{"Time":"2022-12-07T09:15:44.17494+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.174956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.174961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:44.174969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:44.174975+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.174978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.174981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:44.174985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.174988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.174991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:44.174997+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.174999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.175002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:44.17503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:44.17506+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.175063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.175067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.175 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} +{"Time":"2022-12-07T09:15:44.175136+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.175143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.175146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.175 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} +{"Time":"2022-12-07T09:15:44.199723+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.199738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.199743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.199 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"594.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ecec78b-2dc3-4746-8a02-026832cfa6cf\"}\n"} +{"Time":"2022-12-07T09:15:44.199755+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.19976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.199763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.199 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"601.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62acd96a-aaaa-44bf-bbd7-e0146ee72c5a\"}\n"} +{"Time":"2022-12-07T09:15:44.200631+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.200641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.200648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.200 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/organizations/5570ef26-ff61-466e-9be7-4dd94bf3b9af/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"595.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d14b0b4e-3bda-448b-a7d6-388c53aef2b1\"}\n"} +{"Time":"2022-12-07T09:15:44.200871+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.200883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.200887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.200 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/organizations/8b0345d4-ff46-4dcb-88f0-19e0a4b8ba24/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"637µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"256a5672-9aa7-4496-a9df-449f4bfc8a5b\"}\n"} +{"Time":"2022-12-07T09:15:44.202505+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:44.202514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:44.202518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.202 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.202541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.202 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.202581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.202 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.20265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.202 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.202664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.202 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.202722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.202 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} +{"Time":"2022-12-07T09:15:44.20329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.203 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"662.004542ms\", \"status_code\": 101, \"latency_ms\": 662, \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\"}\n"} +{"Time":"2022-12-07T09:15:44.204876+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.204884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.204888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.204 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.083µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"143994ec-c6b3-4ffc-b3c9-5f9d06063fa0\"}\n"} +{"Time":"2022-12-07T09:15:44.204895+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.204898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.204901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.204 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.667µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"9dbb673d-b754-4877-9714-42a3ff92a3f8\"}\n"} +{"Time":"2022-12-07T09:15:44.205273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.205 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"27µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6db5dd58-4c6f-49bb-ab01-63976a7f0cb2\"}\n"} +{"Time":"2022-12-07T09:15:44.205286+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.205288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.205291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.205 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3c6499d3-53e0-4fee-99a6-2a4e89eb1632\"}\n"} +{"Time":"2022-12-07T09:15:44.206455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.206 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"546.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2537dc95-d5fb-4423-a157-4d6c75af4ad5\"}\n"} +{"Time":"2022-12-07T09:15:44.206507+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.206513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.206517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.206 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"615.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"241f4339-c9ac-4807-961e-35798c904d9f\"}\n"} +{"Time":"2022-12-07T09:15:44.206902+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:44.20691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:44.206914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.206 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"830.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d4595e35-ea57-41d3-8b1d-b2029a68fddf\"}\n"} +{"Time":"2022-12-07T09:15:44.207306+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.207313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.207317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/organizations/8b0345d4-ff46-4dcb-88f0-19e0a4b8ba24/templates/serene-hertz5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"595.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b131cfe-cc34-4e1d-a52c-a9c53def733e\"}\n"} +{"Time":"2022-12-07T09:15:44.207325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.207328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.207351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/organizations/5570ef26-ff61-466e-9be7-4dd94bf3b9af/templates/pedantic-kapitsa8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"563.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b91f1f04-5d1d-48b6-9fc0-1437176945c9\"}\n"} +{"Time":"2022-12-07T09:15:44.207743+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:44.207751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:44.207755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"550.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"156162f9-9459-4c04-9d45-53292f2a92ce\"}\n"} +{"Time":"2022-12-07T09:15:44.208122+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.20813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.208134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templates/bb3ca227-e806-486c-8b00-4777b5a26d69\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"534µs\", \"status_code\": 400, \"latency_ms\": 0, \"request_id\": \"d9ca9fb3-20e3-4256-ba90-3bf0fe9d2946\"}\n"} +{"Time":"2022-12-07T09:15:44.208142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"2022-12-07 08:15:44.208 [INFO]\t(stdlib)\t\u003cnet/http/server.go:3230\u003e\t(*Server).logf\t2022/12/07 09:15:44 http: superfluous response.WriteHeader call from github.com/coder/coder/coderd/tracing.(*StatusWriter).WriteHeader (status_writer.go:38)\n"} +{"Time":"2022-12-07T09:15:44.208205+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.208209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.208213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templates/4f2fc0fe-5a09-402a-9a4b-9d98768b28ab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"623.042µs\", \"status_code\": 304, \"latency_ms\": 0, \"request_id\": \"ad614744-d6d8-4b08-b06d-a9cb1e590753\"}\n"} +{"Time":"2022-12-07T09:15:44.20855+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:44.208558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:44.208562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"538.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a03e4a8f-d8d1-49b8-a7ec-6b60e1186900\"}\n"} +{"Time":"2022-12-07T09:15:44.208885+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.208893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.208896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templates/bb3ca227-e806-486c-8b00-4777b5a26d69\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"515.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7440f9e9-2cb6-40f8-aaf3-4eeaa6f7935f\"}\n"} +{"Time":"2022-12-07T09:15:44.209054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.208 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:44.209097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.209107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.20911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templates/4f2fc0fe-5a09-402a-9a4b-9d98768b28ab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"595.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fdefa0be-fdb3-4935-81f7-5db76b74ad88\"}\n"} +{"Time":"2022-12-07T09:15:44.209333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.209 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:44.209347+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:44.20935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:44.209354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"537.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d5eb64d4-3e19-4ad8-b199-32f97390d063\"}\n"} +{"Time":"2022-12-07T09:15:44.210501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} +{"Time":"2022-12-07T09:15:44.210511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} +{"Time":"2022-12-07T09:15:44.210515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:44.210688+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} +{"Time":"2022-12-07T09:15:44.210696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} +{"Time":"2022-12-07T09:15:44.2107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:44.210721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit","Output":"--- PASS: TestTemplateEdit (0.00s)\n"} +{"Time":"2022-12-07T09:15:44.210728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" --- PASS: TestTemplateEdit/FirstEmptyThenModified (0.36s)\n"} +{"Time":"2022-12-07T09:15:44.210734+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Elapsed":0.36} +{"Time":"2022-12-07T09:15:44.210741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" --- PASS: TestTemplateEdit/WithPropertiesThenEmptyEdit (0.36s)\n"} +{"Time":"2022-12-07T09:15:44.210751+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Elapsed":0.36} +{"Time":"2022-12-07T09:15:44.210754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" --- PASS: TestTemplateEdit/WithPropertiesThenModified (0.39s)\n"} +{"Time":"2022-12-07T09:15:44.210758+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Elapsed":0.39} +{"Time":"2022-12-07T09:15:44.210761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" --- PASS: TestTemplateEdit/InvalidDisplayName (0.39s)\n"} +{"Time":"2022-12-07T09:15:44.210764+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Elapsed":0.39} +{"Time":"2022-12-07T09:15:44.210767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" --- PASS: TestTemplateEdit/FirstEmptyThenNotModified (0.39s)\n"} +{"Time":"2022-12-07T09:15:44.222226+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Elapsed":0.39} +{"Time":"2022-12-07T09:15:44.222233+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit","Elapsed":0} +{"Time":"2022-12-07T09:15:44.222236+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} +{"Time":"2022-12-07T09:15:44.222238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} +{"Time":"2022-12-07T09:15:44.222242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.222 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"699.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e33a96d6-cf0c-484f-9f0c-03c39bc4e9b1\"}\n"} +{"Time":"2022-12-07T09:15:44.229111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.229 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"883.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b487bf65-c3ef-4fe4-87ea-a9a9b19524c0\"}\n"} +{"Time":"2022-12-07T09:15:44.230012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.229 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"601.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ffc569e-f20c-4f76-9fb3-9ffc81823e4f\"}\n"} +{"Time":"2022-12-07T09:15:44.230876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.230 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templates/a745dfb2-e349-43c4-8ee1-7346defa546c/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"565.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"412214f0-5ece-493a-ae80-425d59d04f4c\"}\n"} +{"Time":"2022-12-07T09:15:44.237563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.237 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templates/a745dfb2-e349-43c4-8ee1-7346defa546c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"845.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"48952f18-c1dd-41bd-9ba5-2d113e738e3b\"}\n"} +{"Time":"2022-12-07T09:15:44.238486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.238 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"632µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7eb271db-2ce5-4d1d-ade0-a5394889fdbb\"}\n"} +{"Time":"2022-12-07T09:15:44.239357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.239 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"613.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e079ab37-8314-4a7e-bdc7-d92b4dc2a618\"}\n"} +{"Time":"2022-12-07T09:15:44.239514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:80: 2022-12-07 08:15:44.239: cmd: closed pty: \u003cnil\u003e\n"} +{"Time":"2022-12-07T09:15:44.239605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.239 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:44.24217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:44.242249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush","Output":"--- PASS: TestTemplatePush (0.00s)\n"} +{"Time":"2022-12-07T09:15:44.242258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" --- PASS: TestTemplatePush/UseWorkingDir (0.84s)\n"} +{"Time":"2022-12-07T09:15:44.242262+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Elapsed":0.84} +{"Time":"2022-12-07T09:15:44.242268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" --- PASS: TestTemplatePush/OK (0.88s)\n"} +{"Time":"2022-12-07T09:15:44.242272+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Elapsed":0.88} +{"Time":"2022-12-07T09:15:44.242275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" --- PASS: TestTemplatePush/NewParameter (4.05s)\n"} +{"Time":"2022-12-07T09:15:44.290331+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Elapsed":4.05} +{"Time":"2022-12-07T09:15:44.290377+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush","Elapsed":0} +{"Time":"2022-12-07T09:15:44.290383+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} +{"Time":"2022-12-07T09:15:44.290388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} +{"Time":"2022-12-07T09:15:44.290396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.288 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"172.126625ms\", \"status_code\": 101, \"latency_ms\": 172, \"request_id\": \"6808910b-648a-4270-9de7-3a49f9ddf7d4\"}\n"} +{"Time":"2022-12-07T09:15:44.290405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.289 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"121.872291ms\", \"status_code\": 0, \"latency_ms\": 121, \"request_id\": \"c9bc92c9-d54a-40ca-a78c-0bd65d874eac\"}\n"} +{"Time":"2022-12-07T09:15:44.290413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.289 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaceagents/f2e0f4bc-6d92-4680-bb38-69d4846b8409/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"51.73575ms\", \"status_code\": 101, \"latency_ms\": 51, \"request_id\": \"13758e39-6f4b-4e75-8852-719528a07541\"}\n"} +{"Time":"2022-12-07T09:15:44.29092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.290 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} +{"Time":"2022-12-07T09:15:44.291034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.290 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"103.053209ms\", \"status_code\": 0, \"latency_ms\": 103, \"request_id\": \"163c1547-6dbc-4d51-91b1-c1d95d1db2f9\"}\n"} +{"Time":"2022-12-07T09:15:44.291456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" stuntest.go:64: STUN server shutdown\n"} +{"Time":"2022-12-07T09:15:44.291489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent","Output":"--- PASS: TestWorkspaceAgent (0.00s)\n"} +{"Time":"2022-12-07T09:15:44.291495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" --- PASS: TestWorkspaceAgent/Azure (1.37s)\n"} +{"Time":"2022-12-07T09:15:44.291498+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Elapsed":1.37} +{"Time":"2022-12-07T09:15:44.291502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" --- PASS: TestWorkspaceAgent/GoogleCloud (1.32s)\n"} +{"Time":"2022-12-07T09:15:44.291505+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Elapsed":1.32} +{"Time":"2022-12-07T09:15:44.291507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" --- PASS: TestWorkspaceAgent/AWS (1.66s)\n"} +{"Time":"2022-12-07T09:15:44.291511+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Elapsed":1.66} +{"Time":"2022-12-07T09:15:44.291513+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent","Elapsed":0} +{"Time":"2022-12-07T09:15:44.291515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Output":"FAIL\n"} +{"Time":"2022-12-07T09:15:44.29734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Output":"FAIL\tgithub.com/coder/coder/cli\t26.563s\n"} +{"Time":"2022-12-07T09:15:44.297352+01:00","Action":"fail","Package":"github.com/coder/coder/cli","Elapsed":26.563} From 3afeca98cdb1a93f41e0a9379213eb971abef454 Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Wed, 7 Dec 2022 09:27:46 +0100 Subject: [PATCH 06/16] WIP --- .github/workflows/coder.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index a6b39a99e19e1..966252fc77ddf 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -338,6 +338,12 @@ jobs: set -x gotestsum --junitfile="gotests.xml" --jsonfile="gotestsum.json" --packages="./..." --debug -- -parallel=8 -timeout=3m -short -failfast $COVERAGE_FLAGS + - uses: actions/upload-artifact@v3 + with: + name: gotestsum debug (TestEvents) + path: ./gotestsum.json + retention-days: 7 + - uses: codecov/codecov-action@v3 # This action has a tendency to error out unexpectedly, it has # the `fail_ci_if_error` option that defaults to `false`, but @@ -399,6 +405,12 @@ jobs: - name: Test with PostgreSQL Database run: make test-postgres + - uses: actions/upload-artifact@v3 + with: + name: gotestsum debug (TestEvents) + path: ./gotestsum.json + retention-days: 7 + - uses: codecov/codecov-action@v3 # This action has a tendency to error out unexpectedly, it has # the `fail_ci_if_error` option that defaults to `false`, but From 7ea26b60771a0c7327ea402086a5c21270693bac Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Wed, 7 Dec 2022 09:28:09 +0100 Subject: [PATCH 07/16] WIP --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index b401caa56c7bb..4d6bf0772a801 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,7 @@ vendor yarn-error.log gotests.coverage gotests.xml +gotestsum.json .idea .gitpod.yml .DS_Store From 14a79d1baee96d764c196956478b598d57dc7605 Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Wed, 7 Dec 2022 09:29:18 +0100 Subject: [PATCH 08/16] WIP --- gotest.json | 20607 -------------------------------------------------- 1 file changed, 20607 deletions(-) delete mode 100644 gotest.json diff --git a/gotest.json b/gotest.json deleted file mode 100644 index 02157a8f3eaa6..0000000000000 --- a/gotest.json +++ /dev/null @@ -1,20607 +0,0 @@ -{"Time":"2022-12-07T09:15:18.407131+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape"} -{"Time":"2022-12-07T09:15:18.407235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape","Output":"=== RUN Test_sshConfigExecEscape\n"} -{"Time":"2022-12-07T09:15:18.40725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape","Output":"=== PAUSE Test_sshConfigExecEscape\n"} -{"Time":"2022-12-07T09:15:18.407252+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape"} -{"Time":"2022-12-07T09:15:18.407254+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile"} -{"Time":"2022-12-07T09:15:18.407256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile","Output":"=== RUN TestCreateParameterMapFromFile\n"} -{"Time":"2022-12-07T09:15:18.407263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile","Output":"=== PAUSE TestCreateParameterMapFromFile\n"} -{"Time":"2022-12-07T09:15:18.40727+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile"} -{"Time":"2022-12-07T09:15:18.407275+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards"} -{"Time":"2022-12-07T09:15:18.407276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards","Output":"=== RUN Test_parsePortForwards\n"} -{"Time":"2022-12-07T09:15:18.407278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards","Output":"=== PAUSE Test_parsePortForwards\n"} -{"Time":"2022-12-07T09:15:18.407279+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards"} -{"Time":"2022-12-07T09:15:18.407281+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples"} -{"Time":"2022-12-07T09:15:18.407282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples","Output":"=== RUN Test_formatExamples\n"} -{"Time":"2022-12-07T09:15:18.407285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples","Output":"=== PAUSE Test_formatExamples\n"} -{"Time":"2022-12-07T09:15:18.407287+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples"} -{"Time":"2022-12-07T09:15:18.407289+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule"} -{"Time":"2022-12-07T09:15:18.40729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule","Output":"=== RUN TestParseCLISchedule\n"} -{"Time":"2022-12-07T09:15:18.407291+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndDayOfWeekAndLocation"} -{"Time":"2022-12-07T09:15:18.407295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndDayOfWeekAndLocation","Output":"=== RUN TestParseCLISchedule/TimeAndDayOfWeekAndLocation\n"} -{"Time":"2022-12-07T09:15:18.408151+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocation"} -{"Time":"2022-12-07T09:15:18.408164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocation","Output":"=== RUN TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocation\n"} -{"Time":"2022-12-07T09:15:18.408194+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocationButItsAllQuoted"} -{"Time":"2022-12-07T09:15:18.4082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocationButItsAllQuoted","Output":"=== RUN TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocationButItsAllQuoted\n"} -{"Time":"2022-12-07T09:15:18.408271+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDayOnly"} -{"Time":"2022-12-07T09:15:18.408278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDayOnly","Output":"=== RUN TestParseCLISchedule/TimeOfDayOnly\n"} -{"Time":"2022-12-07T09:15:18.408311+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/Time24Military"} -{"Time":"2022-12-07T09:15:18.408317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/Time24Military","Output":"=== RUN TestParseCLISchedule/Time24Military\n"} -{"Time":"2022-12-07T09:15:18.408365+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndTime"} -{"Time":"2022-12-07T09:15:18.408368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndTime","Output":"=== RUN TestParseCLISchedule/DayOfWeekAndTime\n"} -{"Time":"2022-12-07T09:15:18.409223+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndLocation"} -{"Time":"2022-12-07T09:15:18.409229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndLocation","Output":"=== RUN TestParseCLISchedule/TimeAndLocation\n"} -{"Time":"2022-12-07T09:15:18.409315+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/LazyTime"} -{"Time":"2022-12-07T09:15:18.40932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/LazyTime","Output":"=== RUN TestParseCLISchedule/LazyTime\n"} -{"Time":"2022-12-07T09:15:18.409362+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/ZeroPrefixedLazyTime"} -{"Time":"2022-12-07T09:15:18.409369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/ZeroPrefixedLazyTime","Output":"=== RUN TestParseCLISchedule/ZeroPrefixedLazyTime\n"} -{"Time":"2022-12-07T09:15:18.409431+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTime"} -{"Time":"2022-12-07T09:15:18.409436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTime","Output":"=== RUN TestParseCLISchedule/InvalidTime\n"} -{"Time":"2022-12-07T09:15:18.409438+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTime"} -{"Time":"2022-12-07T09:15:18.409439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTime","Output":"=== RUN TestParseCLISchedule/DayOfWeekAndInvalidTime\n"} -{"Time":"2022-12-07T09:15:18.409502+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTimeAndLocation"} -{"Time":"2022-12-07T09:15:18.409508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTimeAndLocation","Output":"=== RUN TestParseCLISchedule/InvalidTimeAndLocation\n"} -{"Time":"2022-12-07T09:15:18.40951+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTimeAndLocation"} -{"Time":"2022-12-07T09:15:18.409511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTimeAndLocation","Output":"=== RUN TestParseCLISchedule/DayOfWeekAndInvalidTimeAndLocation\n"} -{"Time":"2022-12-07T09:15:18.409513+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimezoneProvidedInsteadOfLocation"} -{"Time":"2022-12-07T09:15:18.409514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimezoneProvidedInsteadOfLocation","Output":"=== RUN TestParseCLISchedule/TimezoneProvidedInsteadOfLocation\n"} -{"Time":"2022-12-07T09:15:18.409539+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/WhoKnows"} -{"Time":"2022-12-07T09:15:18.409542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/WhoKnows","Output":"=== RUN TestParseCLISchedule/WhoKnows\n"} -{"Time":"2022-12-07T09:15:18.409548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule","Output":"--- PASS: TestParseCLISchedule (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndDayOfWeekAndLocation","Output":" --- PASS: TestParseCLISchedule/TimeAndDayOfWeekAndLocation (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409553+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndDayOfWeekAndLocation","Elapsed":0} -{"Time":"2022-12-07T09:15:18.409556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocation","Output":" --- PASS: TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocation (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409559+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocation","Elapsed":0} -{"Time":"2022-12-07T09:15:18.40956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocationButItsAllQuoted","Output":" --- PASS: TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocationButItsAllQuoted (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409563+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDay24HourAndDayOfWeekAndLocationButItsAllQuoted","Elapsed":0} -{"Time":"2022-12-07T09:15:18.409566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDayOnly","Output":" --- PASS: TestParseCLISchedule/TimeOfDayOnly (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409567+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeOfDayOnly","Elapsed":0} -{"Time":"2022-12-07T09:15:18.409569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/Time24Military","Output":" --- PASS: TestParseCLISchedule/Time24Military (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409571+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/Time24Military","Elapsed":0} -{"Time":"2022-12-07T09:15:18.409572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndTime","Output":" --- PASS: TestParseCLISchedule/DayOfWeekAndTime (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409574+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndTime","Elapsed":0} -{"Time":"2022-12-07T09:15:18.409575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndLocation","Output":" --- PASS: TestParseCLISchedule/TimeAndLocation (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409578+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimeAndLocation","Elapsed":0} -{"Time":"2022-12-07T09:15:18.40958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/LazyTime","Output":" --- PASS: TestParseCLISchedule/LazyTime (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409581+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/LazyTime","Elapsed":0} -{"Time":"2022-12-07T09:15:18.409583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/ZeroPrefixedLazyTime","Output":" --- PASS: TestParseCLISchedule/ZeroPrefixedLazyTime (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409585+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/ZeroPrefixedLazyTime","Elapsed":0} -{"Time":"2022-12-07T09:15:18.409586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTime","Output":" --- PASS: TestParseCLISchedule/InvalidTime (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409587+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTime","Elapsed":0} -{"Time":"2022-12-07T09:15:18.409589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTime","Output":" --- PASS: TestParseCLISchedule/DayOfWeekAndInvalidTime (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.40959+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTime","Elapsed":0} -{"Time":"2022-12-07T09:15:18.409592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTimeAndLocation","Output":" --- PASS: TestParseCLISchedule/InvalidTimeAndLocation (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409593+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/InvalidTimeAndLocation","Elapsed":0} -{"Time":"2022-12-07T09:15:18.409595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTimeAndLocation","Output":" --- PASS: TestParseCLISchedule/DayOfWeekAndInvalidTimeAndLocation (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409596+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/DayOfWeekAndInvalidTimeAndLocation","Elapsed":0} -{"Time":"2022-12-07T09:15:18.409598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimezoneProvidedInsteadOfLocation","Output":" --- PASS: TestParseCLISchedule/TimezoneProvidedInsteadOfLocation (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409599+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/TimezoneProvidedInsteadOfLocation","Elapsed":0} -{"Time":"2022-12-07T09:15:18.409605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/WhoKnows","Output":" --- PASS: TestParseCLISchedule/WhoKnows (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.409612+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule/WhoKnows","Elapsed":0} -{"Time":"2022-12-07T09:15:18.409613+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestParseCLISchedule","Elapsed":0} -{"Time":"2022-12-07T09:15:18.409614+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated"} -{"Time":"2022-12-07T09:15:18.40962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated","Output":"=== RUN TestVerifyWorkspaceOutdated\n"} -{"Time":"2022-12-07T09:15:18.409622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated","Output":"=== PAUSE TestVerifyWorkspaceOutdated\n"} -{"Time":"2022-12-07T09:15:18.409623+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated"} -{"Time":"2022-12-07T09:15:18.409625+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink"} -{"Time":"2022-12-07T09:15:18.409626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink","Output":"=== RUN TestBuildWorkspaceLink\n"} -{"Time":"2022-12-07T09:15:18.409634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink","Output":"=== PAUSE TestBuildWorkspaceLink\n"} -{"Time":"2022-12-07T09:15:18.409635+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink"} -{"Time":"2022-12-07T09:15:18.409636+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay"} -{"Time":"2022-12-07T09:15:18.409641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay","Output":"=== RUN TestDurationDisplay\n"} -{"Time":"2022-12-07T09:15:18.409646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay","Output":"=== PAUSE TestDurationDisplay\n"} -{"Time":"2022-12-07T09:15:18.409647+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay"} -{"Time":"2022-12-07T09:15:18.409649+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRelative"} -{"Time":"2022-12-07T09:15:18.40965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRelative","Output":"=== RUN TestRelative\n"} -{"Time":"2022-12-07T09:15:18.409654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRelative","Output":"=== PAUSE TestRelative\n"} -{"Time":"2022-12-07T09:15:18.409655+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRelative"} -{"Time":"2022-12-07T09:15:18.409659+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent"} -{"Time":"2022-12-07T09:15:18.409663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent","Output":"=== RUN TestWorkspaceAgent\n"} -{"Time":"2022-12-07T09:15:18.409671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent","Output":"=== PAUSE TestWorkspaceAgent\n"} -{"Time":"2022-12-07T09:15:18.409672+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent"} -{"Time":"2022-12-07T09:15:18.409676+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:18.409679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== RUN TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:18.409681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== PAUSE TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:18.409683+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:18.409684+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow"} -{"Time":"2022-12-07T09:15:18.409687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow\n"} -{"Time":"2022-12-07T09:15:18.409689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow\n"} -{"Time":"2022-12-07T09:15:18.409691+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow"} -{"Time":"2022-12-07T09:15:18.409693+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames"} -{"Time":"2022-12-07T09:15:18.409695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames","Output":"=== RUN TestConfigSSH_Hostnames\n"} -{"Time":"2022-12-07T09:15:18.409701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames","Output":"=== PAUSE TestConfigSSH_Hostnames\n"} -{"Time":"2022-12-07T09:15:18.409702+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames"} -{"Time":"2022-12-07T09:15:18.409703+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate"} -{"Time":"2022-12-07T09:15:18.409704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate","Output":"=== RUN TestCreate\n"} -{"Time":"2022-12-07T09:15:18.409727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate","Output":"=== PAUSE TestCreate\n"} -{"Time":"2022-12-07T09:15:18.409732+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate"} -{"Time":"2022-12-07T09:15:18.409734+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDelete"} -{"Time":"2022-12-07T09:15:18.409739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete","Output":"=== RUN TestDelete\n"} -{"Time":"2022-12-07T09:15:18.409741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete","Output":"=== PAUSE TestDelete\n"} -{"Time":"2022-12-07T09:15:18.409742+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDelete"} -{"Time":"2022-12-07T09:15:18.409744+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDotfiles"} -{"Time":"2022-12-07T09:15:18.409746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles","Output":"=== RUN TestDotfiles\n"} -{"Time":"2022-12-07T09:15:18.409753+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/MissingArg"} -{"Time":"2022-12-07T09:15:18.409754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/MissingArg","Output":"=== RUN TestDotfiles/MissingArg\n"} -{"Time":"2022-12-07T09:15:18.412134+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/NoInstallScript"} -{"Time":"2022-12-07T09:15:18.412138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/NoInstallScript","Output":"=== RUN TestDotfiles/NoInstallScript\n"} -{"Time":"2022-12-07T09:15:18.517236+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/InstallScript"} -{"Time":"2022-12-07T09:15:18.517255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/InstallScript","Output":"=== RUN TestDotfiles/InstallScript\n"} -{"Time":"2022-12-07T09:15:18.780085+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/SymlinkBackup"} -{"Time":"2022-12-07T09:15:18.780131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/SymlinkBackup","Output":"=== RUN TestDotfiles/SymlinkBackup\n"} -{"Time":"2022-12-07T09:15:18.895442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles","Output":"--- PASS: TestDotfiles (0.49s)\n"} -{"Time":"2022-12-07T09:15:18.895463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/MissingArg","Output":" --- PASS: TestDotfiles/MissingArg (0.00s)\n"} -{"Time":"2022-12-07T09:15:18.895474+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/MissingArg","Elapsed":0} -{"Time":"2022-12-07T09:15:18.89548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/NoInstallScript","Output":" --- PASS: TestDotfiles/NoInstallScript (0.11s)\n"} -{"Time":"2022-12-07T09:15:18.895484+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/NoInstallScript","Elapsed":0.11} -{"Time":"2022-12-07T09:15:18.8955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/InstallScript","Output":" --- PASS: TestDotfiles/InstallScript (0.26s)\n"} -{"Time":"2022-12-07T09:15:18.895503+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/InstallScript","Elapsed":0.26} -{"Time":"2022-12-07T09:15:18.895505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/SymlinkBackup","Output":" --- PASS: TestDotfiles/SymlinkBackup (0.12s)\n"} -{"Time":"2022-12-07T09:15:18.895506+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDotfiles/SymlinkBackup","Elapsed":0.12} -{"Time":"2022-12-07T09:15:18.895507+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDotfiles","Elapsed":0.49} -{"Time":"2022-12-07T09:15:18.895509+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass"} -{"Time":"2022-12-07T09:15:18.89551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass","Output":"=== RUN TestGitAskpass\n"} -{"Time":"2022-12-07T09:15:18.895534+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword"} -{"Time":"2022-12-07T09:15:18.895539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":"=== RUN TestGitAskpass/UsernameAndPassword\n"} -{"Time":"2022-12-07T09:15:18.899529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":" ptytest.go:103: 2022-12-07 08:15:18.899: cmd: stdout: \"something\"\n"} -{"Time":"2022-12-07T09:15:18.899569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":" gitaskpass_test.go:37: 2022-12-07 08:15:18.899: cmd: matched \"something\" = \"something\"\n"} -{"Time":"2022-12-07T09:15:18.902865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":" ptytest.go:103: 2022-12-07 08:15:18.902: cmd: stdout: \"bananas\"\n"} -{"Time":"2022-12-07T09:15:18.902903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":" gitaskpass_test.go:44: 2022-12-07 08:15:18.902: cmd: matched \"bananas\" = \"bananas\"\n"} -{"Time":"2022-12-07T09:15:18.902958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":" ptytest.go:80: 2022-12-07 08:15:18.902: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:18.903002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":" ptytest.go:80: 2022-12-07 08:15:18.902: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:18.903463+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/NoHost"} -{"Time":"2022-12-07T09:15:18.90347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/NoHost","Output":"=== RUN TestGitAskpass/NoHost\n"} -{"Time":"2022-12-07T09:15:18.905832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/NoHost","Output":" ptytest.go:103: 2022-12-07 08:15:18.905: cmd: stdout: \"Nope!\"\n"} -{"Time":"2022-12-07T09:15:18.905878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/NoHost","Output":" gitaskpass_test.go:60: 2022-12-07 08:15:18.905: cmd: matched \"Nope!\" = \"Nope!\"\n"} -{"Time":"2022-12-07T09:15:18.90589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/NoHost","Output":" ptytest.go:80: 2022-12-07 08:15:18.905: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:18.906277+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll"} -{"Time":"2022-12-07T09:15:18.906282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":"=== RUN TestGitAskpass/Poll\n"} -{"Time":"2022-12-07T09:15:18.908611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" ptytest.go:103: 2022-12-07 08:15:18.908: cmd: stdout: \"Open the following URL to authenticate with Git:\"\n"} -{"Time":"2022-12-07T09:15:18.908622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" ptytest.go:103: 2022-12-07 08:15:18.908: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:18.908625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" ptytest.go:103: 2022-12-07 08:15:18.908: cmd: stdout: \"\\thttps://something.org\"\n"} -{"Time":"2022-12-07T09:15:18.908627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" ptytest.go:103: 2022-12-07 08:15:18.908: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:20.413031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" ptytest.go:103: 2022-12-07 08:15:20.412: cmd: stdout: \"You've been authenticated with Git!\"\n"} -{"Time":"2022-12-07T09:15:20.413088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" ptytest.go:103: 2022-12-07 08:15:20.412: cmd: stdout: \"username\"\n"} -{"Time":"2022-12-07T09:15:20.413314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" gitaskpass_test.go:95: 2022-12-07 08:15:20.413: cmd: matched \"username\" = \"Open the following URL to authenticate with Git:\\r\\n\\r\\n\\thttps://something.org\\r\\n\\r\\nYou've been authenticated with Git!\\r\\nusername\"\n"} -{"Time":"2022-12-07T09:15:20.413335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" ptytest.go:80: 2022-12-07 08:15:20.413: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:20.41543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass","Output":"--- PASS: TestGitAskpass (1.52s)\n"} -{"Time":"2022-12-07T09:15:20.415689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Output":" --- PASS: TestGitAskpass/UsernameAndPassword (0.01s)\n"} -{"Time":"2022-12-07T09:15:20.415711+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/UsernameAndPassword","Elapsed":0.01} -{"Time":"2022-12-07T09:15:20.415736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/NoHost","Output":" --- PASS: TestGitAskpass/NoHost (0.00s)\n"} -{"Time":"2022-12-07T09:15:20.415755+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/NoHost","Elapsed":0} -{"Time":"2022-12-07T09:15:20.415769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Output":" --- PASS: TestGitAskpass/Poll (1.51s)\n"} -{"Time":"2022-12-07T09:15:20.415781+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass/Poll","Elapsed":1.51} -{"Time":"2022-12-07T09:15:20.415789+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestGitAskpass","Elapsed":1.52} -{"Time":"2022-12-07T09:15:20.415796+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestGitSSH"} -{"Time":"2022-12-07T09:15:20.415802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH","Output":"=== RUN TestGitSSH\n"} -{"Time":"2022-12-07T09:15:20.415811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH","Output":"=== PAUSE TestGitSSH\n"} -{"Time":"2022-12-07T09:15:20.415817+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestGitSSH"} -{"Time":"2022-12-07T09:15:20.41583+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestList"} -{"Time":"2022-12-07T09:15:20.415837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList","Output":"=== RUN TestList\n"} -{"Time":"2022-12-07T09:15:20.415845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList","Output":"=== PAUSE TestList\n"} -{"Time":"2022-12-07T09:15:20.415852+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestList"} -{"Time":"2022-12-07T09:15:20.415858+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLoadTest"} -{"Time":"2022-12-07T09:15:20.415864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLoadTest","Output":"=== RUN TestLoadTest\n"} -{"Time":"2022-12-07T09:15:20.415872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLoadTest","Output":" loadtest_test.go:29: This test is flakey. See https://github.com/coder/coder/issues/4942\n"} -{"Time":"2022-12-07T09:15:20.415891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLoadTest","Output":"--- SKIP: TestLoadTest (0.00s)\n"} -{"Time":"2022-12-07T09:15:20.415899+01:00","Action":"skip","Package":"github.com/coder/coder/cli","Test":"TestLoadTest","Elapsed":0} -{"Time":"2022-12-07T09:15:20.415906+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin"} -{"Time":"2022-12-07T09:15:20.415912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin","Output":"=== RUN TestLogin\n"} -{"Time":"2022-12-07T09:15:20.415925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin","Output":"=== PAUSE TestLogin\n"} -{"Time":"2022-12-07T09:15:20.415932+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin"} -{"Time":"2022-12-07T09:15:20.415939+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogout"} -{"Time":"2022-12-07T09:15:20.415945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout","Output":"=== RUN TestLogout\n"} -{"Time":"2022-12-07T09:15:20.415953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout","Output":"=== PAUSE TestLogout\n"} -{"Time":"2022-12-07T09:15:20.41596+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogout"} -{"Time":"2022-12-07T09:15:20.415967+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestPortForward"} -{"Time":"2022-12-07T09:15:20.415978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPortForward","Output":"=== RUN TestPortForward\n"} -{"Time":"2022-12-07T09:15:20.415987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPortForward","Output":"=== PAUSE TestPortForward\n"} -{"Time":"2022-12-07T09:15:20.415993+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestPortForward"} -{"Time":"2022-12-07T09:15:20.416+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestPublicKey"} -{"Time":"2022-12-07T09:15:20.416006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey","Output":"=== RUN TestPublicKey\n"} -{"Time":"2022-12-07T09:15:20.416016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey","Output":"=== PAUSE TestPublicKey\n"} -{"Time":"2022-12-07T09:15:20.416022+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestPublicKey"} -{"Time":"2022-12-07T09:15:20.41603+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:20.416036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== RUN TestRename\n"} -{"Time":"2022-12-07T09:15:20.416043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== PAUSE TestRename\n"} -{"Time":"2022-12-07T09:15:20.41605+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:20.416056+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestResetPassword"} -{"Time":"2022-12-07T09:15:20.416062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestResetPassword","Output":"=== RUN TestResetPassword\n"} -{"Time":"2022-12-07T09:15:20.416074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestResetPassword","Output":"--- SKIP: TestResetPassword (0.00s)\n"} -{"Time":"2022-12-07T09:15:20.416088+01:00","Action":"skip","Package":"github.com/coder/coder/cli","Test":"TestResetPassword","Elapsed":0} -{"Time":"2022-12-07T09:15:20.416095+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp"} -{"Time":"2022-12-07T09:15:20.416102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp","Output":"=== RUN TestCommandHelp\n"} -{"Time":"2022-12-07T09:15:20.416109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp","Output":"=== PAUSE TestCommandHelp\n"} -{"Time":"2022-12-07T09:15:20.416116+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp"} -{"Time":"2022-12-07T09:15:20.416122+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRoot"} -{"Time":"2022-12-07T09:15:20.416128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot","Output":"=== RUN TestRoot\n"} -{"Time":"2022-12-07T09:15:20.416136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot","Output":"=== PAUSE TestRoot\n"} -{"Time":"2022-12-07T09:15:20.416142+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRoot"} -{"Time":"2022-12-07T09:15:20.416149+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow"} -{"Time":"2022-12-07T09:15:20.416162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow","Output":"=== RUN TestScheduleShow\n"} -{"Time":"2022-12-07T09:15:20.416176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow","Output":"=== PAUSE TestScheduleShow\n"} -{"Time":"2022-12-07T09:15:20.416183+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow"} -{"Time":"2022-12-07T09:15:20.416197+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:20.416203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== RUN TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:20.416211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== PAUSE TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:20.416217+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:20.416224+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:20.41623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== RUN TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:20.416237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== PAUSE TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:20.416243+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:20.41625+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride"} -{"Time":"2022-12-07T09:15:20.416256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride","Output":"=== RUN TestScheduleOverride\n"} -{"Time":"2022-12-07T09:15:20.416263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride","Output":"=== PAUSE TestScheduleOverride\n"} -{"Time":"2022-12-07T09:15:20.41627+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride"} -{"Time":"2022-12-07T09:15:20.416276+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults"} -{"Time":"2022-12-07T09:15:20.41629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":"=== RUN TestScheduleStartDefaults\n"} -{"Time":"2022-12-07T09:15:20.441976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.441 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"331.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2d4ca45e-f26f-413a-b125-760545ec8c4a\"}\n"} -{"Time":"2022-12-07T09:15:20.442369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.442 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"78.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d879262a-f882-419e-8fab-73727d8cd9ff\"}\n"} -{"Time":"2022-12-07T09:15:20.443579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.443 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"749.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f2f1c860-5130-46e5-a9a6-7c51f254e98c\"}\n"} -{"Time":"2022-12-07T09:15:20.445236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.445 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/organizations/b0b516cc-699c-41cb-bee7-d92885361ee0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.395625ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"4c410843-2cce-4032-8313-5b51c38926c8\"}\n"} -{"Time":"2022-12-07T09:15:20.445374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" schedule_test.go:361: waiting for template version job 923ea154-5222-475c-a92a-24ea6848d74f\n"} -{"Time":"2022-12-07T09:15:20.472481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.472 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"871.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e41e82d7-b573-46ea-8524-789ce07a19ba\"}\n"} -{"Time":"2022-12-07T09:15:20.497976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.497 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.142708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"184e582e-1137-49d5-a971-a11b1ee9f956\"}\n"} -{"Time":"2022-12-07T09:15:20.5233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.346208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3276dd7c-bb89-4194-a1c2-8f4209a44b73\"}\n"} -{"Time":"2022-12-07T09:15:20.540613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.540 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:20.547748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.547 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.302333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f1e0e31b-6c0c-4589-8430-153fd45e2131\"}\n"} -{"Time":"2022-12-07T09:15:20.57374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.573 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.575375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"05374cf6-9ca4-495b-9a28-8350fca46046\"}\n"} -{"Time":"2022-12-07T09:15:20.592903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.592 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.593604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.593 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.594076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.593 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:20.594235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.594 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStartDefaults3574742674/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:20.594358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.594 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStartDefaults3574742674/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:20.59448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.594 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStartDefaults3574742674/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:20.594498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.594 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.595137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.594 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:20.598066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.597 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.605542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a6582475-07f9-4a7f-a14c-6e8b5965dbdc\"}\n"} -{"Time":"2022-12-07T09:15:20.623634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.623 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.528458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2236cb70-4a1c-4b0c-9f4b-6fc0c66cc72e\"}\n"} -{"Time":"2022-12-07T09:15:20.63775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.637 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"271.125µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:20.647454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.645 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.647489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.646 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:20.647818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.647 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.560583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ccd977bf-2036-4cb5-92cc-0c1fb17ca5ba\"}\n"} -{"Time":"2022-12-07T09:15:20.675067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.3765ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1c927dde-57f6-4a67-b9c9-d858030e9b74\"}\n"} -{"Time":"2022-12-07T09:15:20.700305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.696 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.700336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.697 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:20.700346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.697 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:20.700354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.697 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:20.700376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.697 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:20.700384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.697 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.700391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.697 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.700398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.965417ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"254f3235-0585-41a0-ba87-c25b3a32e170\"}\n"} -{"Time":"2022-12-07T09:15:20.700956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.700 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:20.700967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.723875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.723 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"902µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fdf9a641-e060-4f69-92b6-e047287e9337\"}\n"} -{"Time":"2022-12-07T09:15:20.750206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.184583ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"3920ead6-677d-4239-88c2-8f879245d5bd\"}\n"} -{"Time":"2022-12-07T09:15:20.751285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.751 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.751439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.751 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:20.751567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.751 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:20.751584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.751 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.751743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.751 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.752003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.781373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.781 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"9.145458ms\", \"status_code\": 200, \"latency_ms\": 9, \"request_id\": \"094d0453-9e23-409c-8386-8cdd26ca9e86\"}\n"} -{"Time":"2022-12-07T09:15:20.798899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.798 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.351708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"940ca450-1a40-4613-a3e5-2a4c827a2b94\"}\n"} -{"Time":"2022-12-07T09:15:20.804126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.803 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.804219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.803 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.804228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.803 [DEBUG]\t(provisionerd-flamboyant_lovelace0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.804237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.803 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"bdca9585-2428-4bb6-8c39-e8bfbb727f10\"}\n"} -{"Time":"2022-12-07T09:15:20.822963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.822 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/templateversions/923ea154-5222-475c-a92a-24ea6848d74f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.25875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d460859b-7af9-4b00-9755-7b00ab150c8c\"}\n"} -{"Time":"2022-12-07T09:15:20.827731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/organizations/b0b516cc-699c-41cb-bee7-d92885361ee0/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.856083ms\", \"status_code\": 201, \"latency_ms\": 3, \"request_id\": \"b13325b1-e390-461d-8bb1-6163d0129a7e\"}\n"} -{"Time":"2022-12-07T09:15:20.831815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/organizations/b0b516cc-699c-41cb-bee7-d92885361ee0/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.248875ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"0137d40b-829d-4413-87b4-0507c3f133fe\"}\n"} -{"Time":"2022-12-07T09:15:20.846666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.845 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"105.959µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"583b660a-7935-4a37-9cb4-321bf9a2a75c\"}\n"} -{"Time":"2022-12-07T09:15:20.847261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.846 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"86.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6fab4c6e-88f9-438b-8211-93e563e1e171\"}\n"} -{"Time":"2022-12-07T09:15:20.851863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.849 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/users/me/workspace/exciting-rubin6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.222083ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"52e4d7c3-1b9a-48f8-8ea5-2ab578a65332\"}\n"} -{"Time":"2022-12-07T09:15:20.856755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.856 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/workspaces/eb56adf1-a0ac-4ade-b7c9-c879ca88b306/autostart\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.19425ms\", \"status_code\": 204, \"latency_ms\": 1, \"request_id\": \"ec36e550-ab52-4dcc-9c00-2cc91749e665\"}\n"} -{"Time":"2022-12-07T09:15:20.857921+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.857 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56491\", \"path\": \"/api/v2/users/me/workspace/exciting-rubin6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"778.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a5e9d74-b3c1-47e0-b86a-e359624d9ba7\"}\n"} -{"Time":"2022-12-07T09:15:20.858642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" t.go:81: 2022-12-07 08:15:20.858 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:20.86093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:20.86108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Output":"--- PASS: TestScheduleStartDefaults (0.44s)\n"} -{"Time":"2022-12-07T09:15:20.861101+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleStartDefaults","Elapsed":0.44} -{"Time":"2022-12-07T09:15:20.861115+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer"} -{"Time":"2022-12-07T09:15:20.86112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer","Output":"=== RUN TestServer\n"} -{"Time":"2022-12-07T09:15:20.861131+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/Production"} -{"Time":"2022-12-07T09:15:20.861151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Production","Output":"=== RUN TestServer/Production\n"} -{"Time":"2022-12-07T09:15:20.861242+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres"} -{"Time":"2022-12-07T09:15:20.86125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":"=== RUN TestServer/BuiltinPostgres\n"} -{"Time":"2022-12-07T09:15:20.861256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":"=== PAUSE TestServer/BuiltinPostgres\n"} -{"Time":"2022-12-07T09:15:20.86126+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres"} -{"Time":"2022-12-07T09:15:20.861265+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL"} -{"Time":"2022-12-07T09:15:20.861269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":"=== RUN TestServer/BuiltinPostgresURL\n"} -{"Time":"2022-12-07T09:15:20.861274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":"=== PAUSE TestServer/BuiltinPostgresURL\n"} -{"Time":"2022-12-07T09:15:20.861286+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL"} -{"Time":"2022-12-07T09:15:20.861292+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL"} -{"Time":"2022-12-07T09:15:20.861297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":"=== RUN TestServer/LocalAccessURL\n"} -{"Time":"2022-12-07T09:15:20.861301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":"=== PAUSE TestServer/LocalAccessURL\n"} -{"Time":"2022-12-07T09:15:20.861306+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL"} -{"Time":"2022-12-07T09:15:20.861309+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL"} -{"Time":"2022-12-07T09:15:20.861313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":"=== RUN TestServer/RemoteAccessURL\n"} -{"Time":"2022-12-07T09:15:20.861322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":"=== PAUSE TestServer/RemoteAccessURL\n"} -{"Time":"2022-12-07T09:15:20.861326+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL"} -{"Time":"2022-12-07T09:15:20.861333+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL"} -{"Time":"2022-12-07T09:15:20.861339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":"=== RUN TestServer/NoWarningWithRemoteAccessURL\n"} -{"Time":"2022-12-07T09:15:20.861344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":"=== PAUSE TestServer/NoWarningWithRemoteAccessURL\n"} -{"Time":"2022-12-07T09:15:20.861347+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL"} -{"Time":"2022-12-07T09:15:20.861354+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL"} -{"Time":"2022-12-07T09:15:20.861359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL","Output":"=== RUN TestServer/NoSchemeAccessURL\n"} -{"Time":"2022-12-07T09:15:20.861364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL","Output":"=== PAUSE TestServer/NoSchemeAccessURL\n"} -{"Time":"2022-12-07T09:15:20.861368+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL"} -{"Time":"2022-12-07T09:15:20.861374+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion"} -{"Time":"2022-12-07T09:15:20.861378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion","Output":"=== RUN TestServer/TLSBadVersion\n"} -{"Time":"2022-12-07T09:15:20.861426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion","Output":"=== PAUSE TestServer/TLSBadVersion\n"} -{"Time":"2022-12-07T09:15:20.861443+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion"} -{"Time":"2022-12-07T09:15:20.86145+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth"} -{"Time":"2022-12-07T09:15:20.861456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth","Output":"=== RUN TestServer/TLSBadClientAuth\n"} -{"Time":"2022-12-07T09:15:20.861461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth","Output":"=== PAUSE TestServer/TLSBadClientAuth\n"} -{"Time":"2022-12-07T09:15:20.861468+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth"} -{"Time":"2022-12-07T09:15:20.861476+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid"} -{"Time":"2022-12-07T09:15:20.861482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid","Output":"=== RUN TestServer/TLSInvalid\n"} -{"Time":"2022-12-07T09:15:20.861488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid","Output":"=== PAUSE TestServer/TLSInvalid\n"} -{"Time":"2022-12-07T09:15:20.861493+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid"} -{"Time":"2022-12-07T09:15:20.861497+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid"} -{"Time":"2022-12-07T09:15:20.861501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid","Output":"=== RUN TestServer/TLSValid\n"} -{"Time":"2022-12-07T09:15:20.861509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid","Output":"=== PAUSE TestServer/TLSValid\n"} -{"Time":"2022-12-07T09:15:20.861514+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid"} -{"Time":"2022-12-07T09:15:20.861518+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple"} -{"Time":"2022-12-07T09:15:20.861535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple","Output":"=== RUN TestServer/TLSValidMultiple\n"} -{"Time":"2022-12-07T09:15:20.861541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple","Output":"=== PAUSE TestServer/TLSValidMultiple\n"} -{"Time":"2022-12-07T09:15:20.861545+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple"} -{"Time":"2022-12-07T09:15:20.86159+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/Shutdown"} -{"Time":"2022-12-07T09:15:20.861595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Shutdown","Output":"=== RUN TestServer/Shutdown\n"} -{"Time":"2022-12-07T09:15:20.892866+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak"} -{"Time":"2022-12-07T09:15:20.89291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak","Output":"=== RUN TestServer/TracerNoLeak\n"} -{"Time":"2022-12-07T09:15:20.892917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak","Output":"=== PAUSE TestServer/TracerNoLeak\n"} -{"Time":"2022-12-07T09:15:20.89292+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak"} -{"Time":"2022-12-07T09:15:20.892923+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry"} -{"Time":"2022-12-07T09:15:20.892927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry","Output":"=== RUN TestServer/Telemetry\n"} -{"Time":"2022-12-07T09:15:20.892933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry","Output":"=== PAUSE TestServer/Telemetry\n"} -{"Time":"2022-12-07T09:15:20.892937+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry"} -{"Time":"2022-12-07T09:15:20.89294+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus"} -{"Time":"2022-12-07T09:15:20.892957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":"=== RUN TestServer/Prometheus\n"} -{"Time":"2022-12-07T09:15:20.892967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":"=== PAUSE TestServer/Prometheus\n"} -{"Time":"2022-12-07T09:15:20.892971+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus"} -{"Time":"2022-12-07T09:15:20.892974+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth"} -{"Time":"2022-12-07T09:15:20.892976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth","Output":"=== RUN TestServer/GitHubOAuth\n"} -{"Time":"2022-12-07T09:15:20.89298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth","Output":"=== PAUSE TestServer/GitHubOAuth\n"} -{"Time":"2022-12-07T09:15:20.892982+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth"} -{"Time":"2022-12-07T09:15:20.892984+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit"} -{"Time":"2022-12-07T09:15:20.892995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit","Output":"=== RUN TestServer/RateLimit\n"} -{"Time":"2022-12-07T09:15:20.892998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit","Output":"=== PAUSE TestServer/RateLimit\n"} -{"Time":"2022-12-07T09:15:20.893001+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit"} -{"Time":"2022-12-07T09:15:20.893004+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres"} -{"Time":"2022-12-07T09:15:20.893007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":"=== CONT TestServer/BuiltinPostgres\n"} -{"Time":"2022-12-07T09:15:20.89301+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid"} -{"Time":"2022-12-07T09:15:20.893014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid","Output":"=== CONT TestServer/TLSInvalid\n"} -{"Time":"2022-12-07T09:15:20.893016+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry"} -{"Time":"2022-12-07T09:15:20.893018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry","Output":"=== CONT TestServer/Telemetry\n"} -{"Time":"2022-12-07T09:15:20.893198+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple"} -{"Time":"2022-12-07T09:15:20.893236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple","Output":"=== CONT TestServer/TLSValidMultiple\n"} -{"Time":"2022-12-07T09:15:20.893531+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak"} -{"Time":"2022-12-07T09:15:20.89354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak","Output":"=== CONT TestServer/TracerNoLeak\n"} -{"Time":"2022-12-07T09:15:20.894711+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL"} -{"Time":"2022-12-07T09:15:20.894728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":"=== CONT TestServer/NoWarningWithRemoteAccessURL\n"} -{"Time":"2022-12-07T09:15:20.895663+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth"} -{"Time":"2022-12-07T09:15:20.895677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth","Output":"=== CONT TestServer/GitHubOAuth\n"} -{"Time":"2022-12-07T09:15:20.895683+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit"} -{"Time":"2022-12-07T09:15:20.895688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit","Output":"=== CONT TestServer/RateLimit\n"} -{"Time":"2022-12-07T09:15:20.899036+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default"} -{"Time":"2022-12-07T09:15:20.899051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default","Output":"=== RUN TestServer/RateLimit/Default\n"} -{"Time":"2022-12-07T09:15:20.899054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default","Output":"=== PAUSE TestServer/RateLimit/Default\n"} -{"Time":"2022-12-07T09:15:20.899055+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default"} -{"Time":"2022-12-07T09:15:20.899057+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed"} -{"Time":"2022-12-07T09:15:20.899058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed","Output":"=== RUN TestServer/RateLimit/Changed\n"} -{"Time":"2022-12-07T09:15:20.899061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed","Output":"=== PAUSE TestServer/RateLimit/Changed\n"} -{"Time":"2022-12-07T09:15:20.899062+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed"} -{"Time":"2022-12-07T09:15:20.899113+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled"} -{"Time":"2022-12-07T09:15:20.899269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled","Output":"=== RUN TestServer/RateLimit/Disabled\n"} -{"Time":"2022-12-07T09:15:20.899291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled","Output":"=== PAUSE TestServer/RateLimit/Disabled\n"} -{"Time":"2022-12-07T09:15:20.899293+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled"} -{"Time":"2022-12-07T09:15:20.899985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL"} -{"Time":"2022-12-07T09:15:20.89999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":"=== CONT TestServer/RemoteAccessURL\n"} -{"Time":"2022-12-07T09:15:20.899992+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey"} -{"Time":"2022-12-07T09:15:20.899994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey","Output":"=== RUN TestServer/TLSInvalid/NoCertAndKey\n"} -{"Time":"2022-12-07T09:15:20.900003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey","Output":"=== PAUSE TestServer/TLSInvalid/NoCertAndKey\n"} -{"Time":"2022-12-07T09:15:20.900004+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey"} -{"Time":"2022-12-07T09:15:20.900005+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert"} -{"Time":"2022-12-07T09:15:20.900006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert","Output":"=== RUN TestServer/TLSInvalid/NoCert\n"} -{"Time":"2022-12-07T09:15:20.900008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert","Output":"=== PAUSE TestServer/TLSInvalid/NoCert\n"} -{"Time":"2022-12-07T09:15:20.900009+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert"} -{"Time":"2022-12-07T09:15:20.90001+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey"} -{"Time":"2022-12-07T09:15:20.900012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey","Output":"=== RUN TestServer/TLSInvalid/NoKey\n"} -{"Time":"2022-12-07T09:15:20.900013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey","Output":"=== PAUSE TestServer/TLSInvalid/NoKey\n"} -{"Time":"2022-12-07T09:15:20.900014+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey"} -{"Time":"2022-12-07T09:15:20.900016+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount"} -{"Time":"2022-12-07T09:15:20.90002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount","Output":"=== RUN TestServer/TLSInvalid/MismatchedCount\n"} -{"Time":"2022-12-07T09:15:20.900022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount","Output":"=== PAUSE TestServer/TLSInvalid/MismatchedCount\n"} -{"Time":"2022-12-07T09:15:20.900023+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount"} -{"Time":"2022-12-07T09:15:20.900025+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey"} -{"Time":"2022-12-07T09:15:20.900026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey","Output":"=== RUN TestServer/TLSInvalid/MismatchedCertAndKey\n"} -{"Time":"2022-12-07T09:15:20.900028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey","Output":"=== PAUSE TestServer/TLSInvalid/MismatchedCertAndKey\n"} -{"Time":"2022-12-07T09:15:20.90003+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey"} -{"Time":"2022-12-07T09:15:20.900031+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL"} -{"Time":"2022-12-07T09:15:20.900032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":"=== CONT TestServer/LocalAccessURL\n"} -{"Time":"2022-12-07T09:15:20.906733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres"} -{"Time":"2022-12-07T09:15:20.90676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":"=== CONT TestServer/BuiltinPostgres\n"} -{"Time":"2022-12-07T09:15:20.906766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:20.906: cmd: stdout: \"\\x1b[1mCoder v0.0.0-devel\\x1b[0m - Software development on your infrastucture\"\n"} -{"Time":"2022-12-07T09:15:20.906772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:20.906: cmd: stdout: \"Using built-in PostgreSQL (/tmp/TestServerBuiltinPostgres2910781540/002/postgres)\"\n"} -{"Time":"2022-12-07T09:15:20.907247+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL"} -{"Time":"2022-12-07T09:15:20.907257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":"=== CONT TestServer/RemoteAccessURL\n"} -{"Time":"2022-12-07T09:15:20.907267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.907: cmd: stdout: \"\\x1b[1mCoder v0.0.0-devel\\x1b[0m - Software development on your infrastucture\"\n"} -{"Time":"2022-12-07T09:15:20.907662+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL"} -{"Time":"2022-12-07T09:15:20.907683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":"=== CONT TestServer/NoWarningWithRemoteAccessURL\n"} -{"Time":"2022-12-07T09:15:20.907686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.907: cmd: stdout: \"\\x1b[1mCoder v0.0.0-devel\\x1b[0m - Software development on your infrastucture\"\n"} -{"Time":"2022-12-07T09:15:20.908607+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL"} -{"Time":"2022-12-07T09:15:20.908636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":"=== CONT TestServer/LocalAccessURL\n"} -{"Time":"2022-12-07T09:15:20.908678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.908: cmd: stdout: \"\\x1b[1mCoder v0.0.0-devel\\x1b[0m - Software development on your infrastucture\"\n"} -{"Time":"2022-12-07T09:15:20.910065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.909: cmd: stdout: \"Warning: The access URL \\x1b[;mhttp://localhost:3000/\\x1b[0m isn't externally reachable, this may cause unexpected problems when creating workspaces. Generate a unique *.try.coder.app URL by not specifying an access URL.\"\n"} -{"Time":"2022-12-07T09:15:20.911846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.911: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:20.91186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.911: cmd: stdout: \"View the Web UI: http://localhost:3000/\"\n"} -{"Time":"2022-12-07T09:15:20.911863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL"} -{"Time":"2022-12-07T09:15:20.911865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":"=== CONT TestServer/RemoteAccessURL\n"} -{"Time":"2022-12-07T09:15:20.911868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.911: cmd: stdout: \"Warning: The access URL \\x1b[;mhttps://foobarbaz.mydomain\\x1b[0m could not be resolved, this may cause unexpected problems when creating workspaces. Generate a unique *.try.coder.app URL by not specifying an access URL.\"\n"} -{"Time":"2022-12-07T09:15:20.91187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.911: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:20.912458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.911: cmd: stdout: \"View the Web UI: https://foobarbaz.mydomain\"\n"} -{"Time":"2022-12-07T09:15:20.930355+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL"} -{"Time":"2022-12-07T09:15:20.930374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":"=== CONT TestServer/NoWarningWithRemoteAccessURL\n"} -{"Time":"2022-12-07T09:15:20.930379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.929: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:20.930381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.929: cmd: stdout: \"View the Web UI: https://google.com\"\n"} -{"Time":"2022-12-07T09:15:20.932798+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL"} -{"Time":"2022-12-07T09:15:20.932825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":"=== CONT TestServer/LocalAccessURL\n"} -{"Time":"2022-12-07T09:15:20.932835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.932: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:20.932838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.932: cmd: stdout: \"Get started by creating the first user (in a new terminal):\"\n"} -{"Time":"2022-12-07T09:15:20.932841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.932: cmd: stdout: \" \\x1b[;mcoder login http://localhost:3000/\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:20.932843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.932: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:20.932844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.932: cmd: stdout: \"==\u003e Logs will stream in below (press ctrl+c to gracefully exit):\"\n"} -{"Time":"2022-12-07T09:15:20.938479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL"} -{"Time":"2022-12-07T09:15:20.938489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":"=== CONT TestServer/RemoteAccessURL\n"} -{"Time":"2022-12-07T09:15:20.938492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.938: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:20.938494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.938: cmd: stdout: \"Get started by creating the first user (in a new terminal):\"\n"} -{"Time":"2022-12-07T09:15:20.938502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.938: cmd: stdout: \" \\x1b[;mcoder login https://foobarbaz.mydomain\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:20.938504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.938: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:20.938505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.938: cmd: stdout: \"==\u003e Logs will stream in below (press ctrl+c to gracefully exit):\"\n"} -{"Time":"2022-12-07T09:15:20.939985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL"} -{"Time":"2022-12-07T09:15:20.940018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":"=== CONT TestServer/BuiltinPostgresURL\n"} -{"Time":"2022-12-07T09:15:20.953318+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL"} -{"Time":"2022-12-07T09:15:20.953337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":"=== CONT TestServer/RemoteAccessURL\n"} -{"Time":"2022-12-07T09:15:20.953341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" server_test.go:179: 2022-12-07 08:15:20.952: cmd: matched \"this may cause unexpected problems when creating workspaces\" = \"\\x1b[1mCoder v0.0.0-devel\\x1b[0m - Software development on your infrastucture\\r\\nWarning: The access URL \\x1b[;mhttps://foobarbaz.mydomain\\x1b[0m could not be resolved, this may cause unexpected problems when creating workspaces\"\n"} -{"Time":"2022-12-07T09:15:20.953345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" server_test.go:180: 2022-12-07 08:15:20.953: cmd: matched \"View the Web UI: https://foobarbaz.mydomain\" = \". Generate a unique *.try.coder.app URL by not specifying an access URL.\\r\\n\\r\\nView the Web UI: https://foobarbaz.mydomain\"\n"} -{"Time":"2022-12-07T09:15:20.953978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" ptytest.go:80: 2022-12-07 08:15:20.953: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:20.954597+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL"} -{"Time":"2022-12-07T09:15:20.954603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":"=== CONT TestServer/NoWarningWithRemoteAccessURL\n"} -{"Time":"2022-12-07T09:15:20.954606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.954: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:20.957139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.954: cmd: stdout: \"Get started by creating the first user (in a new terminal):\"\n"} -{"Time":"2022-12-07T09:15:20.957146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.957: cmd: stdout: \" \\x1b[;mcoder login https://google.com\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:20.957148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.957: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:20.95715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.957: cmd: stdout: \"==\u003e Logs will stream in below (press ctrl+c to gracefully exit):\"\n"} -{"Time":"2022-12-07T09:15:20.958307+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL"} -{"Time":"2022-12-07T09:15:20.958321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":"=== CONT TestServer/LocalAccessURL\n"} -{"Time":"2022-12-07T09:15:20.958325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" server_test.go:147: 2022-12-07 08:15:20.958: cmd: matched \"this may cause unexpected problems when creating workspaces\" = \"\\x1b[1mCoder v0.0.0-devel\\x1b[0m - Software development on your infrastucture\\r\\nWarning: The access URL \\x1b[;mhttp://localhost:3000/\\x1b[0m isn't externally reachable, this may cause unexpected problems when creating workspaces\"\n"} -{"Time":"2022-12-07T09:15:20.958582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" server_test.go:148: 2022-12-07 08:15:20.958: cmd: matched \"View the Web UI: http://localhost:3000/\" = \". Generate a unique *.try.coder.app URL by not specifying an access URL.\\r\\n\\r\\nView the Web UI: http://localhost:3000/\"\n"} -{"Time":"2022-12-07T09:15:20.964492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.964: cmd: stdout: \"\\x1b[1mInterrupt caught, gracefully exiting. Use ctrl+\\\\ to force quit\\x1b[0m\"\n"} -{"Time":"2022-12-07T09:15:20.964511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.964: cmd: stdout: \"Shutting down API server...\"\n"} -{"Time":"2022-12-07T09:15:20.964513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.964: cmd: stdout: \"Gracefully shut down API server\"\n"} -{"Time":"2022-12-07T09:15:20.964515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.964: cmd: stdout: \"Waiting for WebSocket connections to close...\"\n"} -{"Time":"2022-12-07T09:15:20.964517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.964: cmd: stdout: \"Done waiting for WebSocket connections\"\n"} -{"Time":"2022-12-07T09:15:20.96452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" ptytest.go:80: 2022-12-07 08:15:20.964: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:20.964754+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion"} -{"Time":"2022-12-07T09:15:20.964764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion","Output":"=== CONT TestServer/TLSBadVersion\n"} -{"Time":"2022-12-07T09:15:20.970378+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth"} -{"Time":"2022-12-07T09:15:20.970389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth","Output":"=== CONT TestServer/TLSBadClientAuth\n"} -{"Time":"2022-12-07T09:15:20.971122+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL"} -{"Time":"2022-12-07T09:15:20.971131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":"=== CONT TestServer/BuiltinPostgresURL\n"} -{"Time":"2022-12-07T09:15:20.971134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":" ptytest.go:103: 2022-12-07 08:15:20.970: cmd: stdout: \"psql \\\"postgres://coder@localhost:56521/coder?sslmode=disable\u0026password=FEZrm3rsuTMbAk0r\\\"\"\n"} -{"Time":"2022-12-07T09:15:20.971138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":" server_test.go:119: 2022-12-07 08:15:20.971: cmd: matched \"psql\" = \"psql\"\n"} -{"Time":"2022-12-07T09:15:20.971141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":" ptytest.go:80: 2022-12-07 08:15:20.971: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:20.974956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL"} -{"Time":"2022-12-07T09:15:20.974962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL","Output":"=== CONT TestServer/NoSchemeAccessURL\n"} -{"Time":"2022-12-07T09:15:20.977063+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid"} -{"Time":"2022-12-07T09:15:20.977075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid","Output":"=== CONT TestServer/TLSValid\n"} -{"Time":"2022-12-07T09:15:20.978568+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus"} -{"Time":"2022-12-07T09:15:20.978578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":"=== CONT TestServer/Prometheus\n"} -{"Time":"2022-12-07T09:15:20.980344+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL"} -{"Time":"2022-12-07T09:15:20.980355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":"=== CONT TestServer/NoWarningWithRemoteAccessURL\n"} -{"Time":"2022-12-07T09:15:20.980357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" server_test.go:209: 2022-12-07 08:15:20.980: cmd: matched \"View the Web UI: https://google.com\" = \"\\x1b[1mCoder v0.0.0-devel\\x1b[0m - Software development on your infrastucture\\r\\n\\r\\nView the Web UI: https://google.com\"\n"} -{"Time":"2022-12-07T09:15:20.980696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" ptytest.go:80: 2022-12-07 08:15:20.980: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:20.981985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default"} -{"Time":"2022-12-07T09:15:20.982001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default","Output":"=== CONT TestServer/RateLimit/Default\n"} -{"Time":"2022-12-07T09:15:20.982006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled"} -{"Time":"2022-12-07T09:15:20.98201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled","Output":"=== CONT TestServer/RateLimit/Disabled\n"} -{"Time":"2022-12-07T09:15:20.982014+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed"} -{"Time":"2022-12-07T09:15:20.982028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed","Output":"=== CONT TestServer/RateLimit/Changed\n"} -{"Time":"2022-12-07T09:15:20.985964+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey"} -{"Time":"2022-12-07T09:15:20.985977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey","Output":"=== CONT TestServer/TLSInvalid/NoCertAndKey\n"} -{"Time":"2022-12-07T09:15:21.006636+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount"} -{"Time":"2022-12-07T09:15:21.006652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount","Output":"=== CONT TestServer/TLSInvalid/MismatchedCount\n"} -{"Time":"2022-12-07T09:15:21.023106+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey"} -{"Time":"2022-12-07T09:15:21.02313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey","Output":"=== CONT TestServer/TLSInvalid/MismatchedCertAndKey\n"} -{"Time":"2022-12-07T09:15:21.027644+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey"} -{"Time":"2022-12-07T09:15:21.027655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey","Output":"=== CONT TestServer/TLSInvalid/NoKey\n"} -{"Time":"2022-12-07T09:15:21.029089+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert"} -{"Time":"2022-12-07T09:15:21.029094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert","Output":"=== CONT TestServer/TLSInvalid/NoCert\n"} -{"Time":"2022-12-07T09:15:21.034761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus"} -{"Time":"2022-12-07T09:15:21.034775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":"=== CONT TestServer/Prometheus\n"} -{"Time":"2022-12-07T09:15:21.034779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP coderd_api_active_users_duration_hour The number of users that have been active within the last hour.\n"} -{"Time":"2022-12-07T09:15:21.034782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE coderd_api_active_users_duration_hour gauge\n"} -{"Time":"2022-12-07T09:15:21.034793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP coderd_api_concurrent_requests The number of concurrent API requests\n"} -{"Time":"2022-12-07T09:15:21.034795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE coderd_api_concurrent_requests gauge\n"} -{"Time":"2022-12-07T09:15:21.034798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_concurrent_requests 0\n"} -{"Time":"2022-12-07T09:15:21.034799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP coderd_api_concurrent_websockets The total number of concurrent API websockets\n"} -{"Time":"2022-12-07T09:15:21.034814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE coderd_api_concurrent_websockets gauge\n"} -{"Time":"2022-12-07T09:15:21.034815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_concurrent_websockets 0\n"} -{"Time":"2022-12-07T09:15:21.034817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP coderd_api_request_latencies_ms Latency distribution of requests in milliseconds\n"} -{"Time":"2022-12-07T09:15:21.034819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE coderd_api_request_latencies_ms histogram\n"} -{"Time":"2022-12-07T09:15:21.034823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"1\"} 1\n"} -{"Time":"2022-12-07T09:15:21.034825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"5\"} 1\n"} -{"Time":"2022-12-07T09:15:21.034827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"10\"} 1\n"} -{"Time":"2022-12-07T09:15:21.034829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"25\"} 1\n"} -{"Time":"2022-12-07T09:15:21.03483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"50\"} 1\n"} -{"Time":"2022-12-07T09:15:21.034832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"100\"} 1\n"} -{"Time":"2022-12-07T09:15:21.034833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"500\"} 1\n"} -{"Time":"2022-12-07T09:15:21.034836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"1000\"} 1\n"} -{"Time":"2022-12-07T09:15:21.034838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"5000\"} 1\n"} -{"Time":"2022-12-07T09:15:21.034839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"10000\"} 1\n"} -{"Time":"2022-12-07T09:15:21.034841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"30000\"} 1\n"} -{"Time":"2022-12-07T09:15:21.034842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_bucket{method=\"GET\",path=\"/api/v2/users/first\",le=\"+Inf\"} 1\n"} -{"Time":"2022-12-07T09:15:21.034843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_sum{method=\"GET\",path=\"/api/v2/users/first\"} 0.099125\n"} -{"Time":"2022-12-07T09:15:21.034845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_request_latencies_ms_count{method=\"GET\",path=\"/api/v2/users/first\"} 1\n"} -{"Time":"2022-12-07T09:15:21.034847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP coderd_api_requests_processed_total The total number of processed API requests\n"} -{"Time":"2022-12-07T09:15:21.03485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE coderd_api_requests_processed_total counter\n"} -{"Time":"2022-12-07T09:15:21.034852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned coderd_api_requests_processed_total{code=\"404\",method=\"GET\",path=\"/api/v2/users/first\"} 1\n"} -{"Time":"2022-12-07T09:15:21.034853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP coderd_api_workspace_latest_build_total The latest workspace builds with a status.\n"} -{"Time":"2022-12-07T09:15:21.034855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE coderd_api_workspace_latest_build_total gauge\n"} -{"Time":"2022-12-07T09:15:21.034856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_gc_duration_seconds A summary of the pause duration of garbage collection cycles.\n"} -{"Time":"2022-12-07T09:15:21.034857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_gc_duration_seconds summary\n"} -{"Time":"2022-12-07T09:15:21.034859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_gc_duration_seconds{quantile=\"0\"} 2.7875e-05\n"} -{"Time":"2022-12-07T09:15:21.03486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_gc_duration_seconds{quantile=\"0.25\"} 0.000114791\n"} -{"Time":"2022-12-07T09:15:21.034862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_gc_duration_seconds{quantile=\"0.5\"} 0.000157624\n"} -{"Time":"2022-12-07T09:15:21.034863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_gc_duration_seconds{quantile=\"0.75\"} 0.000262542\n"} -{"Time":"2022-12-07T09:15:21.034865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_gc_duration_seconds{quantile=\"1\"} 0.0013015\n"} -{"Time":"2022-12-07T09:15:21.034866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_gc_duration_seconds_sum 0.005762207\n"} -{"Time":"2022-12-07T09:15:21.034867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_gc_duration_seconds_count 21\n"} -{"Time":"2022-12-07T09:15:21.034869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_goroutines Number of goroutines that currently exist.\n"} -{"Time":"2022-12-07T09:15:21.034872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_goroutines gauge\n"} -{"Time":"2022-12-07T09:15:21.034873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_goroutines 149\n"} -{"Time":"2022-12-07T09:15:21.034874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_info Information about the Go environment.\n"} -{"Time":"2022-12-07T09:15:21.034876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_info gauge\n"} -{"Time":"2022-12-07T09:15:21.034877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_info{version=\"go1.19\"} 1\n"} -{"Time":"2022-12-07T09:15:21.034878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_alloc_bytes Number of bytes allocated and still in use.\n"} -{"Time":"2022-12-07T09:15:21.034882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_alloc_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.034884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_alloc_bytes 1.2229408e+07\n"} -{"Time":"2022-12-07T09:15:21.034885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_alloc_bytes_total Total number of bytes allocated, even if freed.\n"} -{"Time":"2022-12-07T09:15:21.034889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_alloc_bytes_total counter\n"} -{"Time":"2022-12-07T09:15:21.03489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_alloc_bytes_total 1.27641408e+08\n"} -{"Time":"2022-12-07T09:15:21.034892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_buck_hash_sys_bytes Number of bytes used by the profiling bucket hash table.\n"} -{"Time":"2022-12-07T09:15:21.034894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_buck_hash_sys_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.034897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_buck_hash_sys_bytes 1.507147e+06\n"} -{"Time":"2022-12-07T09:15:21.034898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_frees_total Total number of frees.\n"} -{"Time":"2022-12-07T09:15:21.0349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_frees_total counter\n"} -{"Time":"2022-12-07T09:15:21.034903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_frees_total 854950\n"} -{"Time":"2022-12-07T09:15:21.034904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_gc_sys_bytes Number of bytes used for garbage collection system metadata.\n"} -{"Time":"2022-12-07T09:15:21.034908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_gc_sys_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.03491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_gc_sys_bytes 5.99836e+06\n"} -{"Time":"2022-12-07T09:15:21.034911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_heap_alloc_bytes Number of heap bytes allocated and still in use.\n"} -{"Time":"2022-12-07T09:15:21.034915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_heap_alloc_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.034919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_heap_alloc_bytes 1.2229408e+07\n"} -{"Time":"2022-12-07T09:15:21.03492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_heap_idle_bytes Number of heap bytes waiting to be used.\n"} -{"Time":"2022-12-07T09:15:21.034922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_heap_idle_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.034923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_heap_idle_bytes 1.851392e+07\n"} -{"Time":"2022-12-07T09:15:21.034929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_heap_inuse_bytes Number of heap bytes that are in use.\n"} -{"Time":"2022-12-07T09:15:21.034931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_heap_inuse_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.034933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_heap_inuse_bytes 1.7072128e+07\n"} -{"Time":"2022-12-07T09:15:21.034937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_heap_objects Number of allocated objects.\n"} -{"Time":"2022-12-07T09:15:21.034939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_heap_objects gauge\n"} -{"Time":"2022-12-07T09:15:21.034942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_heap_objects 113506\n"} -{"Time":"2022-12-07T09:15:21.034947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_heap_released_bytes Number of heap bytes released to OS.\n"} -{"Time":"2022-12-07T09:15:21.034951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_heap_released_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.034953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_heap_released_bytes 1.605632e+07\n"} -{"Time":"2022-12-07T09:15:21.034964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_heap_sys_bytes Number of heap bytes obtained from system.\n"} -{"Time":"2022-12-07T09:15:21.034966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_heap_sys_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.034967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_heap_sys_bytes 3.5586048e+07\n"} -{"Time":"2022-12-07T09:15:21.034968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_last_gc_time_seconds Number of seconds since 1970 of last garbage collection.\n"} -{"Time":"2022-12-07T09:15:21.03497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_last_gc_time_seconds gauge\n"} -{"Time":"2022-12-07T09:15:21.034971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_last_gc_time_seconds 1.6704009210269e+09\n"} -{"Time":"2022-12-07T09:15:21.034973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_lookups_total Total number of pointer lookups.\n"} -{"Time":"2022-12-07T09:15:21.034975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_lookups_total counter\n"} -{"Time":"2022-12-07T09:15:21.034977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_lookups_total 0\n"} -{"Time":"2022-12-07T09:15:21.034978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_mallocs_total Total number of mallocs.\n"} -{"Time":"2022-12-07T09:15:21.03498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_mallocs_total counter\n"} -{"Time":"2022-12-07T09:15:21.034981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_mallocs_total 968456\n"} -{"Time":"2022-12-07T09:15:21.034983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_mcache_inuse_bytes Number of bytes in use by mcache structures.\n"} -{"Time":"2022-12-07T09:15:21.034984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_mcache_inuse_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.034986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_mcache_inuse_bytes 9600\n"} -{"Time":"2022-12-07T09:15:21.034987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_mcache_sys_bytes Number of bytes used for mcache structures obtained from system.\n"} -{"Time":"2022-12-07T09:15:21.034989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_mcache_sys_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.034998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_mcache_sys_bytes 15600\n"} -{"Time":"2022-12-07T09:15:21.034999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_mspan_inuse_bytes Number of bytes in use by mspan structures.\n"} -{"Time":"2022-12-07T09:15:21.035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_mspan_inuse_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.035002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_mspan_inuse_bytes 291856\n"} -{"Time":"2022-12-07T09:15:21.035003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_mspan_sys_bytes Number of bytes used for mspan structures obtained from system.\n"} -{"Time":"2022-12-07T09:15:21.035005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_mspan_sys_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.035007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_mspan_sys_bytes 326400\n"} -{"Time":"2022-12-07T09:15:21.035008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_next_gc_bytes Number of heap bytes when next garbage collection will take place.\n"} -{"Time":"2022-12-07T09:15:21.035009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_next_gc_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.035011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_next_gc_bytes 1.851736e+07\n"} -{"Time":"2022-12-07T09:15:21.035012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_other_sys_bytes Number of bytes used for other system allocations.\n"} -{"Time":"2022-12-07T09:15:21.035014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_other_sys_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.035015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_other_sys_bytes 1.509045e+06\n"} -{"Time":"2022-12-07T09:15:21.035018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_stack_inuse_bytes Number of bytes in use by the stack allocator.\n"} -{"Time":"2022-12-07T09:15:21.03502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_stack_inuse_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.035021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_stack_inuse_bytes 2.162688e+06\n"} -{"Time":"2022-12-07T09:15:21.035023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_stack_sys_bytes Number of bytes obtained from system for stack allocator.\n"} -{"Time":"2022-12-07T09:15:21.035024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_stack_sys_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.035026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_stack_sys_bytes 2.162688e+06\n"} -{"Time":"2022-12-07T09:15:21.035028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_memstats_sys_bytes Number of bytes obtained from system.\n"} -{"Time":"2022-12-07T09:15:21.035029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_memstats_sys_bytes gauge\n"} -{"Time":"2022-12-07T09:15:21.035031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_memstats_sys_bytes 4.7105288e+07\n"} -{"Time":"2022-12-07T09:15:21.035032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP go_threads Number of OS threads created.\n"} -{"Time":"2022-12-07T09:15:21.035034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE go_threads gauge\n"} -{"Time":"2022-12-07T09:15:21.035036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned go_threads 27\n"} -{"Time":"2022-12-07T09:15:21.035037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP promhttp_metric_handler_requests_in_flight Current number of scrapes being served.\n"} -{"Time":"2022-12-07T09:15:21.035039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE promhttp_metric_handler_requests_in_flight gauge\n"} -{"Time":"2022-12-07T09:15:21.035041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned promhttp_metric_handler_requests_in_flight 1\n"} -{"Time":"2022-12-07T09:15:21.035043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # HELP promhttp_metric_handler_requests_total Total number of scrapes by HTTP status code.\n"} -{"Time":"2022-12-07T09:15:21.035044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned # TYPE promhttp_metric_handler_requests_total counter\n"} -{"Time":"2022-12-07T09:15:21.035045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned promhttp_metric_handler_requests_total{code=\"200\"} 0\n"} -{"Time":"2022-12-07T09:15:21.035047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned promhttp_metric_handler_requests_total{code=\"500\"} 0\n"} -{"Time":"2022-12-07T09:15:21.035049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" server_test.go:591: scanned promhttp_metric_handler_requests_total{code=\"503\"} 0\n"} -{"Time":"2022-12-07T09:15:30.697301+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres"} -{"Time":"2022-12-07T09:15:30.697319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":"=== CONT TestServer/BuiltinPostgres\n"} -{"Time":"2022-12-07T09:15:30.697322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:30.697: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:30.697325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:30.697: cmd: stdout: \"View the Web UI: http://example.com\"\n"} -{"Time":"2022-12-07T09:15:31.011532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.011: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:31.011556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.011: cmd: stdout: \"Get started by creating the first user (in a new terminal):\"\n"} -{"Time":"2022-12-07T09:15:31.011753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.011: cmd: stdout: \" \\x1b[;mcoder login http://example.com\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:31.011767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.011: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:31.011771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.011: cmd: stdout: \"==\u003e Logs will stream in below (press ctrl+c to gracefully exit):\"\n"} -{"Time":"2022-12-07T09:15:31.026022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.025: cmd: stdout: \"\\x1b[1mInterrupt caught, gracefully exiting. Use ctrl+\\\\ to force quit\\x1b[0m\"\n"} -{"Time":"2022-12-07T09:15:31.02603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.026: cmd: stdout: \"Shutting down API server...\"\n"} -{"Time":"2022-12-07T09:15:31.026168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.026: cmd: stdout: \"Gracefully shut down API server\"\n"} -{"Time":"2022-12-07T09:15:31.026185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.026: cmd: stdout: \"Waiting for WebSocket connections to close...\"\n"} -{"Time":"2022-12-07T09:15:31.026188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.026: cmd: stdout: \"Done waiting for WebSocket connections\"\n"} -{"Time":"2022-12-07T09:15:31.026202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.026: cmd: stdout: \"Stopping built-in PostgreSQL...\"\n"} -{"Time":"2022-12-07T09:15:31.138612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:103: 2022-12-07 08:15:31.138: cmd: stdout: \"Stopped built-in PostgreSQL\"\n"} -{"Time":"2022-12-07T09:15:31.138883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" ptytest.go:80: 2022-12-07 08:15:31.138: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:31.250341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer","Output":"--- PASS: TestServer (0.03s)\n"} -{"Time":"2022-12-07T09:15:31.25036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Production","Output":" --- SKIP: TestServer/Production (0.00s)\n"} -{"Time":"2022-12-07T09:15:31.250363+01:00","Action":"skip","Package":"github.com/coder/coder/cli","Test":"TestServer/Production","Elapsed":0} -{"Time":"2022-12-07T09:15:31.250367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Shutdown","Output":" --- PASS: TestServer/Shutdown (0.03s)\n"} -{"Time":"2022-12-07T09:15:31.250369+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/Shutdown","Elapsed":0.03} -{"Time":"2022-12-07T09:15:31.250371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth","Output":" --- PASS: TestServer/GitHubOAuth (0.04s)\n"} -{"Time":"2022-12-07T09:15:31.250372+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/GitHubOAuth","Elapsed":0.04} -{"Time":"2022-12-07T09:15:31.250374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Output":" --- PASS: TestServer/RemoteAccessURL (0.06s)\n"} -{"Time":"2022-12-07T09:15:31.250376+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/RemoteAccessURL","Elapsed":0.06} -{"Time":"2022-12-07T09:15:31.250386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Output":" --- PASS: TestServer/LocalAccessURL (0.07s)\n"} -{"Time":"2022-12-07T09:15:31.250388+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/LocalAccessURL","Elapsed":0.07} -{"Time":"2022-12-07T09:15:31.25039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple","Output":" --- PASS: TestServer/TLSValidMultiple (0.08s)\n"} -{"Time":"2022-12-07T09:15:31.250392+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValidMultiple","Elapsed":0.08} -{"Time":"2022-12-07T09:15:31.250394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Output":" --- PASS: TestServer/BuiltinPostgresURL (0.04s)\n"} -{"Time":"2022-12-07T09:15:31.250396+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgresURL","Elapsed":0.04} -{"Time":"2022-12-07T09:15:31.250397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry","Output":" --- PASS: TestServer/Telemetry (0.08s)\n"} -{"Time":"2022-12-07T09:15:31.250399+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/Telemetry","Elapsed":0.08} -{"Time":"2022-12-07T09:15:31.250401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Output":" --- PASS: TestServer/NoWarningWithRemoteAccessURL (0.09s)\n"} -{"Time":"2022-12-07T09:15:31.250403+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/NoWarningWithRemoteAccessURL","Elapsed":0.09} -{"Time":"2022-12-07T09:15:31.250404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth","Output":" --- PASS: TestServer/TLSBadClientAuth (0.01s)\n"} -{"Time":"2022-12-07T09:15:31.250406+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadClientAuth","Elapsed":0.01} -{"Time":"2022-12-07T09:15:31.250407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion","Output":" --- PASS: TestServer/TLSBadVersion (0.02s)\n"} -{"Time":"2022-12-07T09:15:31.250409+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSBadVersion","Elapsed":0.02} -{"Time":"2022-12-07T09:15:31.25041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL","Output":" --- PASS: TestServer/NoSchemeAccessURL (0.01s)\n"} -{"Time":"2022-12-07T09:15:31.250411+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/NoSchemeAccessURL","Elapsed":0.01} -{"Time":"2022-12-07T09:15:31.250416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid","Output":" --- PASS: TestServer/TLSValid (0.05s)\n"} -{"Time":"2022-12-07T09:15:31.250418+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSValid","Elapsed":0.05} -{"Time":"2022-12-07T09:15:31.25042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid","Output":" --- PASS: TestServer/TLSInvalid (0.01s)\n"} -{"Time":"2022-12-07T09:15:31.250424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey","Output":" --- PASS: TestServer/TLSInvalid/NoCertAndKey (0.02s)\n"} -{"Time":"2022-12-07T09:15:31.250431+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCertAndKey","Elapsed":0.02} -{"Time":"2022-12-07T09:15:31.250433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount","Output":" --- PASS: TestServer/TLSInvalid/MismatchedCount (0.02s)\n"} -{"Time":"2022-12-07T09:15:31.250435+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCount","Elapsed":0.02} -{"Time":"2022-12-07T09:15:31.250436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey","Output":" --- PASS: TestServer/TLSInvalid/MismatchedCertAndKey (0.01s)\n"} -{"Time":"2022-12-07T09:15:31.250438+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/MismatchedCertAndKey","Elapsed":0.01} -{"Time":"2022-12-07T09:15:31.25044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey","Output":" --- PASS: TestServer/TLSInvalid/NoKey (0.00s)\n"} -{"Time":"2022-12-07T09:15:31.250441+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoKey","Elapsed":0} -{"Time":"2022-12-07T09:15:31.250442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert","Output":" --- PASS: TestServer/TLSInvalid/NoCert (0.01s)\n"} -{"Time":"2022-12-07T09:15:31.250444+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid/NoCert","Elapsed":0.01} -{"Time":"2022-12-07T09:15:31.250445+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TLSInvalid","Elapsed":0.01} -{"Time":"2022-12-07T09:15:31.250447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Output":" --- PASS: TestServer/Prometheus (0.06s)\n"} -{"Time":"2022-12-07T09:15:31.250449+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/Prometheus","Elapsed":0.06} -{"Time":"2022-12-07T09:15:31.250452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit","Output":" --- PASS: TestServer/RateLimit (0.00s)\n"} -{"Time":"2022-12-07T09:15:31.250453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed","Output":" --- PASS: TestServer/RateLimit/Changed (0.05s)\n"} -{"Time":"2022-12-07T09:15:31.250455+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Changed","Elapsed":0.05} -{"Time":"2022-12-07T09:15:31.250456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled","Output":" --- PASS: TestServer/RateLimit/Disabled (0.05s)\n"} -{"Time":"2022-12-07T09:15:31.250458+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Disabled","Elapsed":0.05} -{"Time":"2022-12-07T09:15:31.25046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default","Output":" --- PASS: TestServer/RateLimit/Default (0.06s)\n"} -{"Time":"2022-12-07T09:15:31.250462+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit/Default","Elapsed":0.06} -{"Time":"2022-12-07T09:15:31.250463+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/RateLimit","Elapsed":0} -{"Time":"2022-12-07T09:15:31.250464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak","Output":" --- PASS: TestServer/TracerNoLeak (0.55s)\n"} -{"Time":"2022-12-07T09:15:31.250466+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/TracerNoLeak","Elapsed":0.55} -{"Time":"2022-12-07T09:15:31.250468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Output":" --- PASS: TestServer/BuiltinPostgres (10.36s)\n"} -{"Time":"2022-12-07T09:15:31.250469+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer/BuiltinPostgres","Elapsed":10.36} -{"Time":"2022-12-07T09:15:31.250471+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestServer","Elapsed":0.03} -{"Time":"2022-12-07T09:15:31.250473+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestShow"} -{"Time":"2022-12-07T09:15:31.250475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow","Output":"=== RUN TestShow\n"} -{"Time":"2022-12-07T09:15:31.250479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow","Output":"=== PAUSE TestShow\n"} -{"Time":"2022-12-07T09:15:31.25048+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestShow"} -{"Time":"2022-12-07T09:15:31.250481+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.250483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== RUN TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.250484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== PAUSE TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.250486+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.250487+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestSSH"} -{"Time":"2022-12-07T09:15:31.250488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH","Output":"=== RUN TestSSH\n"} -{"Time":"2022-12-07T09:15:31.250499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH","Output":"=== PAUSE TestSSH\n"} -{"Time":"2022-12-07T09:15:31.250501+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestSSH"} -{"Time":"2022-12-07T09:15:31.250502+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestStatePull"} -{"Time":"2022-12-07T09:15:31.250503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull","Output":"=== RUN TestStatePull\n"} -{"Time":"2022-12-07T09:15:31.250505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull","Output":"=== PAUSE TestStatePull\n"} -{"Time":"2022-12-07T09:15:31.250506+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestStatePull"} -{"Time":"2022-12-07T09:15:31.250509+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestStatePush"} -{"Time":"2022-12-07T09:15:31.25051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush","Output":"=== RUN TestStatePush\n"} -{"Time":"2022-12-07T09:15:31.250512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush","Output":"=== PAUSE TestStatePush\n"} -{"Time":"2022-12-07T09:15:31.250513+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestStatePush"} -{"Time":"2022-12-07T09:15:31.250514+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate"} -{"Time":"2022-12-07T09:15:31.250518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate","Output":"=== RUN TestTemplateCreate\n"} -{"Time":"2022-12-07T09:15:31.25052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate","Output":"=== PAUSE TestTemplateCreate\n"} -{"Time":"2022-12-07T09:15:31.250521+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate"} -{"Time":"2022-12-07T09:15:31.250522+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete"} -{"Time":"2022-12-07T09:15:31.250523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete","Output":"=== RUN TestTemplateDelete\n"} -{"Time":"2022-12-07T09:15:31.250526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete","Output":"=== PAUSE TestTemplateDelete\n"} -{"Time":"2022-12-07T09:15:31.250528+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete"} -{"Time":"2022-12-07T09:15:31.25053+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit"} -{"Time":"2022-12-07T09:15:31.250532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit","Output":"=== RUN TestTemplateEdit\n"} -{"Time":"2022-12-07T09:15:31.250534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit","Output":"=== PAUSE TestTemplateEdit\n"} -{"Time":"2022-12-07T09:15:31.250536+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit"} -{"Time":"2022-12-07T09:15:31.250538+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit"} -{"Time":"2022-12-07T09:15:31.250539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit","Output":"=== RUN TestTemplateInit\n"} -{"Time":"2022-12-07T09:15:31.250541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit","Output":"=== PAUSE TestTemplateInit\n"} -{"Time":"2022-12-07T09:15:31.250542+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit"} -{"Time":"2022-12-07T09:15:31.250544+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateList"} -{"Time":"2022-12-07T09:15:31.250545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList","Output":"=== RUN TestTemplateList\n"} -{"Time":"2022-12-07T09:15:31.250547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList","Output":"=== PAUSE TestTemplateList\n"} -{"Time":"2022-12-07T09:15:31.25055+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateList"} -{"Time":"2022-12-07T09:15:31.250552+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull"} -{"Time":"2022-12-07T09:15:31.250553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull","Output":"=== RUN TestTemplatePull\n"} -{"Time":"2022-12-07T09:15:31.250556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull","Output":"=== PAUSE TestTemplatePull\n"} -{"Time":"2022-12-07T09:15:31.250557+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull"} -{"Time":"2022-12-07T09:15:31.250558+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush"} -{"Time":"2022-12-07T09:15:31.25056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush","Output":"=== RUN TestTemplatePush\n"} -{"Time":"2022-12-07T09:15:31.250561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush","Output":"=== PAUSE TestTemplatePush\n"} -{"Time":"2022-12-07T09:15:31.250563+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush"} -{"Time":"2022-12-07T09:15:31.250564+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions"} -{"Time":"2022-12-07T09:15:31.250565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions","Output":"=== RUN TestTemplateVersions\n"} -{"Time":"2022-12-07T09:15:31.250566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions","Output":"=== PAUSE TestTemplateVersions\n"} -{"Time":"2022-12-07T09:15:31.250567+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions"} -{"Time":"2022-12-07T09:15:31.250569+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTokens"} -{"Time":"2022-12-07T09:15:31.25057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== RUN TestTokens\n"} -{"Time":"2022-12-07T09:15:31.250572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== PAUSE TestTokens\n"} -{"Time":"2022-12-07T09:15:31.250573+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTokens"} -{"Time":"2022-12-07T09:15:31.250576+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUpdate"} -{"Time":"2022-12-07T09:15:31.250577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate","Output":"=== RUN TestUpdate\n"} -{"Time":"2022-12-07T09:15:31.250579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate","Output":"=== PAUSE TestUpdate\n"} -{"Time":"2022-12-07T09:15:31.25058+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUpdate"} -{"Time":"2022-12-07T09:15:31.250582+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserCreate"} -{"Time":"2022-12-07T09:15:31.250583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate","Output":"=== RUN TestUserCreate\n"} -{"Time":"2022-12-07T09:15:31.250585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate","Output":"=== PAUSE TestUserCreate\n"} -{"Time":"2022-12-07T09:15:31.250586+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserCreate"} -{"Time":"2022-12-07T09:15:31.250587+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserList"} -{"Time":"2022-12-07T09:15:31.250589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList","Output":"=== RUN TestUserList\n"} -{"Time":"2022-12-07T09:15:31.250591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList","Output":"=== PAUSE TestUserList\n"} -{"Time":"2022-12-07T09:15:31.250593+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserList"} -{"Time":"2022-12-07T09:15:31.250595+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserShow"} -{"Time":"2022-12-07T09:15:31.250596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow","Output":"=== RUN TestUserShow\n"} -{"Time":"2022-12-07T09:15:31.250597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow","Output":"=== PAUSE TestUserShow\n"} -{"Time":"2022-12-07T09:15:31.250599+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserShow"} -{"Time":"2022-12-07T09:15:31.250601+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.250602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== RUN TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.250604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== PAUSE TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.250605+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.250655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape"} -{"Time":"2022-12-07T09:15:31.250668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape","Output":"=== CONT Test_sshConfigExecEscape\n"} -{"Time":"2022-12-07T09:15:31.250673+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList"} -{"Time":"2022-12-07T09:15:31.250675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList","Output":"=== CONT TestUserList\n"} -{"Time":"2022-12-07T09:15:31.250677+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate"} -{"Time":"2022-12-07T09:15:31.250678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate","Output":"=== CONT TestTemplateCreate\n"} -{"Time":"2022-12-07T09:15:31.25068+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces"} -{"Time":"2022-12-07T09:15:31.250682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces","Output":"=== RUN Test_sshConfigExecEscape/no_spaces\n"} -{"Time":"2022-12-07T09:15:31.250683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces","Output":"=== PAUSE Test_sshConfigExecEscape/no_spaces\n"} -{"Time":"2022-12-07T09:15:31.250685+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces"} -{"Time":"2022-12-07T09:15:31.250686+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete"} -{"Time":"2022-12-07T09:15:31.250688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete","Output":"=== CONT TestTemplateDelete\n"} -{"Time":"2022-12-07T09:15:31.250691+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow"} -{"Time":"2022-12-07T09:15:31.250692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow","Output":"=== CONT TestScheduleShow\n"} -{"Time":"2022-12-07T09:15:31.250693+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.250694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.250696+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.250698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== RUN TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.2507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== PAUSE TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.250701+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.250703+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.250704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== RUN TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.250706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== PAUSE TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.250708+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.25071+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.250711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== RUN TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.25072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== PAUSE TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.250722+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.250723+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table"} -{"Time":"2022-12-07T09:15:31.250724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":"=== RUN TestUserList/Table\n"} -{"Time":"2022-12-07T09:15:31.250726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":"=== PAUSE TestUserList/Table\n"} -{"Time":"2022-12-07T09:15:31.250728+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table"} -{"Time":"2022-12-07T09:15:31.250734+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON"} -{"Time":"2022-12-07T09:15:31.250735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":"=== RUN TestUserList/JSON\n"} -{"Time":"2022-12-07T09:15:31.250739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":"=== PAUSE TestUserList/JSON\n"} -{"Time":"2022-12-07T09:15:31.250741+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON"} -{"Time":"2022-12-07T09:15:31.250742+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText"} -{"Time":"2022-12-07T09:15:31.250744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText","Output":"=== RUN TestUserList/NoURLFileErrorHasHelperText\n"} -{"Time":"2022-12-07T09:15:31.250745+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull"} -{"Time":"2022-12-07T09:15:31.250747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull","Output":"=== CONT TestStatePull\n"} -{"Time":"2022-12-07T09:15:31.25075+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} -{"Time":"2022-12-07T09:15:31.250752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== RUN TestTemplateCreate/Create\n"} -{"Time":"2022-12-07T09:15:31.250771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== PAUSE TestTemplateCreate/Create\n"} -{"Time":"2022-12-07T09:15:31.250776+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} -{"Time":"2022-12-07T09:15:31.250778+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:31.25078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== RUN TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:31.250801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText","Output":"=== PAUSE TestUserList/NoURLFileErrorHasHelperText\n"} -{"Time":"2022-12-07T09:15:31.250804+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText"} -{"Time":"2022-12-07T09:15:31.25082+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText"} -{"Time":"2022-12-07T09:15:31.250821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":"=== RUN TestUserList/SessionAuthErrorHasHelperText\n"} -{"Time":"2022-12-07T09:15:31.250825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":"=== PAUSE TestUserList/SessionAuthErrorHasHelperText\n"} -{"Time":"2022-12-07T09:15:31.250826+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText"} -{"Time":"2022-12-07T09:15:31.250829+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.250831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== RUN TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.250852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== PAUSE TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.250854+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.250855+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:31.250857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== RUN TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:31.250859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== PAUSE TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:31.25086+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:31.250862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.250863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.250903+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH"} -{"Time":"2022-12-07T09:15:31.250908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH","Output":"=== CONT TestSSH\n"} -{"Time":"2022-12-07T09:15:31.250989+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:31.250997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== RUN TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:31.251+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:31.251001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== RUN TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:31.251003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== PAUSE TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:31.251004+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:31.251006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== PAUSE TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:31.251007+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:31.25101+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:31.251011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== RUN TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:31.251013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== PAUSE TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:31.251014+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:31.251015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow"} -{"Time":"2022-12-07T09:15:31.251017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow","Output":"=== CONT TestUserShow\n"} -{"Time":"2022-12-07T09:15:31.251019+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush"} -{"Time":"2022-12-07T09:15:31.251022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush","Output":"=== CONT TestStatePush\n"} -{"Time":"2022-12-07T09:15:31.251024+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} -{"Time":"2022-12-07T09:15:31.251026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== RUN TestUserShow/Table\n"} -{"Time":"2022-12-07T09:15:31.251029+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:31.251036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== RUN TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:31.251037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== PAUSE TestUserShow/Table\n"} -{"Time":"2022-12-07T09:15:31.251039+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} -{"Time":"2022-12-07T09:15:31.25104+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces"} -{"Time":"2022-12-07T09:15:31.251042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces","Output":"=== RUN Test_sshConfigExecEscape/spaces\n"} -{"Time":"2022-12-07T09:15:31.251043+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} -{"Time":"2022-12-07T09:15:31.251045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== RUN TestUserShow/JSON\n"} -{"Time":"2022-12-07T09:15:31.251046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== PAUSE TestUserShow/JSON\n"} -{"Time":"2022-12-07T09:15:31.251048+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} -{"Time":"2022-12-07T09:15:31.25105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces","Output":"=== PAUSE Test_sshConfigExecEscape/spaces\n"} -{"Time":"2022-12-07T09:15:31.251051+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces"} -{"Time":"2022-12-07T09:15:31.251053+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes"} -{"Time":"2022-12-07T09:15:31.251054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes","Output":"=== RUN Test_sshConfigExecEscape/quotes\n"} -{"Time":"2022-12-07T09:15:31.251071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes","Output":"=== PAUSE Test_sshConfigExecEscape/quotes\n"} -{"Time":"2022-12-07T09:15:31.251073+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes"} -{"Time":"2022-12-07T09:15:31.251077+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes"} -{"Time":"2022-12-07T09:15:31.251079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes","Output":"=== RUN Test_sshConfigExecEscape/backslashes\n"} -{"Time":"2022-12-07T09:15:31.251081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes","Output":"=== PAUSE Test_sshConfigExecEscape/backslashes\n"} -{"Time":"2022-12-07T09:15:31.251083+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes"} -{"Time":"2022-12-07T09:15:31.251084+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs"} -{"Time":"2022-12-07T09:15:31.251085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs","Output":"=== RUN Test_sshConfigExecEscape/tabs\n"} -{"Time":"2022-12-07T09:15:31.251087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs","Output":"=== PAUSE Test_sshConfigExecEscape/tabs\n"} -{"Time":"2022-12-07T09:15:31.251089+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs"} -{"Time":"2022-12-07T09:15:31.25109+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails"} -{"Time":"2022-12-07T09:15:31.251092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails","Output":"=== RUN Test_sshConfigExecEscape/newline_fails\n"} -{"Time":"2022-12-07T09:15:31.251094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails","Output":"=== PAUSE Test_sshConfigExecEscape/newline_fails\n"} -{"Time":"2022-12-07T09:15:31.251095+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails"} -{"Time":"2022-12-07T09:15:31.251096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== PAUSE TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:31.251097+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:31.251099+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:31.2511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== RUN TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:31.251102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== PAUSE TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:31.251103+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:31.251105+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRoot"} -{"Time":"2022-12-07T09:15:31.251106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot","Output":"=== CONT TestRoot\n"} -{"Time":"2022-12-07T09:15:31.251107+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError"} -{"Time":"2022-12-07T09:15:31.251108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError","Output":"=== RUN TestRoot/FormatCobraError\n"} -{"Time":"2022-12-07T09:15:31.25111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError","Output":"=== PAUSE TestRoot/FormatCobraError\n"} -{"Time":"2022-12-07T09:15:31.251111+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError"} -{"Time":"2022-12-07T09:15:31.251113+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version"} -{"Time":"2022-12-07T09:15:31.251114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version","Output":"=== RUN TestRoot/Version\n"} -{"Time":"2022-12-07T09:15:31.251115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version","Output":"=== PAUSE TestRoot/Version\n"} -{"Time":"2022-12-07T09:15:31.251117+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version"} -{"Time":"2022-12-07T09:15:31.251118+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header"} -{"Time":"2022-12-07T09:15:31.25112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header","Output":"=== RUN TestRoot/Header\n"} -{"Time":"2022-12-07T09:15:31.251121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header","Output":"=== PAUSE TestRoot/Header\n"} -{"Time":"2022-12-07T09:15:31.251123+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header"} -{"Time":"2022-12-07T09:15:31.251125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== PAUSE TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:31.251127+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:31.251128+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:31.25113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== RUN TestTemplateCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:31.251134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== PAUSE TestTemplateCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:31.251136+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:31.251137+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:31.251139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== RUN TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:31.251141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== PAUSE TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:31.251142+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:31.251146+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:31.251147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== RUN TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:31.251152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== PAUSE TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:31.251153+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:31.251157+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit"} -{"Time":"2022-12-07T09:15:31.251158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":"=== RUN TestTemplateCreate/WithParameterExceedingCharLimit\n"} -{"Time":"2022-12-07T09:15:31.25116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":"=== PAUSE TestTemplateCreate/WithParameterExceedingCharLimit\n"} -{"Time":"2022-12-07T09:15:31.251164+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit"} -{"Time":"2022-12-07T09:15:31.251166+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp"} -{"Time":"2022-12-07T09:15:31.251167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp","Output":"=== CONT TestCommandHelp\n"} -{"Time":"2022-12-07T09:15:31.251169+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_--help"} -{"Time":"2022-12-07T09:15:31.251175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_--help","Output":"=== RUN TestCommandHelp/coder_--help\n"} -{"Time":"2022-12-07T09:15:31.251176+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.251178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.25118+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride"} -{"Time":"2022-12-07T09:15:31.251181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride","Output":"=== CONT TestScheduleOverride\n"} -{"Time":"2022-12-07T09:15:31.251182+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:31.251184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== RUN TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:31.251185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== PAUSE TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:31.251187+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:31.251188+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:31.251189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== RUN TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:31.251191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== PAUSE TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:31.251193+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:31.251194+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:31.251195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== RUN TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:31.251197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== PAUSE TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:31.251199+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:31.251201+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow"} -{"Time":"2022-12-07T09:15:31.251203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow","Output":"=== CONT TestShow\n"} -{"Time":"2022-12-07T09:15:31.251205+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:31.251207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== RUN TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:31.251209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== PAUSE TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:31.251211+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:31.251407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestPublicKey"} -{"Time":"2022-12-07T09:15:31.251411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey","Output":"=== CONT TestPublicKey\n"} -{"Time":"2022-12-07T09:15:31.251415+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK"} -{"Time":"2022-12-07T09:15:31.251418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":"=== RUN TestPublicKey/OK\n"} -{"Time":"2022-12-07T09:15:31.25142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":"=== PAUSE TestPublicKey/OK\n"} -{"Time":"2022-12-07T09:15:31.251422+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK"} -{"Time":"2022-12-07T09:15:31.251425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestPortForward"} -{"Time":"2022-12-07T09:15:31.251427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPortForward","Output":"=== CONT TestPortForward\n"} -{"Time":"2022-12-07T09:15:31.251431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPortForward","Output":" portforward_test.go:27: These tests flake... a lot. It seems related to the Tailscale change, but all other tests pass...\n"} -{"Time":"2022-12-07T09:15:31.251438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPortForward","Output":"--- SKIP: TestPortForward (0.00s)\n"} -{"Time":"2022-12-07T09:15:31.251441+01:00","Action":"skip","Package":"github.com/coder/coder/cli","Test":"TestPortForward","Elapsed":0} -{"Time":"2022-12-07T09:15:31.251443+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin"} -{"Time":"2022-12-07T09:15:31.251444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin","Output":"=== CONT TestLogin\n"} -{"Time":"2022-12-07T09:15:31.251447+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY"} -{"Time":"2022-12-07T09:15:31.251448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Output":"=== RUN TestLogin/InitialUserNoTTY\n"} -{"Time":"2022-12-07T09:15:31.25145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Output":"=== PAUSE TestLogin/InitialUserNoTTY\n"} -{"Time":"2022-12-07T09:15:31.251451+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY"} -{"Time":"2022-12-07T09:15:31.251455+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL"} -{"Time":"2022-12-07T09:15:31.251456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL","Output":"=== RUN TestLogin/InitialUserBadLoginURL\n"} -{"Time":"2022-12-07T09:15:31.251458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL","Output":"=== PAUSE TestLogin/InitialUserBadLoginURL\n"} -{"Time":"2022-12-07T09:15:31.25146+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL"} -{"Time":"2022-12-07T09:15:31.251463+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY"} -{"Time":"2022-12-07T09:15:31.251464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":"=== RUN TestLogin/InitialUserTTY\n"} -{"Time":"2022-12-07T09:15:31.251467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":"=== PAUSE TestLogin/InitialUserTTY\n"} -{"Time":"2022-12-07T09:15:31.251469+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY"} -{"Time":"2022-12-07T09:15:31.251493+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags"} -{"Time":"2022-12-07T09:15:31.2515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":"=== RUN TestLogin/InitialUserFlags\n"} -{"Time":"2022-12-07T09:15:31.251502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":"=== PAUSE TestLogin/InitialUserFlags\n"} -{"Time":"2022-12-07T09:15:31.251504+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags"} -{"Time":"2022-12-07T09:15:31.251507+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt"} -{"Time":"2022-12-07T09:15:31.251509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":"=== RUN TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt\n"} -{"Time":"2022-12-07T09:15:31.251512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":"=== PAUSE TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt\n"} -{"Time":"2022-12-07T09:15:31.251513+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt"} -{"Time":"2022-12-07T09:15:31.251516+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} -{"Time":"2022-12-07T09:15:31.251517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== RUN TestLogin/ExistingUserValidTokenTTY\n"} -{"Time":"2022-12-07T09:15:31.251519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== PAUSE TestLogin/ExistingUserValidTokenTTY\n"} -{"Time":"2022-12-07T09:15:31.25152+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} -{"Time":"2022-12-07T09:15:31.251521+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout"} -{"Time":"2022-12-07T09:15:31.251523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout","Output":"=== CONT TestLogout\n"} -{"Time":"2022-12-07T09:15:31.251565+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:31.251587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== RUN TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:31.251596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== PAUSE TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:31.251601+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:31.251606+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:31.25161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== RUN TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:31.251615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== PAUSE TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:31.251618+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:31.251622+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY"} -{"Time":"2022-12-07T09:15:31.251634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":"=== RUN TestLogin/ExistingUserInvalidTokenTTY\n"} -{"Time":"2022-12-07T09:15:31.251639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":"=== PAUSE TestLogin/ExistingUserInvalidTokenTTY\n"} -{"Time":"2022-12-07T09:15:31.251642+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY"} -{"Time":"2022-12-07T09:15:31.251646+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} -{"Time":"2022-12-07T09:15:31.25165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== RUN TestLogout/Logout\n"} -{"Time":"2022-12-07T09:15:31.251657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== PAUSE TestLogout/Logout\n"} -{"Time":"2022-12-07T09:15:31.251676+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} -{"Time":"2022-12-07T09:15:31.251682+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt"} -{"Time":"2022-12-07T09:15:31.251684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":"=== RUN TestLogout/SkipPrompt\n"} -{"Time":"2022-12-07T09:15:31.251685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":"=== PAUSE TestLogout/SkipPrompt\n"} -{"Time":"2022-12-07T09:15:31.251687+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt"} -{"Time":"2022-12-07T09:15:31.251692+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile"} -{"Time":"2022-12-07T09:15:31.251693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":"=== RUN TestLogout/NoURLFile\n"} -{"Time":"2022-12-07T09:15:31.251695+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag"} -{"Time":"2022-12-07T09:15:31.251697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":"=== RUN TestLogin/TokenFlag\n"} -{"Time":"2022-12-07T09:15:31.251698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":"=== PAUSE TestLogin/TokenFlag\n"} -{"Time":"2022-12-07T09:15:31.2517+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag"} -{"Time":"2022-12-07T09:15:31.251701+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.251702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.251816+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.251823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.251826+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:31.251828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== RUN TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:31.25183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== PAUSE TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:31.251831+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:31.251833+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:31.251834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== RUN TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:31.251836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== PAUSE TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:31.251837+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:31.251838+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:31.25184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== RUN TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:31.251875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== PAUSE TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:31.251877+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:31.252205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":"=== PAUSE TestLogout/NoURLFile\n"} -{"Time":"2022-12-07T09:15:31.25221+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile"} -{"Time":"2022-12-07T09:15:31.252212+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile"} -{"Time":"2022-12-07T09:15:31.252214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":"=== RUN TestLogout/NoSessionFile\n"} -{"Time":"2022-12-07T09:15:31.252216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":"=== PAUSE TestLogout/NoSessionFile\n"} -{"Time":"2022-12-07T09:15:31.252217+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile"} -{"Time":"2022-12-07T09:15:31.252224+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles"} -{"Time":"2022-12-07T09:15:31.252225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":"=== RUN TestLogout/CannotDeleteFiles\n"} -{"Time":"2022-12-07T09:15:31.252227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":"=== PAUSE TestLogout/CannotDeleteFiles\n"} -{"Time":"2022-12-07T09:15:31.252228+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles"} -{"Time":"2022-12-07T09:15:31.252229+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList"} -{"Time":"2022-12-07T09:15:31.25223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList","Output":"=== CONT TestList\n"} -{"Time":"2022-12-07T09:15:31.252232+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:31.252233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== RUN TestList/Single\n"} -{"Time":"2022-12-07T09:15:31.252235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== PAUSE TestList/Single\n"} -{"Time":"2022-12-07T09:15:31.252236+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:31.252237+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate"} -{"Time":"2022-12-07T09:15:31.252239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate","Output":"=== CONT TestUpdate\n"} -{"Time":"2022-12-07T09:15:31.25224+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs"} -{"Time":"2022-12-07T09:15:31.252242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs","Output":"=== RUN TestUpdate/NoArgs\n"} -{"Time":"2022-12-07T09:15:31.252244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs","Output":"=== PAUSE TestUpdate/NoArgs\n"} -{"Time":"2022-12-07T09:15:31.252245+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs"} -{"Time":"2022-12-07T09:15:31.252246+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:31.252247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== RUN TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:31.252344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== PAUSE TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:31.252353+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:31.252356+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:31.25236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== RUN TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:31.252362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== PAUSE TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:31.252363+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:31.252365+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserCreate"} -{"Time":"2022-12-07T09:15:31.252369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate","Output":"=== CONT TestUserCreate\n"} -{"Time":"2022-12-07T09:15:31.252371+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts"} -{"Time":"2022-12-07T09:15:31.252372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":"=== RUN TestUserCreate/Prompts\n"} -{"Time":"2022-12-07T09:15:31.252374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":"=== PAUSE TestUserCreate/Prompts\n"} -{"Time":"2022-12-07T09:15:31.252375+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts"} -{"Time":"2022-12-07T09:15:31.252376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay"} -{"Time":"2022-12-07T09:15:31.252378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay","Output":"=== CONT TestDurationDisplay\n"} -{"Time":"2022-12-07T09:15:31.252379+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s"} -{"Time":"2022-12-07T09:15:31.25238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s","Output":"=== RUN TestDurationDisplay/-1s\n"} -{"Time":"2022-12-07T09:15:31.252382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s","Output":"=== PAUSE TestDurationDisplay/-1s\n"} -{"Time":"2022-12-07T09:15:31.252383+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s"} -{"Time":"2022-12-07T09:15:31.252384+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s"} -{"Time":"2022-12-07T09:15:31.252387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s","Output":"=== RUN TestDurationDisplay/0s\n"} -{"Time":"2022-12-07T09:15:31.252388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s","Output":"=== PAUSE TestDurationDisplay/0s\n"} -{"Time":"2022-12-07T09:15:31.252391+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s"} -{"Time":"2022-12-07T09:15:31.252392+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s"} -{"Time":"2022-12-07T09:15:31.252393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s","Output":"=== RUN TestDurationDisplay/1s\n"} -{"Time":"2022-12-07T09:15:31.252395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s","Output":"=== PAUSE TestDurationDisplay/1s\n"} -{"Time":"2022-12-07T09:15:31.252396+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s"} -{"Time":"2022-12-07T09:15:31.252397+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s"} -{"Time":"2022-12-07T09:15:31.252399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s","Output":"=== RUN TestDurationDisplay/59s\n"} -{"Time":"2022-12-07T09:15:31.2524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s","Output":"=== PAUSE TestDurationDisplay/59s\n"} -{"Time":"2022-12-07T09:15:31.252402+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s"} -{"Time":"2022-12-07T09:15:31.252403+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m"} -{"Time":"2022-12-07T09:15:31.252404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m","Output":"=== RUN TestDurationDisplay/1m\n"} -{"Time":"2022-12-07T09:15:31.252407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m","Output":"=== PAUSE TestDurationDisplay/1m\n"} -{"Time":"2022-12-07T09:15:31.252408+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m"} -{"Time":"2022-12-07T09:15:31.252411+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s"} -{"Time":"2022-12-07T09:15:31.252412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s","Output":"=== RUN TestDurationDisplay/1m1s\n"} -{"Time":"2022-12-07T09:15:31.252417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s","Output":"=== PAUSE TestDurationDisplay/1m1s\n"} -{"Time":"2022-12-07T09:15:31.252419+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s"} -{"Time":"2022-12-07T09:15:31.25242+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m"} -{"Time":"2022-12-07T09:15:31.252422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m","Output":"=== RUN TestDurationDisplay/2m\n"} -{"Time":"2022-12-07T09:15:31.252425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m","Output":"=== PAUSE TestDurationDisplay/2m\n"} -{"Time":"2022-12-07T09:15:31.252426+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m"} -{"Time":"2022-12-07T09:15:31.252427+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m"} -{"Time":"2022-12-07T09:15:31.252429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m","Output":"=== RUN TestDurationDisplay/59m\n"} -{"Time":"2022-12-07T09:15:31.252432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m","Output":"=== PAUSE TestDurationDisplay/59m\n"} -{"Time":"2022-12-07T09:15:31.252433+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m"} -{"Time":"2022-12-07T09:15:31.252434+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h"} -{"Time":"2022-12-07T09:15:31.252438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h","Output":"=== RUN TestDurationDisplay/1h\n"} -{"Time":"2022-12-07T09:15:31.25244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h","Output":"=== PAUSE TestDurationDisplay/1h\n"} -{"Time":"2022-12-07T09:15:31.252442+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h"} -{"Time":"2022-12-07T09:15:31.252445+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s"} -{"Time":"2022-12-07T09:15:31.252446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s","Output":"=== RUN TestDurationDisplay/1h1m1s\n"} -{"Time":"2022-12-07T09:15:31.252448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s","Output":"=== PAUSE TestDurationDisplay/1h1m1s\n"} -{"Time":"2022-12-07T09:15:31.252449+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s"} -{"Time":"2022-12-07T09:15:31.252451+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h"} -{"Time":"2022-12-07T09:15:31.252453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h","Output":"=== RUN TestDurationDisplay/2h\n"} -{"Time":"2022-12-07T09:15:31.252454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h","Output":"=== PAUSE TestDurationDisplay/2h\n"} -{"Time":"2022-12-07T09:15:31.252456+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h"} -{"Time":"2022-12-07T09:15:31.252457+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h"} -{"Time":"2022-12-07T09:15:31.252459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h","Output":"=== RUN TestDurationDisplay/23h\n"} -{"Time":"2022-12-07T09:15:31.252462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h","Output":"=== PAUSE TestDurationDisplay/23h\n"} -{"Time":"2022-12-07T09:15:31.252463+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h"} -{"Time":"2022-12-07T09:15:31.252465+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h"} -{"Time":"2022-12-07T09:15:31.252466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h","Output":"=== RUN TestDurationDisplay/24h\n"} -{"Time":"2022-12-07T09:15:31.252467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h","Output":"=== PAUSE TestDurationDisplay/24h\n"} -{"Time":"2022-12-07T09:15:31.252469+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h"} -{"Time":"2022-12-07T09:15:31.25247+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s"} -{"Time":"2022-12-07T09:15:31.252471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s","Output":"=== RUN TestDurationDisplay/24h1m1s\n"} -{"Time":"2022-12-07T09:15:31.252473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s","Output":"=== PAUSE TestDurationDisplay/24h1m1s\n"} -{"Time":"2022-12-07T09:15:31.252475+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s"} -{"Time":"2022-12-07T09:15:31.252476+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h"} -{"Time":"2022-12-07T09:15:31.252478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h","Output":"=== RUN TestDurationDisplay/25h\n"} -{"Time":"2022-12-07T09:15:31.252481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h","Output":"=== PAUSE TestDurationDisplay/25h\n"} -{"Time":"2022-12-07T09:15:31.252482+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h"} -{"Time":"2022-12-07T09:15:31.252484+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH"} -{"Time":"2022-12-07T09:15:31.252485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH","Output":"=== CONT TestGitSSH\n"} -{"Time":"2022-12-07T09:15:31.252487+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:31.252488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== RUN TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:31.25249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== PAUSE TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:31.252491+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:31.252492+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:31.252494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== RUN TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:31.252497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== PAUSE TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:31.252498+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:31.2525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink"} -{"Time":"2022-12-07T09:15:31.252501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink","Output":"=== CONT TestBuildWorkspaceLink\n"} -{"Time":"2022-12-07T09:15:31.252503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink","Output":"--- PASS: TestBuildWorkspaceLink (0.00s)\n"} -{"Time":"2022-12-07T09:15:31.252506+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestBuildWorkspaceLink","Elapsed":0} -{"Time":"2022-12-07T09:15:31.252508+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate"} -{"Time":"2022-12-07T09:15:31.252509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate","Output":"=== CONT TestCreate\n"} -{"Time":"2022-12-07T09:15:31.252511+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:31.252512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== RUN TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:31.252513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== PAUSE TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:31.252515+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:31.252517+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:31.252521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== RUN TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:31.252523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== PAUSE TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:31.252525+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:31.252526+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:31.252528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== RUN TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:31.25253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== PAUSE TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:31.252531+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:31.252534+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:31.252535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== RUN TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:31.252536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== PAUSE TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:31.252538+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:31.25254+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:31.252541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== RUN TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:31.252543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== PAUSE TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:31.252544+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:31.252546+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:31.252547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== RUN TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:31.252548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== PAUSE TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:31.25255+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:31.252552+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:31.252554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== RUN TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:31.252557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== PAUSE TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:31.252559+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:31.252562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete"} -{"Time":"2022-12-07T09:15:31.252564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete","Output":"=== CONT TestDelete\n"} -{"Time":"2022-12-07T09:15:31.252566+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:31.252568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== RUN TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:31.252569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== PAUSE TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:31.252571+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:31.252572+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:31.252573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== RUN TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:31.252576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== PAUSE TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:31.252577+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:31.252578+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:31.25258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== RUN TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:31.252582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== PAUSE TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:31.252584+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:31.252585+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier"} -{"Time":"2022-12-07T09:15:31.252586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Output":"=== RUN TestDelete/InvalidWorkspaceIdentifier\n"} -{"Time":"2022-12-07T09:15:31.252588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Output":"=== PAUSE TestDelete/InvalidWorkspaceIdentifier\n"} -{"Time":"2022-12-07T09:15:31.25259+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier"} -{"Time":"2022-12-07T09:15:31.252592+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames"} -{"Time":"2022-12-07T09:15:31.252593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames","Output":"=== CONT TestConfigSSH_Hostnames\n"} -{"Time":"2022-12-07T09:15:31.252596+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:31.252597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== RUN TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:31.252599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== PAUSE TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:31.2526+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:31.252602+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:31.252604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== RUN TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:31.252606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== PAUSE TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:31.252607+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:31.252608+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:31.252609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== RUN TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:31.252612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== PAUSE TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:31.252613+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:31.252614+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:31.252615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== RUN TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:31.252618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== PAUSE TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:31.25262+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:31.253205+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow"} -{"Time":"2022-12-07T09:15:31.253209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow\n"} -{"Time":"2022-12-07T09:15:31.253211+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush"} -{"Time":"2022-12-07T09:15:31.253212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush","Output":"=== CONT TestTemplatePush\n"} -{"Time":"2022-12-07T09:15:31.253214+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:31.253215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== RUN TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:31.253217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== PAUSE TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:31.253219+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:31.254544+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:31.254568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:31.254577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:31.254581+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:31.254585+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:31.254589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:31.254629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:31.254636+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:31.254638+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:31.25464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:31.254642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:31.254643+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:31.254649+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:31.254651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:31.254654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:31.254656+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:31.254659+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:31.25466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:31.254662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:31.254663+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:31.254741+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:31.254749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== RUN TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:31.254792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== PAUSE TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:31.254801+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:31.254803+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:31.254805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== RUN TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:31.254807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== PAUSE TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:31.254808+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:31.254812+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:31.254814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:31.254815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:31.254817+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:31.254818+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:31.25482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:31.254847+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} -{"Time":"2022-12-07T09:15:31.254849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} -{"Time":"2022-12-07T09:15:31.255098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:31.255103+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:31.255104+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:31.255106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:31.255108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:31.255109+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:31.255111+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:31.255112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:31.255115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:31.255116+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:31.255121+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:31.255123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:31.255124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:31.255126+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:31.255133+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:31.255135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:31.255138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:31.25514+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:31.255141+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:31.255142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:31.255144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:31.255145+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:31.255146+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:31.255148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== RUN TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:31.255149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== PAUSE TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:31.255151+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:31.255152+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.255153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.256053+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.256062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.256065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.255 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"128.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"50cdac7b-f992-4b48-bee5-5cdfe969f377\"}\n"} -{"Time":"2022-12-07T09:15:31.256586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.256 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"61µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"dd36d8fd-5bc7-49e1-a3e8-1e01f5e71963\"}\n"} -{"Time":"2022-12-07T09:15:31.258346+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.258359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.258362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.258 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"90.916µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c2879ced-52b1-4fd3-9f85-447f631e205c\"}\n"} -{"Time":"2022-12-07T09:15:31.258367+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.258368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.25837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.258 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"164µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1712019e-8ec0-4c98-b9d9-7a7e1692ed00\"}\n"} -{"Time":"2022-12-07T09:15:31.25879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.258794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.258796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.258 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"38.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5f3a2139-2f2d-475c-b506-6d8401bf4f8f\"}\n"} -{"Time":"2022-12-07T09:15:31.259544+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.259559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.259562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.046208ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"11af3200-7fd1-402b-8a17-2d0ae63d4df5\"}\n"} -{"Time":"2022-12-07T09:15:31.259567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.259569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.25957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"138.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3217deab-7f45-471f-b9f5-72a8d098bef7\"}\n"} -{"Time":"2022-12-07T09:15:31.259573+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.259574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.259576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b6df3256-ee07-4546-8d59-8c493fe0d609\"}\n"} -{"Time":"2022-12-07T09:15:31.259889+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_server_--help"} -{"Time":"2022-12-07T09:15:31.259896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_server_--help","Output":"=== RUN TestCommandHelp/coder_server_--help\n"} -{"Time":"2022-12-07T09:15:31.26012+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.260125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.260127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"171.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d30d315b-dd95-4a90-a91e-631554e248ef\"}\n"} -{"Time":"2022-12-07T09:15:31.260131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.260133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.260134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"105.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9763ef86-0b85-44cc-94e1-a5a206182785\"}\n"} -{"Time":"2022-12-07T09:15:31.260365+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.260371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.260374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"80.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e896be58-2179-4ee8-a38a-4a28826934fa\"}\n"} -{"Time":"2022-12-07T09:15:31.260479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.260487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.26049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"44.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a7a76780-4365-4fba-b227-18ee67a2d654\"}\n"} -{"Time":"2022-12-07T09:15:31.260624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.260629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.260631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.560167ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"bcf005f6-a11d-442c-89e8-8a34e08a099e\"}\n"} -{"Time":"2022-12-07T09:15:31.260986+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.260992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.260994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6b0ae1b7-9687-42c9-a144-d55f8c7ffa6c\"}\n"} -{"Time":"2022-12-07T09:15:31.260999+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.261001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.261002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"330.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8d988f20-ecbd-4634-8c1f-cb93137eebd4\"}\n"} -{"Time":"2022-12-07T09:15:31.261071+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.261097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.261103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6cbf59ba-4551-4a26-bc14-007fde5c7bbf\"}\n"} -{"Time":"2022-12-07T09:15:31.26115+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusSelf"} -{"Time":"2022-12-07T09:15:31.26116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusSelf","Output":"=== RUN TestUserStatus/StatusSelf\n"} -{"Time":"2022-12-07T09:15:31.261162+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.261163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.261165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"80.541µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9fe0fbf3-20a3-4ae7-9468-cdf9766f4f9b\"}\n"} -{"Time":"2022-12-07T09:15:31.261356+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.261362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.261363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3ea9ada5-b3be-433a-b9a4-0b7aeb6c9238\"}\n"} -{"Time":"2022-12-07T09:15:31.261488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} -{"Time":"2022-12-07T09:15:31.261498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} -{"Time":"2022-12-07T09:15:31.261538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"103.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e68b2e45-2f9e-42e0-9162-0150de4db1ca\"}\n"} -{"Time":"2022-12-07T09:15:31.261543+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.261544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.261546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/organizations/e6a67067-7846-4aac-943f-66f56090e659/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"575.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b43a38f8-3403-4495-9e7f-74fad3187c5e\"}\n"} -{"Time":"2022-12-07T09:15:31.261549+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.26155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.261552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"143.709µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"82c32ef3-1799-41fd-b694-a21c4989094e\"}\n"} -{"Time":"2022-12-07T09:15:31.261674+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.261681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.261685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" schedule_test.go:123: waiting for template version job 83f6409b-411a-440c-a46d-68bf890f1b28\n"} -{"Time":"2022-12-07T09:15:31.261811+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} -{"Time":"2022-12-07T09:15:31.261817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} -{"Time":"2022-12-07T09:15:31.261819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"128.041µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cd3a74c7-27cc-4f4d-bcda-33541cbd4d2e\"}\n"} -{"Time":"2022-12-07T09:15:31.261931+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.261952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.261954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/organizations/2d6404d9-6b63-464a-9089-9fa94543235d/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"539.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"49599dc9-f1f4-4b4c-93d4-812aee7ee37b\"}\n"} -{"Time":"2022-12-07T09:15:31.262121+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.262124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.262126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/organizations/776fb9a2-c282-474f-860a-f5963a2514bc/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"537.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8f7fc750-6298-409b-bce8-646c54ce62a0\"}\n"} -{"Time":"2022-12-07T09:15:31.262133+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.262135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.262138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" schedule_test.go:180: waiting for template version job 2a977a53-d7f3-464f-8cc7-d92b1b41572f\n"} -{"Time":"2022-12-07T09:15:31.26214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.262141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.262143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/organizations/af53e927-c7ea-4846-ae8d-989e96093375/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"779.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"27098dd3-d91d-44f6-84b2-ea33f14fe8a7\"}\n"} -{"Time":"2022-12-07T09:15:31.262145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.262146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.262147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" rename_test.go:22: waiting for template version job 323f6f0b-7169-45e9-91ba-55cf05a9783e\n"} -{"Time":"2022-12-07T09:15:31.262223+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.262226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.262228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" speedtest_test.go:23: waiting for template version job 3950bdc7-f4a2-4cf3-aa97-45144a791868\n"} -{"Time":"2022-12-07T09:15:31.262343+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.26235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.262353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"640.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"55e68978-1a78-4988-84d3-8771cbca0e73\"}\n"} -{"Time":"2022-12-07T09:15:31.263011+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.263015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.263019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"0f6702e9-8328-40d2-94d6-e62a05b626df\"}\n"} -{"Time":"2022-12-07T09:15:31.263024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp","Output":"--- PASS: TestCommandHelp (0.01s)\n"} -{"Time":"2022-12-07T09:15:31.263027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_--help","Output":" --- PASS: TestCommandHelp/coder_--help (0.01s)\n"} -{"Time":"2022-12-07T09:15:31.26303+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_--help","Elapsed":0.01} -{"Time":"2022-12-07T09:15:31.263033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_server_--help","Output":" --- PASS: TestCommandHelp/coder_server_--help (0.00s)\n"} -{"Time":"2022-12-07T09:15:31.263035+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp/coder_server_--help","Elapsed":0} -{"Time":"2022-12-07T09:15:31.263037+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCommandHelp","Elapsed":0.01} -{"Time":"2022-12-07T09:15:31.263039+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent"} -{"Time":"2022-12-07T09:15:31.26304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent","Output":"=== CONT TestWorkspaceAgent\n"} -{"Time":"2022-12-07T09:15:31.263043+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:31.263045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== RUN TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:31.263048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== PAUSE TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:31.26305+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:31.263052+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:31.263055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== RUN TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:31.263056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== PAUSE TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:31.263058+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:31.26306+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:31.263062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== RUN TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:31.263063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== PAUSE TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:31.263065+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:31.263068+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRelative"} -{"Time":"2022-12-07T09:15:31.263069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRelative","Output":"=== CONT TestRelative\n"} -{"Time":"2022-12-07T09:15:31.263071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRelative","Output":"--- PASS: TestRelative (0.00s)\n"} -{"Time":"2022-12-07T09:15:31.263073+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRelative","Elapsed":0} -{"Time":"2022-12-07T09:15:31.263074+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList"} -{"Time":"2022-12-07T09:15:31.263076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList","Output":"=== CONT TestTemplateList\n"} -{"Time":"2022-12-07T09:15:31.263078+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:31.263079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== RUN TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:31.263081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== PAUSE TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:31.263083+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:31.263085+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates"} -{"Time":"2022-12-07T09:15:31.263086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":"=== RUN TestTemplateList/NoTemplates\n"} -{"Time":"2022-12-07T09:15:31.263087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":"=== PAUSE TestTemplateList/NoTemplates\n"} -{"Time":"2022-12-07T09:15:31.26309+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates"} -{"Time":"2022-12-07T09:15:31.263091+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull"} -{"Time":"2022-12-07T09:15:31.263092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull","Output":"=== CONT TestTemplatePull\n"} -{"Time":"2022-12-07T09:15:31.263093+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName"} -{"Time":"2022-12-07T09:15:31.263095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName","Output":"=== RUN TestTemplatePull/NoName\n"} -{"Time":"2022-12-07T09:15:31.263097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.263098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.2631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.263 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/organizations/77d6674e-0f03-4ecc-bd20-fdc9a2980a76/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"525.791µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"caf06f80-fafb-4202-a2bf-570427006ec3\"}\n"} -{"Time":"2022-12-07T09:15:31.263103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName","Output":"=== PAUSE TestTemplatePull/NoName\n"} -{"Time":"2022-12-07T09:15:31.263104+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName"} -{"Time":"2022-12-07T09:15:31.263106+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:31.263107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== RUN TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:31.263115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== PAUSE TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:31.263116+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:31.263118+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:31.26312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== RUN TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:31.263121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== PAUSE TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:31.263123+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:31.263124+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit"} -{"Time":"2022-12-07T09:15:31.263125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit","Output":"=== CONT TestTemplateInit\n"} -{"Time":"2022-12-07T09:15:31.263127+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract"} -{"Time":"2022-12-07T09:15:31.263129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":"=== RUN TestTemplateInit/Extract\n"} -{"Time":"2022-12-07T09:15:31.263131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":"=== PAUSE TestTemplateInit/Extract\n"} -{"Time":"2022-12-07T09:15:31.263132+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract"} -{"Time":"2022-12-07T09:15:31.263133+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile"} -{"Time":"2022-12-07T09:15:31.263135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile","Output":"=== CONT TestCreateParameterMapFromFile\n"} -{"Time":"2022-12-07T09:15:31.263137+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile"} -{"Time":"2022-12-07T09:15:31.263139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile","Output":"=== RUN TestCreateParameterMapFromFile/CreateParameterMapFromFile\n"} -{"Time":"2022-12-07T09:15:31.263141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile","Output":"=== PAUSE TestCreateParameterMapFromFile/CreateParameterMapFromFile\n"} -{"Time":"2022-12-07T09:15:31.263143+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile"} -{"Time":"2022-12-07T09:15:31.263144+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename"} -{"Time":"2022-12-07T09:15:31.263146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename","Output":"=== RUN TestCreateParameterMapFromFile/WithEmptyFilename\n"} -{"Time":"2022-12-07T09:15:31.263147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename","Output":"=== PAUSE TestCreateParameterMapFromFile/WithEmptyFilename\n"} -{"Time":"2022-12-07T09:15:31.263149+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename"} -{"Time":"2022-12-07T09:15:31.26315+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename"} -{"Time":"2022-12-07T09:15:31.263152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename","Output":"=== RUN TestCreateParameterMapFromFile/WithInvalidFilename\n"} -{"Time":"2022-12-07T09:15:31.263153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename","Output":"=== PAUSE TestCreateParameterMapFromFile/WithInvalidFilename\n"} -{"Time":"2022-12-07T09:15:31.263155+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename"} -{"Time":"2022-12-07T09:15:31.263156+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML"} -{"Time":"2022-12-07T09:15:31.263158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML","Output":"=== RUN TestCreateParameterMapFromFile/WithInvalidYAML\n"} -{"Time":"2022-12-07T09:15:31.263162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML","Output":"=== PAUSE TestCreateParameterMapFromFile/WithInvalidYAML\n"} -{"Time":"2022-12-07T09:15:31.263163+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML"} -{"Time":"2022-12-07T09:15:31.263165+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples"} -{"Time":"2022-12-07T09:15:31.263167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples","Output":"=== CONT Test_formatExamples\n"} -{"Time":"2022-12-07T09:15:31.263168+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples"} -{"Time":"2022-12-07T09:15:31.263169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples","Output":"=== RUN Test_formatExamples/No_examples\n"} -{"Time":"2022-12-07T09:15:31.263171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples","Output":"=== PAUSE Test_formatExamples/No_examples\n"} -{"Time":"2022-12-07T09:15:31.263176+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples"} -{"Time":"2022-12-07T09:15:31.263178+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples"} -{"Time":"2022-12-07T09:15:31.26318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples","Output":"=== RUN Test_formatExamples/Output_examples\n"} -{"Time":"2022-12-07T09:15:31.263181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples","Output":"=== PAUSE Test_formatExamples/Output_examples\n"} -{"Time":"2022-12-07T09:15:31.263182+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples"} -{"Time":"2022-12-07T09:15:31.263184+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands"} -{"Time":"2022-12-07T09:15:31.263186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands","Output":"=== RUN Test_formatExamples/No_description_outputs_commands\n"} -{"Time":"2022-12-07T09:15:31.263189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands","Output":"=== PAUSE Test_formatExamples/No_description_outputs_commands\n"} -{"Time":"2022-12-07T09:15:31.26319+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands"} -{"Time":"2022-12-07T09:15:31.263191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards"} -{"Time":"2022-12-07T09:15:31.263193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards","Output":"=== CONT Test_parsePortForwards\n"} -{"Time":"2022-12-07T09:15:31.263195+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges"} -{"Time":"2022-12-07T09:15:31.263196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges","Output":"=== RUN Test_parsePortForwards/TCP_mixed_ports_and_ranges\n"} -{"Time":"2022-12-07T09:15:31.263198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges","Output":"=== PAUSE Test_parsePortForwards/TCP_mixed_ports_and_ranges\n"} -{"Time":"2022-12-07T09:15:31.263199+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges"} -{"Time":"2022-12-07T09:15:31.263201+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range"} -{"Time":"2022-12-07T09:15:31.263202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range","Output":"=== RUN Test_parsePortForwards/UDP_with_port_range\n"} -{"Time":"2022-12-07T09:15:31.263204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range","Output":"=== PAUSE Test_parsePortForwards/UDP_with_port_range\n"} -{"Time":"2022-12-07T09:15:31.263206+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range"} -{"Time":"2022-12-07T09:15:31.263209+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.26321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.263215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" configssh_test.go:103: waiting for template version job 1715306d-575a-4cfd-b024-ba0e9cc794c1\n"} -{"Time":"2022-12-07T09:15:31.263216+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range"} -{"Time":"2022-12-07T09:15:31.263218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range","Output":"=== RUN Test_parsePortForwards/Bad_port_range\n"} -{"Time":"2022-12-07T09:15:31.263227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range","Output":"=== PAUSE Test_parsePortForwards/Bad_port_range\n"} -{"Time":"2022-12-07T09:15:31.263233+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range"} -{"Time":"2022-12-07T09:15:31.263235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.263236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.263238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.263 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ef18c1ee-06ed-4f22-9381-c4a2adfb76b7\"}\n"} -{"Time":"2022-12-07T09:15:31.263241+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range"} -{"Time":"2022-12-07T09:15:31.263242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range","Output":"=== RUN Test_parsePortForwards/Bad_dest_port_range\n"} -{"Time":"2022-12-07T09:15:31.263244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range","Output":"=== PAUSE Test_parsePortForwards/Bad_dest_port_range\n"} -{"Time":"2022-12-07T09:15:31.263245+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range"} -{"Time":"2022-12-07T09:15:31.263247+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit"} -{"Time":"2022-12-07T09:15:31.263248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit","Output":"=== CONT TestTemplateEdit\n"} -{"Time":"2022-12-07T09:15:31.26325+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:31.263251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== RUN TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:31.263253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== PAUSE TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:31.263254+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:31.263258+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:31.263259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== RUN TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:31.263261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== PAUSE TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:31.263262+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:31.263264+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:31.263267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== RUN TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:31.263268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== PAUSE TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:31.26327+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:31.263271+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:31.263272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== RUN TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:31.263275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== PAUSE TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:31.263277+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:31.263278+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:31.26328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== RUN TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:31.263282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== PAUSE TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:31.263285+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:31.263287+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions"} -{"Time":"2022-12-07T09:15:31.263289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions","Output":"=== CONT TestTemplateVersions\n"} -{"Time":"2022-12-07T09:15:31.26329+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:31.263292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== RUN TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:31.263293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== PAUSE TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:31.263295+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:31.263296+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated"} -{"Time":"2022-12-07T09:15:31.263297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated","Output":"=== CONT TestVerifyWorkspaceOutdated\n"} -{"Time":"2022-12-07T09:15:31.263298+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date"} -{"Time":"2022-12-07T09:15:31.263302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date","Output":"=== RUN TestVerifyWorkspaceOutdated/Up-to-date\n"} -{"Time":"2022-12-07T09:15:31.263303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date","Output":"=== PAUSE TestVerifyWorkspaceOutdated/Up-to-date\n"} -{"Time":"2022-12-07T09:15:31.263305+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date"} -{"Time":"2022-12-07T09:15:31.263306+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated"} -{"Time":"2022-12-07T09:15:31.263308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated","Output":"=== RUN TestVerifyWorkspaceOutdated/Outdated\n"} -{"Time":"2022-12-07T09:15:31.263309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated","Output":"=== PAUSE TestVerifyWorkspaceOutdated/Outdated\n"} -{"Time":"2022-12-07T09:15:31.263311+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated"} -{"Time":"2022-12-07T09:15:31.263312+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.263333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.263733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.263738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.263741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.263 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"547037d5-2532-4bdd-bd19-900dacebb7d4\"}\n"} -{"Time":"2022-12-07T09:15:31.263749+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} -{"Time":"2022-12-07T09:15:31.263751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} -{"Time":"2022-12-07T09:15:31.263753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.263 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.75µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"9a3dc1f1-a1af-4251-984f-d517a103f1ac\"}\n"} -{"Time":"2022-12-07T09:15:31.263913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.263 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eb6233a2-9503-4021-9a88-34accb2416c4\"}\n"} -{"Time":"2022-12-07T09:15:31.264273+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.264281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.264283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.264 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/92be3fa1-f7d8-4c79-a416-b55f280486cb/status/suspend\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"278.416µs\", \"status_code\": 400, \"latency_ms\": 0, \"request_id\": \"d2432c7f-3708-47c6-ac1b-093652a93d02\"}\n"} -{"Time":"2022-12-07T09:15:31.264486+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} -{"Time":"2022-12-07T09:15:31.264491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} -{"Time":"2022-12-07T09:15:31.264493+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.264 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/users/me/keys/tokens\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bc8849bb-c08f-41ce-a713-6f4372904ef6\"}\n"} -{"Time":"2022-12-07T09:15:31.264762+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusOther"} -{"Time":"2022-12-07T09:15:31.264765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusOther","Output":"=== RUN TestUserStatus/StatusOther\n"} -{"Time":"2022-12-07T09:15:31.267184+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.267196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.267199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"89.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bbcac795-e8ad-47e5-9b57-a6b06400bb26\"}\n"} -{"Time":"2022-12-07T09:15:31.267388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8a7309b6-627e-4557-9fc7-a367858e87b3\"}\n"} -{"Time":"2022-12-07T09:15:31.267602+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} -{"Time":"2022-12-07T09:15:31.267611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} -{"Time":"2022-12-07T09:15:31.267613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.25µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"19380c9f-8691-4576-8686-a65180f71aad\"}\n"} -{"Time":"2022-12-07T09:15:31.267757+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.267764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.267766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.083µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"27eb5a94-d0ec-4b9b-96ef-36a430e11f32\"}\n"} -{"Time":"2022-12-07T09:15:31.267769+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} -{"Time":"2022-12-07T09:15:31.267771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} -{"Time":"2022-12-07T09:15:31.267773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7d28f6a7-68a6-4852-a594-e9315324e22b\"}\n"} -{"Time":"2022-12-07T09:15:31.267924+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.267928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.26793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5c442b4b-5e74-47f8-a95b-5b3310a98ed1\"}\n"} -{"Time":"2022-12-07T09:15:31.267973+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.267977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.267984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"388.541µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0e370e55-61b6-4a72-80c6-76c0f1063c6e\"}\n"} -{"Time":"2022-12-07T09:15:31.268281+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} -{"Time":"2022-12-07T09:15:31.268285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} -{"Time":"2022-12-07T09:15:31.268286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.268 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/users/me/keys/tokens\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e3bd369b-805d-4865-8ff7-e0eae5a87e87\"}\n"} -{"Time":"2022-12-07T09:15:31.26844+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.268443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.268444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.268 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/compassionate-shtern9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f6b4a211-79d9-46fa-93c6-93426330d9d1\"}\n"} -{"Time":"2022-12-07T09:15:31.268651+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.268654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.268657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.268 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/organizations/4b03f6f1-82c5-4c05-a33b-0522ccf384cc/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"470.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ebdb0880-fe75-44c2-b6ed-f74783bea7af\"}\n"} -{"Time":"2022-12-07T09:15:31.268739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" schedule_test.go:34: waiting for template version job c8f60357-5e21-4623-a231-7d6aa8217d8e\n"} -{"Time":"2022-12-07T09:15:31.268952+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.26896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.268962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.268 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/f03b97db-55fc-4168-bbd9-bcd444eb7616/status/suspend\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"235.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1a2ff61e-fcaf-49d5-bd11-bdc8fc8c4bb9\"}\n"} -{"Time":"2022-12-07T09:15:31.269332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.269 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/compassionate-shtern9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"245.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"54292fa5-3041-40a7-8b77-bfb1747c8172\"}\n"} -{"Time":"2022-12-07T09:15:31.269997+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} -{"Time":"2022-12-07T09:15:31.270004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} -{"Time":"2022-12-07T09:15:31.270006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.269 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"431beff6-fab9-491b-b629-04ab9220d435\"}\n"} -{"Time":"2022-12-07T09:15:31.270151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"acf01c30-f644-4f8c-b3c2-facb21bcc063\"}\n"} -{"Time":"2022-12-07T09:15:31.270552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/users/me/keys/tokens\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90809586-8ec5-4d3d-84a1-c764364443fb\"}\n"} -{"Time":"2022-12-07T09:15:31.270918+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.270923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.270924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.25µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"c630621c-5ff8-4313-a197-1fc63c84ab27\"}\n"} -{"Time":"2022-12-07T09:15:31.27108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.271 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"17968765-fcb5-4a70-aae3-73355bbdc5f4\"}\n"} -{"Time":"2022-12-07T09:15:31.271434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.271 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/f03b97db-55fc-4168-bbd9-bcd444eb7616\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"242.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a5c2a90c-85de-4c7d-8e28-58de901c7c55\"}\n"} -{"Time":"2022-12-07T09:15:31.27187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.271 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/f03b97db-55fc-4168-bbd9-bcd444eb7616/status/activate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"230.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b88c02c0-6cfb-4986-b13c-d1e6001bfb2d\"}\n"} -{"Time":"2022-12-07T09:15:31.272132+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} -{"Time":"2022-12-07T09:15:31.272136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} -{"Time":"2022-12-07T09:15:31.272138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.272 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"10.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"78239511-3fd6-4680-a0d3-5148671de0e6\"}\n"} -{"Time":"2022-12-07T09:15:31.272225+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.272229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.272231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" t.go:81: 2022-12-07 08:15:31.272 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56554\", \"path\": \"/api/v2/users/f03b97db-55fc-4168-bbd9-bcd444eb7616\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"216.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5dbc5382-d248-4014-b4b1-ac542742e665\"}\n"} -{"Time":"2022-12-07T09:15:31.272259+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} -{"Time":"2022-12-07T09:15:31.272263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} -{"Time":"2022-12-07T09:15:31.272268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.272 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"9.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"a23398ea-9538-4f27-96ac-ab080c098113\"}\n"} -{"Time":"2022-12-07T09:15:31.272641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"2022-12-07 08:15:31.272 [INFO]\t(stdlib)\t\u003cnet/http/server.go:3230\u003e\t(*Server).logf\t2022/12/07 09:15:31 http: superfluous response.WriteHeader call from github.com/coder/coder/coderd/tracing.(*StatusWriter).WriteHeader (status_writer.go:38)\n"} -{"Time":"2022-12-07T09:15:31.272684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" t.go:81: 2022-12-07 08:15:31.272 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56562\", \"path\": \"/api/v2/users/me/keys/qI9ePcMNro\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"269.125µs\", \"status_code\": 204, \"latency_ms\": 0, \"request_id\": \"4d53d8dc-f6cc-4402-8aa0-f6b976a22c56\"}\n"} -{"Time":"2022-12-07T09:15:31.27338+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserStatus"} -{"Time":"2022-12-07T09:15:31.273386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"=== CONT TestUserStatus\n"} -{"Time":"2022-12-07T09:15:31.273388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:31.273391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Output":"--- PASS: TestUserStatus (0.02s)\n"} -{"Time":"2022-12-07T09:15:31.273393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusSelf","Output":" --- PASS: TestUserStatus/StatusSelf (0.00s)\n"} -{"Time":"2022-12-07T09:15:31.273395+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusSelf","Elapsed":0} -{"Time":"2022-12-07T09:15:31.273397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusOther","Output":" --- PASS: TestUserStatus/StatusOther (0.01s)\n"} -{"Time":"2022-12-07T09:15:31.2734+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserStatus/StatusOther","Elapsed":0.01} -{"Time":"2022-12-07T09:15:31.273402+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserStatus","Elapsed":0.02} -{"Time":"2022-12-07T09:15:31.273404+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.273405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.274006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTokens"} -{"Time":"2022-12-07T09:15:31.274014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"=== CONT TestTokens\n"} -{"Time":"2022-12-07T09:15:31.274016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:31.274033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTokens","Output":"--- PASS: TestTokens (0.02s)\n"} -{"Time":"2022-12-07T09:15:31.274037+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTokens","Elapsed":0.02} -{"Time":"2022-12-07T09:15:31.27404+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.274041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.276115+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.276125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.276127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.276 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"116.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"dab7deb7-c2c5-4f1b-8cfa-ffaef8f46b9d\"}\n"} -{"Time":"2022-12-07T09:15:31.276416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.276 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"42.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"82e033b5-c784-44c8-909d-0d8cbdbf3cf4\"}\n"} -{"Time":"2022-12-07T09:15:31.277027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.276 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"410.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"164d58d3-a425-4796-bb09-1ed4b3b6179d\"}\n"} -{"Time":"2022-12-07T09:15:31.277035+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.277037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.277039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.277 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"108.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8e1a1ff3-68aa-4080-99d1-51f8b432d969\"}\n"} -{"Time":"2022-12-07T09:15:31.277202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.277 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"27.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0dbaa747-140c-4c34-b760-fa9e70b2fc14\"}\n"} -{"Time":"2022-12-07T09:15:31.277655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.27766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.277661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.277 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/organizations/a402f4e9-4ace-49ca-a1dc-a528942489c4/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"467.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"634f6f16-9a61-4119-8f71-1350ea0fcc45\"}\n"} -{"Time":"2022-12-07T09:15:31.277682+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.277689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.277692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.277 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"342.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6a0d0d6e-747a-4bab-b2a9-a00878a7e73d\"}\n"} -{"Time":"2022-12-07T09:15:31.277737+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.277742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.277743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" schedule_test.go:104: waiting for template version job 075850e3-9dd1-4c18-a49a-984c7fd9d6c1\n"} -{"Time":"2022-12-07T09:15:31.278252+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.278256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.278267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.278 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/organizations/7a194acc-1f18-4514-8aa5-edb5f77d15de/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"447.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7f94af10-77fb-4804-890f-93110d15d82e\"}\n"} -{"Time":"2022-12-07T09:15:31.278324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" schedule_test.go:71: waiting for template version job 995ccff3-c44c-45d2-868d-658e4e245702\n"} -{"Time":"2022-12-07T09:15:31.28938+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.289386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.289388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.289 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9c58519b-95b4-41c6-be2c-b002f3f0bbc9\"}\n"} -{"Time":"2022-12-07T09:15:31.289398+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.2894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.289401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.289 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"363.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"30662def-f111-4b24-880c-c672efb74a33\"}\n"} -{"Time":"2022-12-07T09:15:31.289465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.289476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.289479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.289 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"380.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3fdb04d5-75fa-4a1d-b722-cd72da6c149d\"}\n"} -{"Time":"2022-12-07T09:15:31.289494+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.289499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.289502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.289 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"405.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"37292d10-e9a9-4e53-93b4-95c19feb3837\"}\n"} -{"Time":"2022-12-07T09:15:31.289664+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.289669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.289671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.289 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"360.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0ddf0800-2ce5-4f50-9dd9-06a55b22f3b6\"}\n"} -{"Time":"2022-12-07T09:15:31.295282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.295287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.295288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.295 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"caa38326-85bd-4007-b464-e53d7ff8f40b\"}\n"} -{"Time":"2022-12-07T09:15:31.304037+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.304045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.304047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.303 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"243.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33998e73-0b4f-4581-8060-94300ad1b023\"}\n"} -{"Time":"2022-12-07T09:15:31.304055+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.304056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.304058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.304 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"236.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"abd3b80e-c933-4823-96a5-f5ede9ca3240\"}\n"} -{"Time":"2022-12-07T09:15:31.31307+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.313078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.31308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5813be16-d44b-4709-90ae-65bf9fd2d9c2\"}\n"} -{"Time":"2022-12-07T09:15:31.313085+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.313086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.313088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"256.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b06c234b-d5db-4661-8c60-d4ba36e80863\"}\n"} -{"Time":"2022-12-07T09:15:31.313105+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.313106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.313108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"89252ca4-29c1-4c2f-84bf-6a9f5e500141\"}\n"} -{"Time":"2022-12-07T09:15:31.31319+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.313194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.313196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"283.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ddf5ca54-e326-48bf-a47e-02502746159b\"}\n"} -{"Time":"2022-12-07T09:15:31.313536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.31354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.313541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"251.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"636798ef-ec3b-4397-8d08-afa6980c507e\"}\n"} -{"Time":"2022-12-07T09:15:31.319802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.319805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.319807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.319 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"23ea0748-fac5-4095-90af-08c9f5d64e85\"}\n"} -{"Time":"2022-12-07T09:15:31.329149+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.329154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.329157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.329 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"266.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"74fea9e3-48b3-472c-bcac-23181765d9ae\"}\n"} -{"Time":"2022-12-07T09:15:31.329179+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.329184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.329186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.329 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e4096258-eb34-4072-9a35-8e51b6e7c5bf\"}\n"} -{"Time":"2022-12-07T09:15:31.338123+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.33813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.338133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3e09572f-4b92-493a-a914-71ca01f3cdeb\"}\n"} -{"Time":"2022-12-07T09:15:31.338137+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.338139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.338146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"115d2d92-e104-4c68-bd3e-73abdb0f1d71\"}\n"} -{"Time":"2022-12-07T09:15:31.338163+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.338165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.338167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"308.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a44eae5-aa86-424e-9a28-496f99b49ac2\"}\n"} -{"Time":"2022-12-07T09:15:31.33817+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.338171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.338173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ea9ca8ae-0e0f-49f4-8242-73cba6bf15a4\"}\n"} -{"Time":"2022-12-07T09:15:31.338595+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.338603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.338606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e92b4c73-e400-4619-b462-b4d114f25cd3\"}\n"} -{"Time":"2022-12-07T09:15:31.344948+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.344962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.344965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.344 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"300.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fba14c32-f4f9-485d-876d-dba8abf44fcc\"}\n"} -{"Time":"2022-12-07T09:15:31.353794+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.353806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.353809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.353 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"417.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1323a600-3f60-47fb-ac05-005f65b4d12c\"}\n"} -{"Time":"2022-12-07T09:15:31.353815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.353817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.35382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.353 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4aed768f-6a89-44a6-921b-608a9630d5e2\"}\n"} -{"Time":"2022-12-07T09:15:31.356715+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.356726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.356729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.356 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:31.356732+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.356734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.356736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.356 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:31.357906+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.357911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.357913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.357 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:31.35894+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.358948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.358951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.358 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:31.360791+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.360806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.36081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.360 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:31.362253+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.362258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.362261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"329.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"78dfb1a0-a272-4f16-a5f8-58994a98c2e6\"}\n"} -{"Time":"2022-12-07T09:15:31.362688+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.362699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.362702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1a6540d5-5f59-41ed-a213-83574b900c2d\"}\n"} -{"Time":"2022-12-07T09:15:31.362754+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.362757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.362759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"95357c50-0f65-4125-bf44-05326f63ce91\"}\n"} -{"Time":"2022-12-07T09:15:31.362766+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.362767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.362769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"416.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62759d97-dabf-4f3a-8869-52982fa0b27e\"}\n"} -{"Time":"2022-12-07T09:15:31.363739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.363744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.363746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.363 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2e54e08d-b13d-48f2-9fd9-b0dab5ac51d3\"}\n"} -{"Time":"2022-12-07T09:15:31.366721+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.366727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.36673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.366 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:31.369542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.369 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"354.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5557ef5d-7176-4590-b943-cf625ab6a01f\"}\n"} -{"Time":"2022-12-07T09:15:31.37583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.375837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.375839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.375 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:31.376611+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.376634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.376638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.376 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:31.378501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.378509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.378513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0e9a951a-15c8-42e9-a090-07a6f535b426\"}\n"} -{"Time":"2022-12-07T09:15:31.378903+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.37891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.378913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cf09a126-af13-45b1-8c53-7aed6e6ac5c8\"}\n"} -{"Time":"2022-12-07T09:15:31.388583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.388596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.3886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.388 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"703.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7d3d0d84-1fe0-43d1-9b3c-594efce95d46\"}\n"} -{"Time":"2022-12-07T09:15:31.388679+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.388683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.388685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.388 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"778.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b163acad-cb3f-47c4-8276-103ac08ba669\"}\n"} -{"Time":"2022-12-07T09:15:31.388691+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.388693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.388695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.388 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"773.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"10db3e33-3885-41e5-8d9d-cc8d3f2c625a\"}\n"} -{"Time":"2022-12-07T09:15:31.3889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.388904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.388907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.388 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"981.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b9da8c76-6e25-424e-9282-3899326b5f38\"}\n"} -{"Time":"2022-12-07T09:15:31.389583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.389592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.389596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.389 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"872.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d483b92d-8aa4-4e96-8ee3-161ad4f61b68\"}\n"} -{"Time":"2022-12-07T09:15:31.394833+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.394839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.394843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.394 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"469.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16041eac-a2b1-42be-8d13-9aa58292f14a\"}\n"} -{"Time":"2022-12-07T09:15:31.404495+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.404505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.404508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.404 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"512.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c2c2b6f6-45da-45d9-b5ee-9f26f57ef4af\"}\n"} -{"Time":"2022-12-07T09:15:31.404518+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.404521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.404523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.404 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"554.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3534f62-2e79-43da-8c1c-6cce7f544bca\"}\n"} -{"Time":"2022-12-07T09:15:31.407107+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.407115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.407119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.407163+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.407173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.407177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.407281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.407292+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.407296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.407299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.407351+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.407358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.407361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:31.407369+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.407372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.407376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:31.407421+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.407427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.40743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"size_bytes\": 2, \"path\": \"/tmp/TestRename1486770065/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.407435+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.407437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.407439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"size_bytes\": 2, \"path\": \"/tmp/TestSpeedtest1248491661/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.407447+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.40745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.407452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"size_bytes\": 2, \"path\": \"/tmp/TestRename1486770065/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.407457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.40746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.407462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"size_bytes\": 112, \"path\": \"/tmp/TestSpeedtest1248491661/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.407468+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.407471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.407475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"size_bytes\": 2, \"path\": \"/tmp/TestRename1486770065/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.407492+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.407496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.407499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"size_bytes\": 2, \"path\": \"/tmp/TestSpeedtest1248491661/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.407505+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.407508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.407511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.407516+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.407528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.407531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.407639+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.407645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.407648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.407 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:31.407654+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.407656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.407659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.407 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:31.40813+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.408135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.408139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.40821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.40827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:31.408296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStart4175551108/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.408326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStart4175551108/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.408354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStart4175551108/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.408391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.408476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.408 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:31.409145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.409152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.409156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.409252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.409264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:31.409311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStop3343082525/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.409329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStop3343082525/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.409368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStop3343082525/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.409384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.409479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.409 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:31.411097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.411102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.411106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.411173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.411205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:31.41124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH2701562645/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.411285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"size_bytes\": 114, \"path\": \"/tmp/TestConfigSSH2701562645/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.411323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"size_bytes\": 76, \"path\": \"/tmp/TestConfigSSH2701562645/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.411348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.41144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.411 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:31.412367+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.412374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.412377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"425.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a80acbc9-d6cf-4ca3-8d1e-ba381e9aa9dd\"}\n"} -{"Time":"2022-12-07T09:15:31.412865+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.412874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.412878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"582.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"130a334a-5c45-4e55-bf48-928d8693e461\"}\n"} -{"Time":"2022-12-07T09:15:31.412884+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.412887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.412897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"522.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fa708503-9880-4d86-b28a-479142bba70a\"}\n"} -{"Time":"2022-12-07T09:15:31.413038+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.413044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.413055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"574.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"763e8936-1bd5-4388-803a-a4a4f9fc94e2\"}\n"} -{"Time":"2022-12-07T09:15:31.413713+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.41372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.413723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.413 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0cad6682-aa45-433b-b058-ee8c6c91e49c\"}\n"} -{"Time":"2022-12-07T09:15:31.417201+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.417207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.417209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.41729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.417352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:31.417386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowEnabled3677771965/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.417418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowEnabled3677771965/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.417443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowEnabled3677771965/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.417464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.417559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.417 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:31.419606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.419 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"478.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d3a9c4f6-07ce-427b-8577-ea5500c1155c\"}\n"} -{"Time":"2022-12-07T09:15:31.42673+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.426744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.426748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.426 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.426755+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.426757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.42676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.426 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.4268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.426804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.42681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.426 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.426883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.426 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:31.426891+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.426895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.426899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.426 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.426904+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.426906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.426909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.426 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowNotFound2474356092/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.42694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.426 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowNotFound2474356092/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.426995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.426 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowNotFound2474356092/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.427017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.426 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.427032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.427035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.42704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.426 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:31.427087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowManual3642865273/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.427119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowManual3642865273/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.427168+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.427172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.427177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.427 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:31.427181+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.427184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.427189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowManual3642865273/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.427195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.427309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.427 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:31.42854+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.428548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.428551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.428 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"462.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c3d8b93-a24b-440e-ad2a-3157577747c2\"}\n"} -{"Time":"2022-12-07T09:15:31.428981+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.428989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.428992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.428 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"462.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20911351-350d-4b5e-a421-03c3b50286d4\"}\n"} -{"Time":"2022-12-07T09:15:31.438287+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.438298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.438303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9e28f273-2288-4129-b7c1-35faa01c7ee8\"}\n"} -{"Time":"2022-12-07T09:15:31.43839+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.438396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.4384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"41f4ae16-51c1-413d-9f63-b54a0b884fda\"}\n"} -{"Time":"2022-12-07T09:15:31.438445+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.43845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.438453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"509.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39bf02ec-bc1e-4d6f-a7dd-28e910f4e208\"}\n"} -{"Time":"2022-12-07T09:15:31.438509+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.438516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.438519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"541.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"862220e0-3a64-4e88-95b0-c20ff6f5e793\"}\n"} -{"Time":"2022-12-07T09:15:31.438903+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.43891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.438913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"489.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"21377a31-802b-49fe-b68f-3dda38044d2f\"}\n"} -{"Time":"2022-12-07T09:15:31.44509+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.4451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.445104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.445 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"532.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a20827b2-c85e-4ae0-b289-0343c340e087\"}\n"} -{"Time":"2022-12-07T09:15:31.453761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.453771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.453775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.453 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"12.333µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:31.453781+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.453785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.453789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.453 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"4.666µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:31.453847+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.453861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.453867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.453 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.792µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:31.453888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.453891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.453895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.453 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"21.375µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:31.454507+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.454517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.454521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"539.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5159c1af-ebdf-437a-8447-5fd0523bdf14\"}\n"} -{"Time":"2022-12-07T09:15:31.454576+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.454583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.454607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"628.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a5ec7789-b544-4cf1-a888-e5dc97b28b76\"}\n"} -{"Time":"2022-12-07T09:15:31.456862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.456872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.456876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.456 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"19.042µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:31.457782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.457791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.457795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.457 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.457837+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.457844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.457848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.457 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.458012+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.458021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.458025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.457 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.458063+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.458071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.458075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.457 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.45862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.458627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.458631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.458 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.458773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.458 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.459654+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.45966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.459678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.459 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.45988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.459 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.461689+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.461698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.46171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.461 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.462951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.462 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"resource_count\": 1, \"resources\": [{\"name\": \"example\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"6ced57b7-a44f-42f1-ada3-7ef385529bc6\", \"name\": \"example\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.464086+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.464134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.464142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.463 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.834875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f070e718-14c8-49f2-92b8-5c6fa931be38\"}\n"} -{"Time":"2022-12-07T09:15:31.464764+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.464776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.464802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.464 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"161.667µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:31.46599+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.466007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.466012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.465 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.13775ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"bd50f420-d357-4fc7-b631-63166ab44e82\"}\n"} -{"Time":"2022-12-07T09:15:31.466019+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.466022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.466028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.465 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.463334ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"f295048b-2407-4dc5-a792-20370fa2068c\"}\n"} -{"Time":"2022-12-07T09:15:31.466285+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.466292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.466296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.388625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"08e16771-67df-464b-9ddd-28e27c25ad22\"}\n"} -{"Time":"2022-12-07T09:15:31.466305+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.466309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.466313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.86175ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9aeae095-240e-46fe-9e6b-b2118cec4efe\"}\n"} -{"Time":"2022-12-07T09:15:31.46776+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.467772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.467778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.467 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.467971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.467 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.469764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.469 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"652.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"26fc25b0-877d-4ba3-b37b-1293073b699e\"}\n"} -{"Time":"2022-12-07T09:15:31.474826+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.474836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.474841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.474 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"11.542µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:31.474981+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.474987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.474991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.474 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.583µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:31.477446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.477 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.477465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.477469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.477473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.477 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.477645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.477 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.477657+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.47766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.477663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.477 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.478638+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.478646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.47865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.478 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"623.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"156e4c05-b213-496c-879a-472fd2b89837\"}\n"} -{"Time":"2022-12-07T09:15:31.479231+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.47924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.479244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"656.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8e16fff0-0b1a-43e2-b7f5-51f58b8b1273\"}\n"} -{"Time":"2022-12-07T09:15:31.488589+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.488603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.488609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.488 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"669.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11874aa0-df43-400e-8ffe-88620021e445\"}\n"} -{"Time":"2022-12-07T09:15:31.48863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.488634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.488639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.488 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"681.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"770fe6f8-5d79-49f6-8f9f-f8a68531b90d\"}\n"} -{"Time":"2022-12-07T09:15:31.488652+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.488658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.488664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.488 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"748.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e845768-53df-4597-9913-1b4f3c02acc6\"}\n"} -{"Time":"2022-12-07T09:15:31.488756+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.488764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.48877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.488 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"737.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd90f093-c211-4a9f-85bc-6481739f733c\"}\n"} -{"Time":"2022-12-07T09:15:31.489164+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.489173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.489178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.489 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"691.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b888242a-a73f-43e1-82ed-703ad44bb111\"}\n"} -{"Time":"2022-12-07T09:15:31.495274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.495283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.495288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"624.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97a77859-a8cb-4d5c-a31b-23ad30f1fa30\"}\n"} -{"Time":"2022-12-07T09:15:31.504025+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.504034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.504046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.503 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"642.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4be01608-8d01-4889-8e00-057af6f4819f\"}\n"} -{"Time":"2022-12-07T09:15:31.504213+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.504222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.504229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.504 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"638.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11db7a89-d6ef-45ef-868a-7a15c42d4092\"}\n"} -{"Time":"2022-12-07T09:15:31.508674+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.508701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.508708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.508716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.508951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.508967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.508972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.508977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.508981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.508986+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.508989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.508994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.509014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.50902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.508 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.509696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.509706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.509711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.509716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.509722+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.509725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.509728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.509 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.509746+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.50975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.509754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.509758+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.509761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.509764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.509769+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.509772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.509776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.50978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.509785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.50979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.509794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.509799+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.509842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.509848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.509 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.509853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.50986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.509863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.509868+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.50987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.509874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.509879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.509881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.509885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.509895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.509 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.510274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.51028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.510285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.51029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.510295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.5103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.510305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.51031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.510519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.510526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.510533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.510 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.512473+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.51258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.512586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.511 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.512592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.511 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.512597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.512 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.512603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.512 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.512609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.512 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.512615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.512 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.51262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.512 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.512625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.512 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"resource_count\": 1, \"resources\": [{\"name\": \"example\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"6ced57b7-a44f-42f1-ada3-7ef385529bc6\", \"name\": \"example\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.512633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.512 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.514784+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.514816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.514823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.513 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.066709ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"6572faf5-c960-4423-83c5-81940d5c2431\"}\n"} -{"Time":"2022-12-07T09:15:31.514832+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.514836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.51484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.514 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"760.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8276344a-f1a6-4450-9e13-6e8942e8c313\"}\n"} -{"Time":"2022-12-07T09:15:31.514848+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.514851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.514856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.514 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"705.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"946866a7-ac5b-4d2f-9ab4-cf61458c9a05\"}\n"} -{"Time":"2022-12-07T09:15:31.517358+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.517369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.517375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.517 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.983917ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"45ee926c-16a9-471e-8bf9-742635852a10\"}\n"} -{"Time":"2022-12-07T09:15:31.517718+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.51774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.517746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.517 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.012ms\", \"status_code\": 200, \"latency_ms\": 3, \"request_id\": \"ef58950b-e44c-4604-8226-3ff12c471b28\"}\n"} -{"Time":"2022-12-07T09:15:31.51818+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.518188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.518193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.51834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.518352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.518361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.518484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.518494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.518608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.518981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.519028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.518 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.520439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.520 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.358625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"42a8c5fc-6391-4dda-a3f2-5a2d813b5fef\"}\n"} -{"Time":"2022-12-07T09:15:31.529101+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.52912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.529125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.529131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.529136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.529143+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.529146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.529149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.529154+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.529157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.52916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.529165+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.52919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.529193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.529198+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.529201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.529204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.52921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.529221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.529225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.529229+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.529232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.529236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.529244+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.529247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.529251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.529255+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.529258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.529261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.529265+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.529268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.529271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.529276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.52928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.529285+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.529287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.529291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.529295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.528 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.5293+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.529303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.529306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.528 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.52931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.529 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.530284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.530 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"893.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6026dfa-5ebb-4000-a1a4-e7a4c204841d\"}\n"} -{"Time":"2022-12-07T09:15:31.530299+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.530302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.530306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.530 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"750.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"05bc4f40-1886-4886-a379-cd9da9046f12\"}\n"} -{"Time":"2022-12-07T09:15:31.539418+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.539465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.539473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"914.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"10561ee5-ab0c-4e04-b36e-b08fc8dbe6a3\"}\n"} -{"Time":"2022-12-07T09:15:31.539482+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.539486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.539491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"960.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0d3d65e-ce1d-4de9-acf2-098acaecc60f\"}\n"} -{"Time":"2022-12-07T09:15:31.539498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.539507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.539513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.539 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"733.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c147bde3-cdcf-4b09-99ce-bcbbbc739ab6\"}\n"} -{"Time":"2022-12-07T09:15:31.53952+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.539524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.539528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.539 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"726.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"613f7770-46d1-458a-835a-e28e8214d4fb\"}\n"} -{"Time":"2022-12-07T09:15:31.540685+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.540696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.540701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.540 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"925.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8bdcd9fa-dbfc-4bb9-bad9-3e974b066507\"}\n"} -{"Time":"2022-12-07T09:15:31.54502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.545032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.545036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.544 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"649.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"610462cb-8326-4d1e-9ccc-e32f53c6f4ef\"}\n"} -{"Time":"2022-12-07T09:15:31.554921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.554943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.554986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.554 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"778µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"304b2be8-3a30-40df-b5bc-14e619bd98d8\"}\n"} -{"Time":"2022-12-07T09:15:31.554996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.555001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.555005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.554 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"795.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"861adb99-bda2-4fcc-af9d-4eaea04b1116\"}\n"} -{"Time":"2022-12-07T09:15:31.560438+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.56045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.560455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.559 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.560462+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.560466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.560471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.560476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.56048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.560484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.560491+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.560494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.560499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.560505+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.560509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.560514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.560519+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.560523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.560527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.560533+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.560537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.560542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.560547+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.560552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.560556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.560561+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.560565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.56057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.560575+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.560579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.560584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.560589+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.560593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.560597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.560603+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.560619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.560623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.560631+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.560635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.560639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.560644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.56065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.560662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.560757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.560769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.56119+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.561197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.561202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.561208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.561215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.561221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.560 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.561226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.561 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.561231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.561 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.565251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.563 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.042125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ba967bb3-d1f7-42bf-ad34-69d3e1722f94\"}\n"} -{"Time":"2022-12-07T09:15:31.565326+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.565332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.565338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.563 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.278625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bf8490f8-50ff-450c-b4ba-f02804c2d4df\"}\n"} -{"Time":"2022-12-07T09:15:31.565345+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.565349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.565354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.563 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.56536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.563 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.565367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.563 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.565373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.563 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.565389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.563 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.565395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.564 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.565401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.564 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"969.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b7c9053-5f2c-4044-9d95-acc301552e08\"}\n"} -{"Time":"2022-12-07T09:15:31.565411+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.565415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.565421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.565 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"996.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"051e142b-d996-476e-b628-dc55b84c3ee7\"}\n"} -{"Time":"2022-12-07T09:15:31.56645+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.566462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.566469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.566 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"778.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e27fd98-36a4-4df5-8ca7-a7ce57d03b81\"}\n"} -{"Time":"2022-12-07T09:15:31.56957+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.569583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.569589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.569 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.569595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.569 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.569602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.569 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.569608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.569 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.569614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.569 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.569619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.569 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.570172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.570 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"845.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"734e62bc-b2c2-4937-ae3a-1efda7845a49\"}\n"} -{"Time":"2022-12-07T09:15:31.586312+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.586349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.586357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.579 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.586364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.579 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.586369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.579 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.586382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.579 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.586387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.579 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.586391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.580 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.586396+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.586399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.586402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.71125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"adf262be-8d09-4ead-82f1-c3e91030ad86\"}\n"} -{"Time":"2022-12-07T09:15:31.586408+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.586411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.586431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.583 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.200125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"99f86d93-199f-42d6-b12d-e2bd79d8b6e3\"}\n"} -{"Time":"2022-12-07T09:15:31.586437+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.58644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.586444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.585 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.586448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.585 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.586453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.585 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.586464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.585 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.586468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.585 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.586473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.585 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.588336+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.58836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.588367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"934.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f23b4e0-43fc-4b3a-8439-04f0e5c58714\"}\n"} -{"Time":"2022-12-07T09:15:31.588376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.58838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.588385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.588 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"703.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4cb225ce-e3ee-41db-b5f7-eafa9ecbb194\"}\n"} -{"Time":"2022-12-07T09:15:31.589878+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.589924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.58995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.588 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"674.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"02c8e98c-802c-4731-a4d4-c3e09acfc544\"}\n"} -{"Time":"2022-12-07T09:15:31.589974+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.590027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.590043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"732.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"08c1b98c-cf98-4eba-9ff9-42bcff93351b\"}\n"} -{"Time":"2022-12-07T09:15:31.590058+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.590063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.590066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"751.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d6c1105c-9010-4dd4-8f34-80a414600e77\"}\n"} -{"Time":"2022-12-07T09:15:31.595378+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.595399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.595405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.595 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"718.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e01181c8-4c67-4750-90fa-a1fcf8b77ac2\"}\n"} -{"Time":"2022-12-07T09:15:31.60497+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.605032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.605043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.604 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.131ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"776b3753-d79a-4cf0-a316-b609470e92d5\"}\n"} -{"Time":"2022-12-07T09:15:31.605055+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.60506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.605072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.604 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.118834ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"61c5d58f-700a-48b8-ba0c-855985d3ac9b\"}\n"} -{"Time":"2022-12-07T09:15:31.61179+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.611813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.61183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.611836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.611841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.611846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.611 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"916de766-69ed-4da8-970d-09d3c4f1031d\"}\n"} -{"Time":"2022-12-07T09:15:31.611851+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.611854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.611858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.611863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.611867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.611872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.611 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"213dd94e-a7d9-470a-b9bc-2a2329f81f1b\"}\n"} -{"Time":"2022-12-07T09:15:31.61265+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.612659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.612663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.612668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.611 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.612673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.612 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.612677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.612 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"05fbb093-2a53-48f3-b977-bec2c8c22c9b\"}\n"} -{"Time":"2022-12-07T09:15:31.612682+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.612686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.612689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.612 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.612702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.612 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.612706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.612 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.612711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.612 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"64a12dac-37aa-4435-98dc-732f5abc524b\"}\n"} -{"Time":"2022-12-07T09:15:31.617947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.614 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/templateversions/83f6409b-411a-440c-a46d-68bf890f1b28\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.337208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0b402080-a606-4f4e-9fad-c64c1430e2dc\"}\n"} -{"Time":"2022-12-07T09:15:31.621019+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.621046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.621052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.619 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/templateversions/2a977a53-d7f3-464f-8cc7-d92b1b41572f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.086416ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"7456fdb8-2168-4127-b925-fba21555d4dc\"}\n"} -{"Time":"2022-12-07T09:15:31.62106+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.621064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.621068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.619 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/templateversions/323f6f0b-7169-45e9-91ba-55cf05a9783e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"903.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"352b0132-58b2-4600-99f8-68a6ea39a678\"}\n"} -{"Time":"2022-12-07T09:15:31.621077+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.621081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.621086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.619 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/templateversions/3950bdc7-f4a2-4cf3-aa97-45144a791868\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"703.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"80b90f46-9653-4613-b6bf-9f425db301f2\"}\n"} -{"Time":"2022-12-07T09:15:31.621093+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.621096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.6211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.620 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/organizations/2d6404d9-6b63-464a-9089-9fa94543235d/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"831.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"43d145d2-96a7-43f5-88b2-cc8b4a350c52\"}\n"} -{"Time":"2022-12-07T09:15:31.630601+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.630657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.63067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.630 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"10.163708ms\", \"status_code\": 200, \"latency_ms\": 10, \"request_id\": \"0a4ba24c-b8f7-4f99-a1c1-d2f62bdf4530\"}\n"} -{"Time":"2022-12-07T09:15:31.630966+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.631001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.631021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.630 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.631031+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.631034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.631037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.630 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.63104+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.631043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.631046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.630 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.631049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.630 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.6313+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.631313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.631316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.631 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.631319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.631 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.631322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.631323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.631325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.631 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"787c68ce-6215-48b2-9635-93edda93d36f\"}\n"} -{"Time":"2022-12-07T09:15:31.631327+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.631329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.631349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.631 [DEBUG]\t(provisionerd-frosty_williamson0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.631351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.631 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"41ceb6d3-47f1-4cd7-9f26-925cda00f11f\"}\n"} -{"Time":"2022-12-07T09:15:31.631502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.631512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.631527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.631 [INFO]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"resource_name\": \"example\", \"resource_type\": \"aws_instance\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:31.631653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.631 [INFO]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\", \"resource_name\": \"example\", \"resource_type\": \"aws_instance\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:31.631818+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.63183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.631837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.631 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/templateversions/c8f60357-5e21-4623-a231-7d6aa8217d8e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.12ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"63c4f397-b7f2-437b-b13c-0b61eb6d2e66\"}\n"} -{"Time":"2022-12-07T09:15:31.631846+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.631849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.631852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.631 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/organizations/e6a67067-7846-4aac-943f-66f56090e659/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.982042ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"aff66b2e-d971-44ad-85f5-61e5f42db8f7\"}\n"} -{"Time":"2022-12-07T09:15:31.631876+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.631881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.631884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.631 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.631886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.631 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.632241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.632 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"558e4960-b2cf-4976-8c89-33539c3236e5\"}\n"} -{"Time":"2022-12-07T09:15:31.632269+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.632273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.632277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.251708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c9851c03-ed05-4ef0-8ba0-79deaa9e0200\"}\n"} -{"Time":"2022-12-07T09:15:31.632559+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.632569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.632573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/templateversions/075850e3-9dd1-4c18-a49a-984c7fd9d6c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.082583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"cbb5f80a-f209-4411-af4a-408bf5ffd75a\"}\n"} -{"Time":"2022-12-07T09:15:31.632579+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.632582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.632586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/organizations/776fb9a2-c282-474f-860a-f5963a2514bc/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.768959ms\", \"status_code\": 201, \"latency_ms\": 11, \"request_id\": \"e170de72-dc7c-4e87-b010-95df92abe612\"}\n"} -{"Time":"2022-12-07T09:15:31.632801+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.632822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.632831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/organizations/4b03f6f1-82c5-4c05-a33b-0522ccf384cc/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"505.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1a321eaa-5d4a-4b2d-aa9f-43ffe889b67a\"}\n"} -{"Time":"2022-12-07T09:15:31.6329+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.632905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.632908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/organizations/e6a67067-7846-4aac-943f-66f56090e659/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"562.916µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7ede72bb-190c-45c0-90c1-46191b603b64\"}\n"} -{"Time":"2022-12-07T09:15:31.632964+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.632969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.632971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/organizations/af53e927-c7ea-4846-ae8d-989e96093375/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.339042ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"a0754c87-b694-40ab-aa7c-563e3030c759\"}\n"} -{"Time":"2022-12-07T09:15:31.633041+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.633056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.633062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" schedule_test.go:128: waiting for workspace build job 26a0c3f6-81d4-4d15-8d12-6353d982cbbb\n"} -{"Time":"2022-12-07T09:15:31.634199+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.634209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.634214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/organizations/776fb9a2-c282-474f-860a-f5963a2514bc/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.40975ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"37221f32-46dd-4d62-83d6-da536be8b6a2\"}\n"} -{"Time":"2022-12-07T09:15:31.634222+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.634227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.63423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/organizations/2d6404d9-6b63-464a-9089-9fa94543235d/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.188625ms\", \"status_code\": 201, \"latency_ms\": 3, \"request_id\": \"1a40d7ec-0beb-4944-801d-a93cb76b545b\"}\n"} -{"Time":"2022-12-07T09:15:31.634365+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.634374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.634378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" rename_test.go:25: waiting for workspace build job c73b0cb3-9904-4ae8-972e-2567854483a7\n"} -{"Time":"2022-12-07T09:15:31.634384+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.634387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.634432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" schedule_test.go:184: waiting for workspace build job 42bafdf5-d95a-4c0b-b4ad-59e663315caf\n"} -{"Time":"2022-12-07T09:15:31.634632+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.63464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.634643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/organizations/af53e927-c7ea-4846-ae8d-989e96093375/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.2475ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"0c2ff77e-834c-4779-9c4e-41b2e60a2289\"}\n"} -{"Time":"2022-12-07T09:15:31.634786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.634821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.634838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/organizations/4b03f6f1-82c5-4c05-a33b-0522ccf384cc/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.674625ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"1393887c-e794-432b-84d8-d00310ad4c70\"}\n"} -{"Time":"2022-12-07T09:15:31.634859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.634871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.634879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" speedtest_test.go:23: waiting for workspace build job fc55599b-cbee-4e49-a39a-a09ff3bab930\n"} -{"Time":"2022-12-07T09:15:31.634948+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.634951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.634955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" schedule_test.go:40: waiting for workspace build job 2df72dfe-ca58-4072-80d5-620c94d61d27\n"} -{"Time":"2022-12-07T09:15:31.635952+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.635958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.635961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.635 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.635967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.635 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.636009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.635 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.636081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.636 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"9735bf2a-5c95-447c-af54-80d19da567c1\"}\n"} -{"Time":"2022-12-07T09:15:31.63634+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound"} -{"Time":"2022-12-07T09:15:31.63635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":"=== CONT TestScheduleShow/NotFound\n"} -{"Time":"2022-12-07T09:15:31.636354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"28.375µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"de02eb68-4e23-484a-8add-cabd16468cec\"}\n"} -{"Time":"2022-12-07T09:15:31.636628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0bc18ae4-73c3-4a90-8899-228da1bb3f4f\"}\n"} -{"Time":"2022-12-07T09:15:31.637043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56585\", \"path\": \"/api/v2/users/me/workspace/doesnotexist\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"43.042µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"16931033-f850-48f9-a26f-aec0b54e1d1d\"}\n"} -{"Time":"2022-12-07T09:15:31.637211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" t.go:81: 2022-12-07 08:15:31.637 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:31.638376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:31.63843+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table"} -{"Time":"2022-12-07T09:15:31.63844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":"=== CONT TestUserList/Table\n"} -{"Time":"2022-12-07T09:15:31.640228+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.640243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.640247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.640 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"687.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e6b5cc64-d33f-489e-8b39-041188e7b73d\"}\n"} -{"Time":"2022-12-07T09:15:31.642175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.642 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/organizations/77d6674e-0f03-4ecc-bd20-fdc9a2980a76/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"772.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6811eb4e-9c27-4d60-917e-045bdecf824d\"}\n"} -{"Time":"2022-12-07T09:15:31.643031+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table"} -{"Time":"2022-12-07T09:15:31.643071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":"=== CONT TestUserList/Table\n"} -{"Time":"2022-12-07T09:15:31.643079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" t.go:81: 2022-12-07 08:15:31.642 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56605\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"214.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1ef3a18c-6698-4593-8362-7f7d754f5efb\"}\n"} -{"Time":"2022-12-07T09:15:31.644238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" t.go:81: 2022-12-07 08:15:31.644 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56605\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"578.334µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"82fae316-f0ec-468d-93e9-bd66b926040e\"}\n"} -{"Time":"2022-12-07T09:15:31.645544+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.645563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.645569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.645 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/organizations/77d6674e-0f03-4ecc-bd20-fdc9a2980a76/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.798083ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"8fbbbd4c-42eb-4a92-9afc-cee7c05b8c57\"}\n"} -{"Time":"2022-12-07T09:15:31.645984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" configssh_test.go:106: waiting for workspace build job e074c4e5-cef3-4189-9066-7da13fd84aee\n"} -{"Time":"2022-12-07T09:15:31.649685+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table"} -{"Time":"2022-12-07T09:15:31.649704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":"=== CONT TestUserList/Table\n"} -{"Time":"2022-12-07T09:15:31.649708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" t.go:81: 2022-12-07 08:15:31.649 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56605\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"33.541µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"3c22cddb-153e-4b16-992b-d138e4ff55f4\"}\n"} -{"Time":"2022-12-07T09:15:31.649953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" t.go:81: 2022-12-07 08:15:31.649 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56605\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"39.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"02c7224b-3eb6-4127-b65b-455a5ee8e984\"}\n"} -{"Time":"2022-12-07T09:15:31.651114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" t.go:81: 2022-12-07 08:15:31.651 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56605\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"847.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8ca5caa7-3d05-40e3-9d20-2e143822d351\"}\n"} -{"Time":"2022-12-07T09:15:31.651356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" ptytest.go:103: 2022-12-07 08:15:31.651: cmd: stdout: \"USERNAME EMAIL CREATED AT STATUS \"\n"} -{"Time":"2022-12-07T09:15:31.651366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" ptytest.go:103: 2022-12-07 08:15:31.651: cmd: stdout: \"testuser testuser@coder.com 2022-12-07T08:15:31Z active \"\n"} -{"Time":"2022-12-07T09:15:31.651371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" userlist_test.go:34: 2022-12-07 08:15:31.651: cmd: matched \"coder.com\" = \"USERNAME EMAIL CREATED AT STATUS \\r\\ntestuser testuser@coder.com\"\n"} -{"Time":"2022-12-07T09:15:31.65143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" ptytest.go:80: 2022-12-07 08:15:31.651: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:31.652401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:31.652473+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText"} -{"Time":"2022-12-07T09:15:31.652483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText","Output":"=== CONT TestUserList/NoURLFileErrorHasHelperText\n"} -{"Time":"2022-12-07T09:15:31.654898+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.65491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.654914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/templateversions/995ccff3-c44c-45d2-868d-658e4e245702\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"646µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a590e09d-651e-4867-97ae-8988418d59a2\"}\n"} -{"Time":"2022-12-07T09:15:31.655637+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText"} -{"Time":"2022-12-07T09:15:31.655645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":"=== CONT TestUserList/SessionAuthErrorHasHelperText\n"} -{"Time":"2022-12-07T09:15:31.655717+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.655728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.655731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.655 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/organizations/7a194acc-1f18-4514-8aa5-edb5f77d15de/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d8a017b7-1a00-48bc-8aaf-429c683df5c9\"}\n"} -{"Time":"2022-12-07T09:15:31.656973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.656 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/organizations/7a194acc-1f18-4514-8aa5-edb5f77d15de/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"989.541µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"80b50cec-454e-4fb1-8d90-b29e1019ae56\"}\n"} -{"Time":"2022-12-07T09:15:31.657109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" schedule_test.go:77: waiting for workspace build job 41e57f15-a46b-42bf-ab59-81db41ecdffa\n"} -{"Time":"2022-12-07T09:15:31.659553+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.659567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.659571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.659 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"644.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e79a1804-78c5-4cba-8613-bce0487d8c51\"}\n"} -{"Time":"2022-12-07T09:15:31.660834+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.660841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.660845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"635.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3111e4fa-e309-442e-9dac-714a316152ac\"}\n"} -{"Time":"2022-12-07T09:15:31.66085+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.660852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.660855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"681µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"367b1219-aaaa-47fe-ab66-bf5994692ef1\"}\n"} -{"Time":"2022-12-07T09:15:31.661181+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText"} -{"Time":"2022-12-07T09:15:31.661189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":"=== CONT TestUserList/SessionAuthErrorHasHelperText\n"} -{"Time":"2022-12-07T09:15:31.661192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":" t.go:81: 2022-12-07 08:15:31.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56614\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.667µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"58d55b13-6f69-4fb9-aeeb-99dd0a57d71b\"}\n"} -{"Time":"2022-12-07T09:15:31.661232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":" t.go:81: 2022-12-07 08:15:31.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56614\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1c0c8ee4-bad0-4d1c-a0fc-27e2b1e9b486\"}\n"} -{"Time":"2022-12-07T09:15:31.66159+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.661597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.661601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"625.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"89020a91-120e-44ce-8fea-fce8eb0b66c8\"}\n"} -{"Time":"2022-12-07T09:15:31.661739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.66175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.661753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"837.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97c79b2d-39a2-41c8-a043-5ea9c8647b65\"}\n"} -{"Time":"2022-12-07T09:15:31.661826+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText"} -{"Time":"2022-12-07T09:15:31.661833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":"=== CONT TestUserList/SessionAuthErrorHasHelperText\n"} -{"Time":"2022-12-07T09:15:31.661837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":" t.go:81: 2022-12-07 08:15:31.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56614\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.333µs\", \"status_code\": 401, \"latency_ms\": 0, \"request_id\": \"5e574f7c-f60d-485b-b1d7-5b94dc94bc6b\"}\n"} -{"Time":"2022-12-07T09:15:31.662805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:31.662812+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON"} -{"Time":"2022-12-07T09:15:31.662815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":"=== CONT TestUserList/JSON\n"} -{"Time":"2022-12-07T09:15:31.666054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":" t.go:81: 2022-12-07 08:15:31.665 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56629\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"122.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bf056267-f233-4771-b5a2-e1f6902f8189\"}\n"} -{"Time":"2022-12-07T09:15:31.666261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":" t.go:81: 2022-12-07 08:15:31.666 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56629\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"47.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"06ec6bec-5bd7-4e36-9a32-43d32e271110\"}\n"} -{"Time":"2022-12-07T09:15:31.668697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":" t.go:81: 2022-12-07 08:15:31.668 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56629\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"acf3efeb-b53e-4a8b-a72b-8194a29e2c40\"}\n"} -{"Time":"2022-12-07T09:15:31.668897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":" t.go:81: 2022-12-07 08:15:31.668 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56629\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"21.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fcfc905a-b6c2-43f8-a591-ee61f6d77bc8\"}\n"} -{"Time":"2022-12-07T09:15:31.66962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":" t.go:81: 2022-12-07 08:15:31.669 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56629\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"537.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5fd22c2-e5d2-4c27-91b9-a07d222233fb\"}\n"} -{"Time":"2022-12-07T09:15:31.670318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:31.670354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList","Output":"--- PASS: TestUserList (0.00s)\n"} -{"Time":"2022-12-07T09:15:31.670367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Output":" --- PASS: TestUserList/Table (0.01s)\n"} -{"Time":"2022-12-07T09:15:31.670371+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserList/Table","Elapsed":0.01} -{"Time":"2022-12-07T09:15:31.670376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText","Output":" --- PASS: TestUserList/NoURLFileErrorHasHelperText (0.00s)\n"} -{"Time":"2022-12-07T09:15:31.670381+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserList/NoURLFileErrorHasHelperText","Elapsed":0} -{"Time":"2022-12-07T09:15:31.670384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Output":" --- PASS: TestUserList/SessionAuthErrorHasHelperText (0.01s)\n"} -{"Time":"2022-12-07T09:15:31.670391+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserList/SessionAuthErrorHasHelperText","Elapsed":0.01} -{"Time":"2022-12-07T09:15:31.670394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Output":" --- PASS: TestUserList/JSON (0.01s)\n"} -{"Time":"2022-12-07T09:15:31.670396+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserList/JSON","Elapsed":0.01} -{"Time":"2022-12-07T09:15:31.670399+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserList","Elapsed":0} -{"Time":"2022-12-07T09:15:31.670401+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.670403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.67195+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.671959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.671963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.671 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"501.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f0ce3d49-f361-4879-b7cc-4bce97c409a8\"}\n"} -{"Time":"2022-12-07T09:15:31.674312+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.67432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.674324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"113.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7027e7c3-7704-42e7-829a-36a59a94fe70\"}\n"} -{"Time":"2022-12-07T09:15:31.674578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"62.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"feeb8614-6b89-4763-b698-768862ace4d9\"}\n"} -{"Time":"2022-12-07T09:15:31.675274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.675 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0b308649-d5bc-4ca4-a60d-9b751cdc19ce\"}\n"} -{"Time":"2022-12-07T09:15:31.676065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.676 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/organizations/1b8aafcf-a913-43d2-858c-2bd901595123/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"614.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b5405414-46cb-4450-8d35-18bf8cdd3b39\"}\n"} -{"Time":"2022-12-07T09:15:31.676154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" state_test.go:36: waiting for template version job 211458ea-6383-4ab3-8d67-7d1013b623c9\n"} -{"Time":"2022-12-07T09:15:31.68424+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.68425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.684253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.684 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"469.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7649226e-48c3-433a-b3e6-f845177248f3\"}\n"} -{"Time":"2022-12-07T09:15:31.684281+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.684286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.684289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.684 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e279e7a1-eaa4-47a3-8132-6b4bd75c15ba\"}\n"} -{"Time":"2022-12-07T09:15:31.685408+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.685414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.685425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.685 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"441.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fa32ebfe-2fcb-4e0c-ad39-e34a6034db2b\"}\n"} -{"Time":"2022-12-07T09:15:31.68556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.685567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.68557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.685 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"559.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"de5d3787-1815-4e15-a16e-b4bc11ce0874\"}\n"} -{"Time":"2022-12-07T09:15:31.685891+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.685898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.685901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.685 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"503.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9d2c6b91-c5b5-488e-b9e9-a6bc1671023a\"}\n"} -{"Time":"2022-12-07T09:15:31.686064+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.686069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.686071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.686 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"491.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b4d0a51b-985d-4b5e-94df-2c36707c3134\"}\n"} -{"Time":"2022-12-07T09:15:31.697488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.697498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.697501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.697 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"468.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f40b8e86-2c91-455b-854c-b22e2d821b17\"}\n"} -{"Time":"2022-12-07T09:15:31.699749+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.699754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.699756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.699 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.699981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.699 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.700035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.699 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:31.700077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowManual3642865273/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.700105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowManual3642865273/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.70014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowManual3642865273/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.700198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"workspace_name\": \"naughty-bardeen9\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:31.700329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.700355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.700 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.701921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.701932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.701935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.701 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"376.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"194bb3da-c3c5-4d21-bac6-78cff462488a\"}\n"} -{"Time":"2022-12-07T09:15:31.708314+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.708323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.708326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.708 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"380.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f292409b-1622-49bf-a099-7a352f3f5ca7\"}\n"} -{"Time":"2022-12-07T09:15:31.708582+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.708589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.708592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.708 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"29867cf5-0858-4deb-baa8-6c8aad32240b\"}\n"} -{"Time":"2022-12-07T09:15:31.70997+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.709977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.70998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.709 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"372.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf7b916e-652f-4449-9925-348e80fdf8d4\"}\n"} -{"Time":"2022-12-07T09:15:31.709986+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.709989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.709992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.709 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"397.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c8d3bc7d-b7cc-4344-bf4b-141fe5806986\"}\n"} -{"Time":"2022-12-07T09:15:31.710413+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.710419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.710422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.710 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"393.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8b3a65b6-7704-43df-9440-3316300187fe\"}\n"} -{"Time":"2022-12-07T09:15:31.710524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.71053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.710533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.710 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"413.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9efd04b9-5fb1-4da4-8783-e1d9eb008237\"}\n"} -{"Time":"2022-12-07T09:15:31.722706+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.72272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.722725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.722 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"609.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6066e409-6040-46ec-97c5-df52f37540ea\"}\n"} -{"Time":"2022-12-07T09:15:31.727285+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.727301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.727305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.727 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c9fa35f-e7c4-4855-b015-feabb0bd150a\"}\n"} -{"Time":"2022-12-07T09:15:31.733381+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.733389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.733392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"07459606-108b-4781-a568-8d5c85a4398e\"}\n"} -{"Time":"2022-12-07T09:15:31.733578+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.733585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.733587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"414.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"79a85d2c-6851-402c-84d5-a50221f2301b\"}\n"} -{"Time":"2022-12-07T09:15:31.735072+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.735083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.735093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.734 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"417.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0d7ffaa9-b8aa-4c15-abf7-5550dfe69c56\"}\n"} -{"Time":"2022-12-07T09:15:31.735099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.735101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.735104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.735 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"451.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44f6942b-93e8-438f-9e2a-a5e17732d18b\"}\n"} -{"Time":"2022-12-07T09:15:31.735534+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.735541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.735544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.735 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a60c943c-0868-432b-9fc7-bbbb221ed152\"}\n"} -{"Time":"2022-12-07T09:15:31.73577+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.735777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.735781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.735 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"447.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a74d04d5-9aaf-4872-84c5-c006f71e50b2\"}\n"} -{"Time":"2022-12-07T09:15:31.747536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.747553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.747557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.747 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"467.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d68b15a2-768c-45fa-8293-5c4e6ab6ecbb\"}\n"} -{"Time":"2022-12-07T09:15:31.750859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.750866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.750869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.750 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.750874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.750 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.75089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.750 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.750916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.750 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.751761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.751764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.751767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.751 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"74d22349-ba9e-4d0b-bd7c-036f72d6cd9c\"}\n"} -{"Time":"2022-12-07T09:15:31.758582+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.758591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.758594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"438.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"858ac338-fc3f-4bbb-a309-c5113ba6d5f6\"}\n"} -{"Time":"2022-12-07T09:15:31.758624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.758639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.758642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"369.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"615a04ae-ccab-4758-8354-a222ba67caa8\"}\n"} -{"Time":"2022-12-07T09:15:31.760349+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.760392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.760425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"616.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40377d93-249c-4f14-b43f-76940b0ff124\"}\n"} -{"Time":"2022-12-07T09:15:31.760473+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.760494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.760497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"656.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b974b91e-1b8c-4b06-9090-b6210da93714\"}\n"} -{"Time":"2022-12-07T09:15:31.761291+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.761296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.761299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.761 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.033291ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"39ae6c23-b7c4-420b-afbd-1d95b32d5b92\"}\n"} -{"Time":"2022-12-07T09:15:31.761302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.761303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.761305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.761 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.056834ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d13a4662-5e5b-4f8c-994e-aae4d06d3ed0\"}\n"} -{"Time":"2022-12-07T09:15:31.772325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.772358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.772365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.772 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"810.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c16bf63-75f7-45f4-b48a-4602a85d970f\"}\n"} -{"Time":"2022-12-07T09:15:31.772786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.772794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.772799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.772 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:31.777353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.777 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"524.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c5f35416-f467-4dbf-9ee8-8f951c8f43b9\"}\n"} -{"Time":"2022-12-07T09:15:31.783373+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.783378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.783381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"449µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b0a6cc45-cee2-4125-bf1a-5930cbf42116\"}\n"} -{"Time":"2022-12-07T09:15:31.783622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.78363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.783633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"446µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f8b3953-08e3-478f-be21-9169318c1565\"}\n"} -{"Time":"2022-12-07T09:15:31.785407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.785419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.785424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"701.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2aa9926e-e525-4a12-b7f6-26bc917b5771\"}\n"} -{"Time":"2022-12-07T09:15:31.785457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.785464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.785468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"704.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a094721-9e93-4473-9452-a11325d74a54\"}\n"} -{"Time":"2022-12-07T09:15:31.785787+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.785796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.7858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"645.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"46f5d813-83a6-43ab-827f-222f1d1740df\"}\n"} -{"Time":"2022-12-07T09:15:31.785981+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.785989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.785992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"657.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c8969eb4-e12c-4a50-9ad5-ee157343ca7a\"}\n"} -{"Time":"2022-12-07T09:15:31.797204+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.797214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.797217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.797 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"385µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"87e9016a-4707-471e-a87a-7c75f876a5ac\"}\n"} -{"Time":"2022-12-07T09:15:31.801584+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.801602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.801606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.801 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.80171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.801 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.801721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.801 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.801983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.801987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.80199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.801 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bd921ca0-d8e0-4aa1-9671-2a4900ae60a8\"}\n"} -{"Time":"2022-12-07T09:15:31.808459+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.808465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.808469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.808 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"27c7e938-ce58-4fa2-a991-236a81c22985\"}\n"} -{"Time":"2022-12-07T09:15:31.808548+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.808556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.808559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.808 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dbc7f561-dad9-43de-8d5d-7c0f08894b8d\"}\n"} -{"Time":"2022-12-07T09:15:31.81004+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.810047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.81005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"371.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"733ca915-a733-4983-bd9c-fb77d92ac0df\"}\n"} -{"Time":"2022-12-07T09:15:31.810054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.810075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.810078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7d6e44d-e137-49b7-9d8c-fd76b070fa12\"}\n"} -{"Time":"2022-12-07T09:15:31.81039+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.810401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.810404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.810 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ddcdb835-3f39-435a-9e5d-388d6dc595c4\"}\n"} -{"Time":"2022-12-07T09:15:31.810542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.810546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.810548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.810 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"898cd2e9-fede-4be9-a1cf-3ce9ac8d8764\"}\n"} -{"Time":"2022-12-07T09:15:31.817458+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.817486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.817492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:31.817689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:31.817755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:31.817809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"size_bytes\": 2, \"path\": \"/tmp/TestRename1486770065/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.817867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"size_bytes\": 2, \"path\": \"/tmp/TestRename1486770065/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.817923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"size_bytes\": 2, \"path\": \"/tmp/TestRename1486770065/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.817932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"workspace_name\": \"lucid-ishizaka7\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:31.818043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.817 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:31.818078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.818 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.82252+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.822529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.822559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.822 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"993.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3fc5323-36df-4061-be00-31cc50602f1f\"}\n"} -{"Time":"2022-12-07T09:15:31.822994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.823004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.82301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.822 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:31.82313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.823 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:31.823216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.823 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:31.823287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePullFile4042663601/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.823353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullFile4042663601/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.82342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullFile4042663601/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.82343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:31.823551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.823 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:31.827887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"829.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"76a28ab6-5dee-4c0d-880e-56c7a09160bc\"}\n"} -{"Time":"2022-12-07T09:15:31.833885+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.8339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.833907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.833 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"800.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"86fe511b-abd1-42ec-8e38-57a0cf330689\"}\n"} -{"Time":"2022-12-07T09:15:31.83411+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.834118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.834123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"832.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ef3c53f-572f-4c77-918a-c0401248fed0\"}\n"} -{"Time":"2022-12-07T09:15:31.835584+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.835596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.835602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.835 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"786.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f909ce79-285a-4ea7-a9b2-0e1dc118fd21\"}\n"} -{"Time":"2022-12-07T09:15:31.83714+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.837154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.837161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"824µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9d2905ba-705f-437d-936c-6c846f0fac92\"}\n"} -{"Time":"2022-12-07T09:15:31.837169+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.837173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.837178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"891.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2bce754e-ac2f-4d92-918e-e518e984ce5a\"}\n"} -{"Time":"2022-12-07T09:15:31.838036+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.838044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.83805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:31.838057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:31.838063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:31.838069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStart4175551108/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.838076+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.838079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.838101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.837 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"759.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6cd92dae-1161-45d4-a145-124cb9d5552e\"}\n"} -{"Time":"2022-12-07T09:15:31.838108+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.838112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.838116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStart4175551108/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.838123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStart4175551108/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.838129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"workspace_name\": \"eloquent-greider4\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:31.838135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:31.838141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.837 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.847149+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.847164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.84717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.847 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"751.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4d7c697-ced7-4760-a55f-e0ea9588ed18\"}\n"} -{"Time":"2022-12-07T09:15:31.852363+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.852377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.852385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.851 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.852392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.852 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.852401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.852 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.852408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.852 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.852415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.852 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.853086+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.853096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.853103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.852 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"965.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6da8929b-10d2-41d5-a05d-5f50efc8dd04\"}\n"} -{"Time":"2022-12-07T09:15:31.859053+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.859071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.859079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.858 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.112042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"8e376a11-9fcf-43ef-b2c0-1e278edbdec2\"}\n"} -{"Time":"2022-12-07T09:15:31.859353+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.859365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.859372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.859 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"976.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b52a8f24-c84c-49f2-a3df-2ea36df8a294\"}\n"} -{"Time":"2022-12-07T09:15:31.869996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.870017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.870023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.869 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:31.870079+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.870095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.8701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.869 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:31.870661+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.870688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.870694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.869 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.8707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:31.870705+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.870708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.870738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.870 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:31.87075+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.870755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.870793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:31.870805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.008792ms\", \"status_code\": 200, \"latency_ms\": 11, \"request_id\": \"39a08fbf-47b2-466c-91b7-e465bfb96f61\"}\n"} -{"Time":"2022-12-07T09:15:31.870813+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.870816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.87082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"10.854459ms\", \"status_code\": 200, \"latency_ms\": 10, \"request_id\": \"1896953a-86dc-43eb-8de0-b0c7e99e5770\"}\n"} -{"Time":"2022-12-07T09:15:31.870825+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.870828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.870832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.870 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:31.870839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH2701562645/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.870878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"size_bytes\": 114, \"path\": \"/tmp/TestConfigSSH2701562645/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.870994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"size_bytes\": 76, \"path\": \"/tmp/TestConfigSSH2701562645/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:31.871009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"workspace_name\": \"optimistic-panini6\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:31.871125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.871 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:31.8712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.871 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"resource_count\": 1, \"resources\": [{\"name\": \"example\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"6ced57b7-a44f-42f1-ada3-7ef385529bc6\", \"name\": \"example\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.871547+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.871576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.871588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.871 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"30.667µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:31.871615+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.871624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.871628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.871 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.421458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"5b85ca78-e656-4330-a181-66342f689bab\"}\n"} -{"Time":"2022-12-07T09:15:31.871637+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.87164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.871646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.871 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"923.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0b0dcd8f-85c7-48fd-ab02-34097252fcb7\"}\n"} -{"Time":"2022-12-07T09:15:31.87213+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.872139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.872144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"881.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f86293a-7245-4d7f-a285-f763be161a1c\"}\n"} -{"Time":"2022-12-07T09:15:31.873774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.873786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.873791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.873 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:31.873897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.873 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} -{"Time":"2022-12-07T09:15:31.877021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.876 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"440.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9969c0f4-c138-48b3-80af-e66c97e029af\"}\n"} -{"Time":"2022-12-07T09:15:31.884032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.88406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.884066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.883 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.060333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f415f91b-a3cf-445b-a974-58dd1146b6ef\"}\n"} -{"Time":"2022-12-07T09:15:31.884194+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.884202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.884207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.884 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"812.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f07fc61c-c338-4006-9413-45fc85f26125\"}\n"} -{"Time":"2022-12-07T09:15:31.885501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.885511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.885517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.885 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"739.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"38827ad7-6a5b-475c-a1d1-1f692e999035\"}\n"} -{"Time":"2022-12-07T09:15:31.885524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.885527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.885531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.885 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"871.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae8b3f5a-b5cf-4ba8-a67b-d67eb75ce457\"}\n"} -{"Time":"2022-12-07T09:15:31.886509+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.886518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.886525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"650.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d1ba8cf-5a98-406c-9a41-31b22db59885\"}\n"} -{"Time":"2022-12-07T09:15:31.886533+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.886536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.88654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"632.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e326b13-f8ca-4553-a44e-7642927dee93\"}\n"} -{"Time":"2022-12-07T09:15:31.888372+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.888378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.888382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.888 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:31.88841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.888 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.88845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.888 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:31.888499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.888 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:31.898333+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.898353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.898381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.897 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.355459ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0505e6a5-7297-43bb-a07f-f67fa742156d\"}\n"} -{"Time":"2022-12-07T09:15:31.902614+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.902626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.902632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.902 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"713.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f801e4cb-aefc-43a0-a27e-876009eee1cf\"}\n"} -{"Time":"2022-12-07T09:15:31.902639+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.902643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.902646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.902 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.902652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.902 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.902712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.902 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.902726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.902 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.902806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.902 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.908689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.908 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"760.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a09c1fec-0b64-43ed-8873-6c5152d88e83\"}\n"} -{"Time":"2022-12-07T09:15:31.909529+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.909538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.909543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"694.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"363da7dd-3757-40b7-b88a-a0ad25931658\"}\n"} -{"Time":"2022-12-07T09:15:31.911409+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.911429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.911434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.910 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.032666ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"868c6126-9566-4059-b5ae-6a3581b08b00\"}\n"} -{"Time":"2022-12-07T09:15:31.911442+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.911445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.911453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.911 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.490041ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4041292f-3dd9-4326-8dce-5b4a19f353fb\"}\n"} -{"Time":"2022-12-07T09:15:31.913682+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.913722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.913747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.560958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"86ecf363-f63d-4836-876a-2b2f9e9f112f\"}\n"} -{"Time":"2022-12-07T09:15:31.91376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.913764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.913768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.054375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c75116dd-4aec-4c00-a8c6-63589f9852e7\"}\n"} -{"Time":"2022-12-07T09:15:31.92167+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.921689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.921696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.921 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:31.921702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.921 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.921708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.921 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:31.921714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.921 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:31.922011+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.922017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.922075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.921 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:31.922083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.921 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:31.92209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.922 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.923022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.92303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.923035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.922 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"795.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"081ad675-3b23-4436-bf74-7de9ef1734a6\"}\n"} -{"Time":"2022-12-07T09:15:31.924027+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.924034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.924043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.923 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:31.924069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.924107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.92415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.924195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.924229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:31.924275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:31.924448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} -{"Time":"2022-12-07T09:15:31.924498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.924 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:31.927995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.927 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.058166ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"69ecbc14-02fa-4e28-8eec-fdd44e11de8e\"}\n"} -{"Time":"2022-12-07T09:15:31.934013+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.934034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.93404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"818.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"05d3ad27-9fc2-43f4-a126-127216c9c7ce\"}\n"} -{"Time":"2022-12-07T09:15:31.934047+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.934051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.934126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"732.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3f33357-4ee0-4ec0-9c0e-e83990bd2f27\"}\n"} -{"Time":"2022-12-07T09:15:31.93551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.93552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.935525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.935 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"740.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f2f7c482-117d-4632-934e-075a2f7b461e\"}\n"} -{"Time":"2022-12-07T09:15:31.935532+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.935535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.935539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.935 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"750.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c26007db-2c79-4e24-b875-5c70dbcd6a9e\"}\n"} -{"Time":"2022-12-07T09:15:31.938667+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.938688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.938693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.432042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3a947d55-3e05-455b-84f3-e910ecd11717\"}\n"} -{"Time":"2022-12-07T09:15:31.9387+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.938704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.938709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.545792ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"5c0d8bbb-51b9-4a9d-9afe-14b9c8bd5e18\"}\n"} -{"Time":"2022-12-07T09:15:31.939039+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.939048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.939053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.938 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:31.93929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.939 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:31.939299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.939 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.948595+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.948658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.948667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.948 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"944.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fed6e19d-d745-4423-ab27-64ebbc07c263\"}\n"} -{"Time":"2022-12-07T09:15:31.952628+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.952668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.952682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.952 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"973.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8da18b32-732d-4d36-9725-b1351d8406f9\"}\n"} -{"Time":"2022-12-07T09:15:31.953053+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.953065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.953072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.952 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.95332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.953 [DEBUG]\t(provisionerd-elated_gauss4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.953398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.953 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"f0516114-8017-40b7-a9fc-f148d2e4d3bc\"}\n"} -{"Time":"2022-12-07T09:15:31.958915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.958 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/workspacebuilds/41e57f15-a46b-42bf-ab59-81db41ecdffa\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.105583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e9b348cf-c498-4317-a40c-0805b90f3ec2\"}\n"} -{"Time":"2022-12-07T09:15:31.97154+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.97156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.971566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.969 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.631333ms\", \"status_code\": 200, \"latency_ms\": 11, \"request_id\": \"c8609a28-e356-408c-95a6-10ab9014476a\"}\n"} -{"Time":"2022-12-07T09:15:31.972325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.972368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.972375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:31.972507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:31.972517+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.972521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.972526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.024417ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"35bb18df-3fc8-4b5c-8a9c-40566fbedb65\"}\n"} -{"Time":"2022-12-07T09:15:31.972534+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.972537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.972541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.972 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"resource_count\": 1, \"resources\": [{\"name\": \"example\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"4cecbeb6-417d-48af-bee4-721a681ef1c5\", \"name\": \"example\", \"Auth\": {\"Token\": \"6518c7b9-f2f7-4aa4-b8da-eb504ffb9753\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:31.972581+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.972585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.972589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.092ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"af6591c2-e2d5-41dc-a8c8-f4aa38568968\"}\n"} -{"Time":"2022-12-07T09:15:31.972603+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.972606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.972609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"927.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c186fd90-2eae-4636-bb33-b671345176ea\"}\n"} -{"Time":"2022-12-07T09:15:31.972647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:31.972736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.972744+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.972746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.972749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"998.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a2333544-acae-4318-88da-a8fbf6bdeae1\"}\n"} -{"Time":"2022-12-07T09:15:31.972757+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.972759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.972761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:31.972765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:31.972768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:31.973028+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.973034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.973036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.347333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"61a45284-73bf-4385-85cb-8c135f1b577f\"}\n"} -{"Time":"2022-12-07T09:15:31.974322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.974327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.97433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"25.333µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"a62d2a98-e2af-4438-adbf-2d6eba7c415b\"}\n"} -{"Time":"2022-12-07T09:15:31.974557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"909f7d1a-e829-4ebe-b3e0-2240dfc204fd\"}\n"} -{"Time":"2022-12-07T09:15:31.974627+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.974638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.974642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:31.97466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.974666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.974698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:31.974731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:31.974789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.974 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:31.975448+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual"} -{"Time":"2022-12-07T09:15:31.975454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":"=== CONT TestScheduleShow/Manual\n"} -{"Time":"2022-12-07T09:15:31.975457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.975 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56586\", \"path\": \"/api/v2/users/me/workspace/naughty-bardeen9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"653.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b5af342-8b02-4483-aac2-c66b9bbdd7d0\"}\n"} -{"Time":"2022-12-07T09:15:31.975891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" t.go:81: 2022-12-07 08:15:31.975 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:31.97697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:31.977011+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:31.977017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:31.977573+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:31.977583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:31.977587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:31.977 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"646.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"98b418f5-a5e1-4bea-8485-2f1b291818a5\"}\n"} -{"Time":"2022-12-07T09:15:31.981454+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:31.981464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:31.981468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:31.981 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"129.084µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1274faaf-b603-4097-9a04-efa4ad687fc8\"}\n"} -{"Time":"2022-12-07T09:15:31.98171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:31.981 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"44.291µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"fcfaef78-ba29-4e64-9313-7b67808907fa\"}\n"} -{"Time":"2022-12-07T09:15:31.982505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:31.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"565.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2f41ec35-98bf-44ef-823a-25dbb15ba850\"}\n"} -{"Time":"2022-12-07T09:15:31.983427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:31.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/organizations/8c874e05-3ba0-47f6-b7ca-c1da0740bdf1/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"703.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9b42043b-7207-4a1c-9cc1-c9ae1d4674e9\"}\n"} -{"Time":"2022-12-07T09:15:31.983534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" state_test.go:64: waiting for template version job e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\n"} -{"Time":"2022-12-07T09:15:31.984418+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.984427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.98443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.984 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"564.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a3ccdfa-2724-42bc-af9c-3cb2b3b090d4\"}\n"} -{"Time":"2022-12-07T09:15:31.98588+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:31.985889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:31.985892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:31.985 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"596.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5f2830e-b9e5-446c-ae3a-a40fec00aafc\"}\n"} -{"Time":"2022-12-07T09:15:31.985897+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:31.985898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:31.985901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:31.985 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"587µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"19e4ea14-48df-4062-8bca-97ff30c3b39c\"}\n"} -{"Time":"2022-12-07T09:15:31.986182+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:31.986192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:31.986196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:31.986 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"554.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8a51c1a7-d484-47fd-995f-c6c8c1f744c0\"}\n"} -{"Time":"2022-12-07T09:15:31.986229+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:31.986233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:31.986236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:31.986 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"552.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12f7c443-b6b5-49aa-b69f-fe74ef5d87d3\"}\n"} -{"Time":"2022-12-07T09:15:31.989809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:31.989816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:31.989819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.989 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:31.989824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.989 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:31.989855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.989 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:31.989882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.989 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:31.989964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:31.989 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:31.998318+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:31.998332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:31.998335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:31.998 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"634.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57d36dfa-1e7f-4965-9e7d-4140b679241b\"}\n"} -{"Time":"2022-12-07T09:15:32.004419+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.004435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.00444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.004 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"905.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c5e3e0f-c898-4ad0-a0ec-d1380e63991b\"}\n"} -{"Time":"2022-12-07T09:15:32.009245+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.009251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.009254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"530.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e21af17f-a56c-4b3d-bd32-123051e4b6e5\"}\n"} -{"Time":"2022-12-07T09:15:32.009258+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.00926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.009262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"498.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1dea9005-c9ff-4495-89c0-373ade2190c5\"}\n"} -{"Time":"2022-12-07T09:15:32.009953+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:32.009966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:32.009969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"422.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5d6b893f-1882-44af-a980-1e8b1fc0e310\"}\n"} -{"Time":"2022-12-07T09:15:32.009976+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.009978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.00998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"435.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7f07a953-1abc-41a1-8248-a162fa196730\"}\n"} -{"Time":"2022-12-07T09:15:32.010445+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.010451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.010454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"430.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dc09033b-dbcd-49bd-ba6e-4b205c9d4333\"}\n"} -{"Time":"2022-12-07T09:15:32.010622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.010629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.010634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0744064-750f-475e-bd62-932ffde6b99c\"}\n"} -{"Time":"2022-12-07T09:15:32.022968+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.022997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.023004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.022 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:32.02301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.022 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.023016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.022 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:32.023021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.022 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:32.023025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.022 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:32.023433+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:32.023439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:32.023443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.023 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:32.023448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.023 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.023452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.023 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:32.023457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.02346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.023463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.023 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.057333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c0fd4a4c-7dfb-4057-a414-7f032b243cbb\"}\n"} -{"Time":"2022-12-07T09:15:32.023469+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:32.023472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:32.023475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.023 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:32.02348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.023 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:32.025198+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.025212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.025218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.025 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:32.025225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.025 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:32.025356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.025 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:32.025364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.025 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"0355c0e2-5bbd-45e3-a793-a1c2efd4abf5\"}\n"} -{"Time":"2022-12-07T09:15:32.029709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.027 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/templateversions/211458ea-6383-4ab3-8d67-7d1013b623c9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.073125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c8378cce-744e-4e3d-b929-b585d04cdb05\"}\n"} -{"Time":"2022-12-07T09:15:32.029733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.028 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/organizations/1b8aafcf-a913-43d2-858c-2bd901595123/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"685.709µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7320ecc2-0a9a-45f9-96ee-bbf7df9cae98\"}\n"} -{"Time":"2022-12-07T09:15:32.031443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.031 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/organizations/1b8aafcf-a913-43d2-858c-2bd901595123/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.092958ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"76d942ed-c20d-41fd-83c8-98b6c119f07f\"}\n"} -{"Time":"2022-12-07T09:15:32.031731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" state_test.go:39: waiting for workspace build job 6994775d-2c2e-4015-b417-5c0729f84ee1\n"} -{"Time":"2022-12-07T09:15:32.03439+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.034402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.034408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.034 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"753µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"584d877d-848f-4547-8c79-29053a79061a\"}\n"} -{"Time":"2022-12-07T09:15:32.034415+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.034419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.034423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.034 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"46dcac07-6e65-4c54-b4ca-bde1496de59e\"}\n"} -{"Time":"2022-12-07T09:15:32.035862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:32.035875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:32.035881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"692.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b9c7a97-4a66-436e-9370-632966f5e5c4\"}\n"} -{"Time":"2022-12-07T09:15:32.035887+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.03589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.035894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"685.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f9750e32-4b82-4d82-9093-97085324d8f1\"}\n"} -{"Time":"2022-12-07T09:15:32.036238+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.036244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.036248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"617µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4ef20c89-7450-43a3-b8b8-346212c7cf80\"}\n"} -{"Time":"2022-12-07T09:15:32.036696+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.036702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.036724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"614.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2e8147f1-b05e-4ae1-a466-281ecaac995e\"}\n"} -{"Time":"2022-12-07T09:15:32.040619+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.040627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.040631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.040 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:32.040724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.040 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.040732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.040 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:32.040803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.040 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:32.040857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.040 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:32.047647+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.047676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.047681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.047 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"788.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"55484c0a-6fb6-4689-b110-f62c6ca2ee76\"}\n"} -{"Time":"2022-12-07T09:15:32.057918+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.057956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.057962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"782.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cf479e7f-0aff-4d21-9cdf-9d7f3c5d3550\"}\n"} -{"Time":"2022-12-07T09:15:32.05929+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.059303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.059308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.059 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"703.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b50d718a-429c-46a4-aef0-abe0334d677b\"}\n"} -{"Time":"2022-12-07T09:15:32.059363+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.059371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.059376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.059 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"609.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d4ae178b-529b-4455-8d16-df7b7996f470\"}\n"} -{"Time":"2022-12-07T09:15:32.060852+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:32.060869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:32.060875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.060 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"730.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dee2e9e7-84ce-459e-ac0d-cfbc432118a2\"}\n"} -{"Time":"2022-12-07T09:15:32.060882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.060885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.060889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.060 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"872.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e5446ba3-2bfb-4c6e-b781-08bfe759d8d8\"}\n"} -{"Time":"2022-12-07T09:15:32.06349+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.063535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.063543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"727.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"282013d7-b0f8-4e17-8e92-e850ae792aae\"}\n"} -{"Time":"2022-12-07T09:15:32.063552+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.063562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.063567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.063 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.075333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d27f8832-f818-4465-b4be-3e853f1d4368\"}\n"} -{"Time":"2022-12-07T09:15:32.072478+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.072502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.072509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.072 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"846.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7914efd6-bad2-4353-91b3-7434ee64ce19\"}\n"} -{"Time":"2022-12-07T09:15:32.073157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.073 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:32.073239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.073 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.07325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.073 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:32.073341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.073 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:32.073485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.073 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:32.073504+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:32.073509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:32.073514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.073 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:32.073646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.073 [DEBUG]\t(provisionerd-agitated_cartwright1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:32.073724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.073 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"a4b93126-dbc1-45e7-b308-b821012bbe9b\"}\n"} -{"Time":"2022-12-07T09:15:32.08014+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.080161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.080168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.080 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:32.084922+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.084943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.08495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"932µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"30facb65-a1a4-473e-8e63-097cf52a1d9d\"}\n"} -{"Time":"2022-12-07T09:15:32.084958+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.084962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.084967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.084 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"863.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58587fa0-04ba-419c-af63-3dfb4aec54aa\"}\n"} -{"Time":"2022-12-07T09:15:32.085861+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.085872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.085878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.085 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"935.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fdaaf19a-8107-41af-9453-c61e4e753a23\"}\n"} -{"Time":"2022-12-07T09:15:32.086299+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:32.086311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:32.086316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.086 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspacebuilds/c73b0cb3-9904-4ae8-972e-2567854483a7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"865.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c070501b-5b06-4e53-8157-2a9c7d1d414b\"}\n"} -{"Time":"2022-12-07T09:15:32.08891+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.088931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.088939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.087 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"774.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"faa46a19-d5f9-473b-a99c-f772fbc355ed\"}\n"} -{"Time":"2022-12-07T09:15:32.088959+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.088964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.08897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.087 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"873.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e49137e8-c8c8-4cc7-8d86-1176e4536258\"}\n"} -{"Time":"2022-12-07T09:15:32.08898+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.088985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.088991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.088 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"819.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fa018e24-9f95-441d-becb-9df69ddb7a5f\"}\n"} -{"Time":"2022-12-07T09:15:32.091635+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.091644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.091649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.091 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:32.091656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.091 [DEBUG]\t(provisionerd-cranky_gould2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:32.091661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.091 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"a9d45360-28cc-4f03-82a9-46d023bec221\"}\n"} -{"Time":"2022-12-07T09:15:32.100135+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:32.100155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:32.100162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"74.292µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"dafaca1b-44d1-4f40-9778-b771ccb6923d\"}\n"} -{"Time":"2022-12-07T09:15:32.100658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"60.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad36705b-4f68-482f-863c-65c236f74e7a\"}\n"} -{"Time":"2022-12-07T09:15:32.101553+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.101564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.101569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.101 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.47325ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2f073fa0-b8f0-4a29-9357-be2728ade693\"}\n"} -{"Time":"2022-12-07T09:15:32.101912+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRename"} -{"Time":"2022-12-07T09:15:32.101922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"=== CONT TestRename\n"} -{"Time":"2022-12-07T09:15:32.101928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.101 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/users/me/workspace/lucid-ishizaka7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"888.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"04af3d86-8125-4ce7-8d9d-3bb4612ce479\"}\n"} -{"Time":"2022-12-07T09:15:32.10221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" ptytest.go:103: 2022-12-07 08:15:32.102: cmd: stdout: \"WARNING: A rename can result in data loss if a resource references the workspace\"\n"} -{"Time":"2022-12-07T09:15:32.10223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" ptytest.go:103: 2022-12-07 08:15:32.102: cmd: stdout: \"name in the template (e.g volumes). \"\n"} -{"Time":"2022-12-07T09:15:32.102235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" ptytest.go:103: 2022-12-07 08:15:32.102: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:32.102286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" rename_test.go:42: 2022-12-07 08:15:32.102: cmd: matched \"confirm rename:\" = \"WARNING: A rename can result in data loss if a resource references the workspace\\r\\nname in the template (e.g volumes). \\r\\n\\r\\n\u003e Type \\\"lucid-ishizaka7\\\" to confirm rename:\"\n"} -{"Time":"2022-12-07T09:15:32.1023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" rename_test.go:43: 2022-12-07 08:15:32.102: cmd: stdin: \"lucid-ishizaka7\\r\"\n"} -{"Time":"2022-12-07T09:15:32.102357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" ptytest.go:103: 2022-12-07 08:15:32.102: cmd: stdout: \"\u003e Type \\\"lucid-ishizaka7\\\" to confirm rename: lucid-ishizaka7\"\n"} -{"Time":"2022-12-07T09:15:32.103292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.103 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspaces/1f808e4f-23ba-412b-a2c2-1e3b9503bd95\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"722.958µs\", \"status_code\": 204, \"latency_ms\": 0, \"request_id\": \"88a10ab9-40f6-474d-ad6e-366530a5c4db\"}\n"} -{"Time":"2022-12-07T09:15:32.103887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.103 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56556\", \"path\": \"/api/v2/workspaces/1f808e4f-23ba-412b-a2c2-1e3b9503bd95\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8108902a-001a-4bbc-bbd8-25b1ca3122b0\"}\n"} -{"Time":"2022-12-07T09:15:32.104059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" ptytest.go:80: 2022-12-07 08:15:32.104: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:32.104126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" t.go:81: 2022-12-07 08:15:32.104 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:32.104913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:32.104956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRename","Output":"--- PASS: TestRename (0.85s)\n"} -{"Time":"2022-12-07T09:15:32.104971+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRename","Elapsed":0.85} -{"Time":"2022-12-07T09:15:32.104979+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} -{"Time":"2022-12-07T09:15:32.104983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== CONT TestUserShow/Table\n"} -{"Time":"2022-12-07T09:15:32.108022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.107 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"128.959µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b1ed517b-64a7-45dd-a8b3-10f91acdaad8\"}\n"} -{"Time":"2022-12-07T09:15:32.108323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.108 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"55.334µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"239ef572-7350-4f41-a719-a51234611921\"}\n"} -{"Time":"2022-12-07T09:15:32.108458+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.108472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.108476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.108 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"557.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a327d812-5cdf-42e3-a6b0-cae5239c588a\"}\n"} -{"Time":"2022-12-07T09:15:32.109145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.109152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.109155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.109 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspacebuilds/26a0c3f6-81d4-4d15-8d12-6353d982cbbb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"465.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"23e3e2bb-86be-4023-b4cf-4c394d1ba4ff\"}\n"} -{"Time":"2022-12-07T09:15:32.109335+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} -{"Time":"2022-12-07T09:15:32.109341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== CONT TestUserShow/Table\n"} -{"Time":"2022-12-07T09:15:32.109343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.109 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"812.959µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"aa857c1f-db5c-4c1c-9271-43f5d6654573\"}\n"} -{"Time":"2022-12-07T09:15:32.109579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.109 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"51.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8fb189a1-fb05-4d39-9f56-5fba676d770d\"}\n"} -{"Time":"2022-12-07T09:15:32.109662+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.109669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.109671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.109 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"490.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6ca626cf-191d-4cc4-a2c7-264802d94a38\"}\n"} -{"Time":"2022-12-07T09:15:32.110085+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} -{"Time":"2022-12-07T09:15:32.110097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== CONT TestUserShow/Table\n"} -{"Time":"2022-12-07T09:15:32.110099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.110 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ec4522f-5dcf-4b4c-bb8f-1ce8f2e81560\"}\n"} -{"Time":"2022-12-07T09:15:32.110478+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.110502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.110505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.110 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"461.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"18fca101-7ca0-4b72-bddf-aff2138e7667\"}\n"} -{"Time":"2022-12-07T09:15:32.111001+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.111007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.11101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.110 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"469.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ab9590d5-4aa7-4406-a205-2c3cd532a111\"}\n"} -{"Time":"2022-12-07T09:15:32.111081+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.111085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.111087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"482.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"292d1a6f-9b8a-41dd-8b86-13a822f3b419\"}\n"} -{"Time":"2022-12-07T09:15:32.111744+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.111752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.11176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"a57ab38f-922a-4117-bf7b-6caa1c285561\"}\n"} -{"Time":"2022-12-07T09:15:32.111873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"26187a10-30de-4318-9975-438f611d8947\"}\n"} -{"Time":"2022-12-07T09:15:32.112486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/users/me/workspace/eloquent-greider4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"01838ce4-59ed-4b4f-adb9-c6a73a2b45bf\"}\n"} -{"Time":"2022-12-07T09:15:32.112562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} -{"Time":"2022-12-07T09:15:32.112568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== CONT TestUserShow/Table\n"} -{"Time":"2022-12-07T09:15:32.11257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"4c1b5ea8-a079-4a94-9b1f-1f8b381abfee\"}\n"} -{"Time":"2022-12-07T09:15:32.113047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"34e23d37-6f1b-44e9-b33b-28adc26bdd13\"}\n"} -{"Time":"2022-12-07T09:15:32.1138+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.113824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.113831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.113 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspaces/39727dcb-591f-422f-a193-053deb6717bb/autostart\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"767.375µs\", \"status_code\": 204, \"latency_ms\": 0, \"request_id\": \"ee2b1d80-9915-4760-8cdf-8cad4504b74d\"}\n"} -{"Time":"2022-12-07T09:15:32.114223+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} -{"Time":"2022-12-07T09:15:32.114262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== CONT TestUserShow/Table\n"} -{"Time":"2022-12-07T09:15:32.114268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/users/blissful-taussig1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"646.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"adf58397-bfdc-4490-b825-9c06f99db087\"}\n"} -{"Time":"2022-12-07T09:15:32.1147+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.114705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.114707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/users/me/workspace/eloquent-greider4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"564.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7c42905e-2d46-4a52-802e-30b84b8a55ac\"}\n"} -{"Time":"2022-12-07T09:15:32.114924+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} -{"Time":"2022-12-07T09:15:32.114927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== CONT TestUserShow/Table\n"} -{"Time":"2022-12-07T09:15:32.11493+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" t.go:81: 2022-12-07 08:15:32.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56672\", \"path\": \"/api/v2/organizations/0e41ecd6-a9ae-4b89-b73d-4784b4ad41b6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"514.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2366bf8a-67e6-468d-82aa-c76f18e75a3f\"}\n"} -{"Time":"2022-12-07T09:15:32.115369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \"ID: 8c78f926-75ba-46da-93dc-2ee5b36d1b80 \"\n"} -{"Time":"2022-12-07T09:15:32.115375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \"Username: blissful-taussig1 \"\n"} -{"Time":"2022-12-07T09:15:32.115377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \"Email: quirky_borg9@coder.com \"\n"} -{"Time":"2022-12-07T09:15:32.115379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \"Status: active \"\n"} -{"Time":"2022-12-07T09:15:32.115383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \"Created At: Dec 7 08:15:32 \"\n"} -{"Time":"2022-12-07T09:15:32.115385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:32.115387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \"Roles: (none) \"\n"} -{"Time":"2022-12-07T09:15:32.115389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:32.115393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:103: 2022-12-07 08:15:32.115: cmd: stdout: \"Organizations: testuser \"\n"} -{"Time":"2022-12-07T09:15:32.115395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" userlist_test.go:107: 2022-12-07 08:15:32.115: cmd: matched \"quirky_borg9@coder.com\" = \"ID: 8c78f926-75ba-46da-93dc-2ee5b36d1b80 \\r\\nUsername: blissful-taussig1 \\r\\nEmail: quirky_borg9@coder.com\"\n"} -{"Time":"2022-12-07T09:15:32.1154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" ptytest.go:80: 2022-12-07 08:15:32.115: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:32.116107+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.116113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.116115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.116 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspaces/39727dcb-591f-422f-a193-053deb6717bb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.002208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b28975a0-6ab3-40b0-85a2-4b6e1b403059\"}\n"} -{"Time":"2022-12-07T09:15:32.1164+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table"} -{"Time":"2022-12-07T09:15:32.116406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":"=== CONT TestUserShow/Table\n"} -{"Time":"2022-12-07T09:15:32.116408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:32.116428+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} -{"Time":"2022-12-07T09:15:32.116435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== CONT TestUserShow/JSON\n"} -{"Time":"2022-12-07T09:15:32.118957+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.118962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.118964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.118 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bef5d382-7ffa-4978-84fa-bac3b64b2728\"}\n"} -{"Time":"2022-12-07T09:15:32.118968+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} -{"Time":"2022-12-07T09:15:32.118969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== CONT TestUserShow/JSON\n"} -{"Time":"2022-12-07T09:15:32.118971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.118 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"106.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d63f4ff2-2024-48d7-a475-20b3953cba05\"}\n"} -{"Time":"2022-12-07T09:15:32.118975+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.118977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.118979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.118 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"35.209µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"b9f84f10-ed69-46f7-a7c6-8f5932e97074\"}\n"} -{"Time":"2022-12-07T09:15:32.119151+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} -{"Time":"2022-12-07T09:15:32.119159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== CONT TestUserShow/JSON\n"} -{"Time":"2022-12-07T09:15:32.119164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.119 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"36.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bfc9f065-efa3-4de4-add4-f7e3d750ed1d\"}\n"} -{"Time":"2022-12-07T09:15:32.119693+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.119706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.119709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.119 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/users/me/workspace/eloquent-greider4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"526.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7faa096-19bc-40f5-9c73-d5c50afd3ffc\"}\n"} -{"Time":"2022-12-07T09:15:32.120112+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} -{"Time":"2022-12-07T09:15:32.12012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== CONT TestUserShow/JSON\n"} -{"Time":"2022-12-07T09:15:32.120124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"799.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a49f1390-5474-402a-86d6-27b4ea9eae2b\"}\n"} -{"Time":"2022-12-07T09:15:32.120231+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.12024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.120243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/workspaces/39727dcb-591f-422f-a193-053deb6717bb/autostart\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"300.375µs\", \"status_code\": 204, \"latency_ms\": 0, \"request_id\": \"56b92db0-47e3-4151-99f6-84a1fa3a9807\"}\n"} -{"Time":"2022-12-07T09:15:32.120324+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} -{"Time":"2022-12-07T09:15:32.120331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== CONT TestUserShow/JSON\n"} -{"Time":"2022-12-07T09:15:32.120333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"44.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7f46075f-5c0d-44b3-8f97-6b537a955f32\"}\n"} -{"Time":"2022-12-07T09:15:32.12072+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.120726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.120728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56557\", \"path\": \"/api/v2/users/me/workspace/eloquent-greider4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d5aab4be-b57a-44b1-b7a5-fd54233e5c7c\"}\n"} -{"Time":"2022-12-07T09:15:32.120762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} -{"Time":"2022-12-07T09:15:32.120771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== CONT TestUserShow/JSON\n"} -{"Time":"2022-12-07T09:15:32.120774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"270.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"890d94d3-ea89-4b96-97e9-adde1b6113cd\"}\n"} -{"Time":"2022-12-07T09:15:32.120977+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart"} -{"Time":"2022-12-07T09:15:32.120981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"=== CONT TestScheduleStart\n"} -{"Time":"2022-12-07T09:15:32.120983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" t.go:81: 2022-12-07 08:15:32.120 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:32.121718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:32.122116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Output":"--- PASS: TestScheduleStart (0.87s)\n"} -{"Time":"2022-12-07T09:15:32.122124+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleStart","Elapsed":0.87} -{"Time":"2022-12-07T09:15:32.122129+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces"} -{"Time":"2022-12-07T09:15:32.122131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces","Output":"=== CONT Test_sshConfigExecEscape/no_spaces\n"} -{"Time":"2022-12-07T09:15:32.122133+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.122134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.122137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.121 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"411.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e705452e-fa83-4258-9933-95f8d00ed630\"}\n"} -{"Time":"2022-12-07T09:15:32.124632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.124 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:32.12471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.124 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"e074c4e5-cef3-4189-9066-7da13fd84aee\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:32.124764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.124 [DEBUG]\t(provisionerd-admiring_colden8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:32.124805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.124 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8953696e-d326-472e-b9ec-7a8c0c235520\"}\n"} -{"Time":"2022-12-07T09:15:32.125378+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON"} -{"Time":"2022-12-07T09:15:32.125386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":"=== CONT TestUserShow/JSON\n"} -{"Time":"2022-12-07T09:15:32.125388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.125 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"59.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"81e22cc6-af6b-41b0-87b7-8a33b2935514\"}\n"} -{"Time":"2022-12-07T09:15:32.125394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.125 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"70.125µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"8228baa3-3909-4973-92be-30e69757981f\"}\n"} -{"Time":"2022-12-07T09:15:32.126151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" t.go:81: 2022-12-07 08:15:32.126 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56690\", \"path\": \"/api/v2/users/ecstatic-ellis5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"528.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16439587-551f-425d-a000-02a1c33470d9\"}\n"} -{"Time":"2022-12-07T09:15:32.126821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:32.126872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow","Output":"--- PASS: TestUserShow (0.00s)\n"} -{"Time":"2022-12-07T09:15:32.126881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Output":" --- PASS: TestUserShow/Table (0.01s)\n"} -{"Time":"2022-12-07T09:15:32.126883+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserShow/Table","Elapsed":0.01} -{"Time":"2022-12-07T09:15:32.126887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Output":" --- PASS: TestUserShow/JSON (0.01s)\n"} -{"Time":"2022-12-07T09:15:32.126889+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserShow/JSON","Elapsed":0.01} -{"Time":"2022-12-07T09:15:32.126891+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserShow","Elapsed":0} -{"Time":"2022-12-07T09:15:32.126893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.126895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.131051+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.131062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.131065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.130 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.131272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.131 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.131392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.131 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:32.131403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePullStdout1277238284/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.131484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullStdout1277238284/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.131491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullStdout1277238284/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.131496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.131607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.131 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:32.131889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.131894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.131896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.131 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"145.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3d9830a4-f375-41dc-8c0e-b0b5299df5c1\"}\n"} -{"Time":"2022-12-07T09:15:32.132199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.132 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"67.584µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5868257c-6032-429b-805b-c191f6cc201f\"}\n"} -{"Time":"2022-12-07T09:15:32.132975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.132 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"512.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9ef3f7c9-b7f5-4e32-95ac-aeae07f4140d\"}\n"} -{"Time":"2022-12-07T09:15:32.13377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.133 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/organizations/2d62e2c5-c8aa-4495-906d-e4a682bc9913/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"597.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a843d32a-a861-47e1-ba61-a34e8db6aa61\"}\n"} -{"Time":"2022-12-07T09:15:32.133872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" state_test.go:88: waiting for template version job 83a463b7-3d5b-473e-946b-43a803f1841b\n"} -{"Time":"2022-12-07T09:15:32.136483+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.136505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.136508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"523.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4b992abe-56b7-4eb9-bc67-232ace90f222\"}\n"} -{"Time":"2022-12-07T09:15:32.136516+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.136518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.136535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9cd38e00-d1da-4ff9-9c81-033eeaea261a\"}\n"} -{"Time":"2022-12-07T09:15:32.136542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.136546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.136549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"518.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24d42398-acdb-49db-b73e-fd0035d1bad5\"}\n"} -{"Time":"2022-12-07T09:15:32.136554+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.136559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.136573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"529.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"43b25443-cf3c-4b63-bded-df1646e99244\"}\n"} -{"Time":"2022-12-07T09:15:32.136579+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.136581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.136583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"551.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"29bfdcf1-36f6-4c2c-aef7-7015e88a6402\"}\n"} -{"Time":"2022-12-07T09:15:32.148502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.148508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.14851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.148 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspacebuilds/e074c4e5-cef3-4189-9066-7da13fd84aee\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"486.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"684596f1-ec9f-4a92-bbee-7b69d27945c5\"}\n"} -{"Time":"2022-12-07T09:15:32.148638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.148 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:446\u003e\t(*agent).init\tgenerating host key\n"} -{"Time":"2022-12-07T09:15:32.154406+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.154416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.15442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.154507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.154574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:32.154618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"size_bytes\": 2, \"path\": \"/tmp/TestSpeedtest1248491661/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.154664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"size_bytes\": 112, \"path\": \"/tmp/TestSpeedtest1248491661/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.154695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"size_bytes\": 2, \"path\": \"/tmp/TestSpeedtest1248491661/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.154713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"workspace_name\": \"cool-pike0\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:32.154839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.154872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.154 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.157715+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.157722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.157725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.157 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"396b2419-341a-4c7f-adb3-48277417ebfd\"}\n"} -{"Time":"2022-12-07T09:15:32.159266+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.159275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.159278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6274b58c-4bc2-4456-a462-290934bcf824\"}\n"} -{"Time":"2022-12-07T09:15:32.159448+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.159457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.15946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd5826fe-659e-4a27-93c7-6fc92bde254d\"}\n"} -{"Time":"2022-12-07T09:15:32.159988+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.159993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.159995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"409.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ffa3a88-166a-44c2-a1f1-5a39ad36c9a3\"}\n"} -{"Time":"2022-12-07T09:15:32.160361+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.160365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.160368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.160 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"372.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"73554164-2ef2-4a28-818f-837ecdcc8662\"}\n"} -{"Time":"2022-12-07T09:15:32.160523+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.160532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.160534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.160 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"357µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"36f5afc1-311b-499e-aa61-482586b80794\"}\n"} -{"Time":"2022-12-07T09:15:32.16967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.169752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.169803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:32.169847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowEnabled3677771965/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.169867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowEnabled3677771965/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.16989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleShowEnabled3677771965/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.16991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"workspace_name\": \"xenodochial-fermat6\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:32.170003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.170044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.169 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.178442+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.178447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.17845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.178 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"14.375µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:32.181992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.181 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.182101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.182 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} -{"Time":"2022-12-07T09:15:32.182451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.182455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.182457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.182 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"032d091b-80a5-4fd8-8c81-e380543e82b3\"}\n"} -{"Time":"2022-12-07T09:15:32.18414+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.184145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.184147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"304.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f946ef28-f3ea-4544-8d39-42613c93e44e\"}\n"} -{"Time":"2022-12-07T09:15:32.184382+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.184387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.18439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"288.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0e74f55-509a-4294-ba38-93f4426fb7f9\"}\n"} -{"Time":"2022-12-07T09:15:32.184949+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.184955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.184957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62ac9422-e626-440b-8bef-d56d8c8b61ea\"}\n"} -{"Time":"2022-12-07T09:15:32.185331+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.185338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.185341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"327.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96686875-14ac-48e7-96ee-94498a418636\"}\n"} -{"Time":"2022-12-07T09:15:32.185528+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.185532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.185535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"393.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33224291-deb1-423c-a01d-8c55a0a23012\"}\n"} -{"Time":"2022-12-07T09:15:32.185683+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError"} -{"Time":"2022-12-07T09:15:32.185688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError","Output":"=== CONT TestRoot/FormatCobraError\n"} -{"Time":"2022-12-07T09:15:32.18569+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK"} -{"Time":"2022-12-07T09:15:32.185692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK","Output":"=== RUN TestRoot/FormatCobraError/OK\n"} -{"Time":"2022-12-07T09:15:32.185695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK","Output":"=== PAUSE TestRoot/FormatCobraError/OK\n"} -{"Time":"2022-12-07T09:15:32.185697+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK"} -{"Time":"2022-12-07T09:15:32.185699+01:00","Action":"run","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose"} -{"Time":"2022-12-07T09:15:32.1857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose","Output":"=== RUN TestRoot/FormatCobraError/Verbose\n"} -{"Time":"2022-12-07T09:15:32.185702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose","Output":"=== PAUSE TestRoot/FormatCobraError/Verbose\n"} -{"Time":"2022-12-07T09:15:32.185704+01:00","Action":"pause","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose"} -{"Time":"2022-12-07T09:15:32.185706+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails"} -{"Time":"2022-12-07T09:15:32.185707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails","Output":"=== CONT Test_sshConfigExecEscape/newline_fails\n"} -{"Time":"2022-12-07T09:15:32.186415+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs"} -{"Time":"2022-12-07T09:15:32.186419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs","Output":"=== CONT Test_sshConfigExecEscape/tabs\n"} -{"Time":"2022-12-07T09:15:32.206442+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.206463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.206466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.206 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.20647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.206 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.206475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.206 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.206518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.206 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.207587+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.20759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.207592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"411.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"985db409-9525-4419-8dea-53c5ddb784e5\"}\n"} -{"Time":"2022-12-07T09:15:32.209212+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.20922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.209223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad42adf3-604e-41da-a1d5-20bf3340a065\"}\n"} -{"Time":"2022-12-07T09:15:32.20947+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.209478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.209481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"323.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"edc84a5f-9a32-4065-8ac3-3ee0e8fc61da\"}\n"} -{"Time":"2022-12-07T09:15:32.21+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.210006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.210008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"294.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1f2734d-164c-4f62-bf84-cf45193dfcbc\"}\n"} -{"Time":"2022-12-07T09:15:32.210431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.210437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.210441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96c279ae-f15b-4a80-952d-5eaa2f17f341\"}\n"} -{"Time":"2022-12-07T09:15:32.210476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.210478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.21048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"355.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bffd2231-a7f7-4e91-a985-0de2ad8c9f77\"}\n"} -{"Time":"2022-12-07T09:15:32.221186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.221 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.221191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.221 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.221193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.221 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.221196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.221 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.231956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.231961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.231963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.231 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:32.232107+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.232116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.232119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.232122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.23214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.232151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.23217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.232194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.23223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.232874+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.232899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.232905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"727.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c0862b0-119e-46b9-ac2f-1488d91ef98a\"}\n"} -{"Time":"2022-12-07T09:15:32.232924+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.232928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.232933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} -{"Time":"2022-12-07T09:15:32.232942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.232 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.235518+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.235532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.235542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"766.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ab6f46c6-87db-4e10-9c6e-6b7d261e90b3\"}\n"} -{"Time":"2022-12-07T09:15:32.235545+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.235547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.235548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"726.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd31a468-b4d2-42c2-b7b9-e17901a67782\"}\n"} -{"Time":"2022-12-07T09:15:32.235552+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.235554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.235555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8e8b6eaa-1024-45aa-8f12-2aa7f11c0f9a\"}\n"} -{"Time":"2022-12-07T09:15:32.235715+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.235726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.235729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"435.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e781feb-feb9-4c0d-9384-f167fd65b665\"}\n"} -{"Time":"2022-12-07T09:15:32.235944+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.23595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.235952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9973f4f1-b3ed-4f1d-aa99-5b8d87211b76\"}\n"} -{"Time":"2022-12-07T09:15:32.240421+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes"} -{"Time":"2022-12-07T09:15:32.240431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes","Output":"=== CONT Test_sshConfigExecEscape/backslashes\n"} -{"Time":"2022-12-07T09:15:32.264524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.264541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.264545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" configssh_test.go:116: waiting for workspace agents (workspace 1e701e9d-7889-4738-bdd1-ce6caf03218b)\n"} -{"Time":"2022-12-07T09:15:32.264549+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.26455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.264552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.259 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.264555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.260 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.264557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.260 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"resource_count\": 1, \"resources\": [{\"name\": \"dev\", \"type\": \"google_compute_instance\", \"agents\": [{\"id\": \"bec8aa49-c381-49de-86cd-445a2234c30b\", \"Auth\": {\"Token\": \"f900032b-8d13-43a0-977d-7d3009a614fb\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.266076+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.266088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.266092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.264 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"436.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dd6796b0-bdeb-4f0c-83c5-0c0d4b91c5bb\"}\n"} -{"Time":"2022-12-07T09:15:32.266096+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.266098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.266099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.265 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"af6fdad5-a2d1-4cc9-905d-00bab6512509\"}\n"} -{"Time":"2022-12-07T09:15:32.266102+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.266103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.26611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.265 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.244084ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"6f9ea24e-f87e-4106-b033-469c0090aa28\"}\n"} -{"Time":"2022-12-07T09:15:32.266112+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.266114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.266115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.265 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9bb6e25e-135e-44d1-91ef-e85d5f9813a6\"}\n"} -{"Time":"2022-12-07T09:15:32.266117+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.266118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.266119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.266 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d306a436-f8ec-4d36-82e9-c51c51c5a7f1\"}\n"} -{"Time":"2022-12-07T09:15:32.267771+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.267779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.267781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0af4c10d-7f1e-45c0-8149-80a38a4b0e60\"}\n"} -{"Time":"2022-12-07T09:15:32.272454+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.272465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.272468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.271 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.272471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.272 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.272473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.272 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.282336+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.282383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.28239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.282399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.282458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:32.282642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.282651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.282657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.282662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.282718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.282 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:32.283411+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.283436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.283444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.283 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"486.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"017bdc77-7d26-4d66-9e65-1c9ff01e2231\"}\n"} -{"Time":"2022-12-07T09:15:32.283757+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.283768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.28377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.283 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.283773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.283 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.283779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.283 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.283781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.283 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.283783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.283 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.283785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.283 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.28422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.284 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"335.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fa05dbb7-d0df-419a-9220-156d47a58f80\"}\n"} -{"Time":"2022-12-07T09:15:32.284702+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.284719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.284728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.284 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"327.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8daf02ea-a45f-4ece-845b-0567e1e1b40b\"}\n"} -{"Time":"2022-12-07T09:15:32.285614+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.285635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.285641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"471.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a5d4fb0b-2a07-4904-a50c-9f602349e275\"}\n"} -{"Time":"2022-12-07T09:15:32.285648+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.285651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.285655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"506.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53ab4018-4e88-48c6-bcf5-2542dc0d3eea\"}\n"} -{"Time":"2022-12-07T09:15:32.285672+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.285684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.285701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a44847e-b819-46a3-b056-0bafd6d7ad22\"}\n"} -{"Time":"2022-12-07T09:15:32.285747+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.285758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.285762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"567.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5f74850-4fe3-4e87-8bbe-8d5e1e4f0c0d\"}\n"} -{"Time":"2022-12-07T09:15:32.285768+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.285769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.285771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} -{"Time":"2022-12-07T09:15:32.307472+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes"} -{"Time":"2022-12-07T09:15:32.307487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes","Output":"=== CONT Test_sshConfigExecEscape/quotes\n"} -{"Time":"2022-12-07T09:15:32.307512+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.307515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.307538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.307 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"68603cdf-bd32-461b-97de-9196aaf39681\"}\n"} -{"Time":"2022-12-07T09:15:32.310253+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.310263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.310266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"485.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e36372ac-53a3-4dc6-be5a-99eb13f0779b\"}\n"} -{"Time":"2022-12-07T09:15:32.310269+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.310271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.310273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"406.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9055cd4e-4fd4-4184-931c-6a4f6e816fe8\"}\n"} -{"Time":"2022-12-07T09:15:32.310275+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.310276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.310278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"478.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"66135300-19cb-4e94-af87-fd35e6c38ccf\"}\n"} -{"Time":"2022-12-07T09:15:32.310282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.310289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.310291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"499.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a9e399a9-0071-4986-bf60-898b89b4b85b\"}\n"} -{"Time":"2022-12-07T09:15:32.31041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} -{"Time":"2022-12-07T09:15:32.310472+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.310477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.310479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd9fa1fa-6a1a-470d-b448-6603d8986f53\"}\n"} -{"Time":"2022-12-07T09:15:32.310483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.310511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.310515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.310553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.31059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.310792+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.310797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.3108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db49dc0d-35d8-4c17-87c3-a0f8485e49c3\"}\n"} -{"Time":"2022-12-07T09:15:32.322825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.322 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.322844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.322 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.322852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.322 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.322874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.322 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.322932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.322 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.328671+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.32868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.328682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.328 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"10.708µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:32.332801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.332 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.332855+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.332858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.33286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.332 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"78549fdb-6798-44a7-bcc1-7aef71fe295a\"}\n"} -{"Time":"2022-12-07T09:15:32.332955+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.332962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.332964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.332 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.333806+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.333816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.33382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.333 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.333832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.333 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.333839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.333 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.333875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.333 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"499e320c-6ae0-454e-b2d6-17c224a3cd1f\"}\n"} -{"Time":"2022-12-07T09:15:32.334218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/templateversions/e3e3f6bd-64b7-46e3-ae2d-cbca51af3892\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fc890f63-f767-4108-84ff-814836e38d2c\"}\n"} -{"Time":"2022-12-07T09:15:32.334372+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.334376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.334378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12946aee-0fb0-4ad4-8a69-9d791ddfd415\"}\n"} -{"Time":"2022-12-07T09:15:32.334785+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.33479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.334793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/organizations/8c874e05-3ba0-47f6-b7ca-c1da0740bdf1/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"28be9976-f60d-4dd2-a6c5-2c9d1b9daaee\"}\n"} -{"Time":"2022-12-07T09:15:32.334873+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.33488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.334882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd4f0d29-d13c-4809-8e63-1c5f5051d32d\"}\n"} -{"Time":"2022-12-07T09:15:32.33493+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.334935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.334938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"95f27d02-7593-4c02-b58c-fd22655796cf\"}\n"} -{"Time":"2022-12-07T09:15:32.335085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} -{"Time":"2022-12-07T09:15:32.335335+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.335342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.335344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"332.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"696dc43b-026e-4cb5-a6d2-3967121ba992\"}\n"} -{"Time":"2022-12-07T09:15:32.335466+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.335471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.335474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"338.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d4c5fdb4-57ce-4b97-8467-ecf179f92f1f\"}\n"} -{"Time":"2022-12-07T09:15:32.335759+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.335765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.335768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/organizations/8c874e05-3ba0-47f6-b7ca-c1da0740bdf1/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"719.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cf5e2a14-31a0-4221-9abb-240bb8feeb22\"}\n"} -{"Time":"2022-12-07T09:15:32.335859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" state_test.go:67: waiting for workspace build job 83d31ca2-38b6-4423-8af7-65c27fd3db93\n"} -{"Time":"2022-12-07T09:15:32.357479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.357494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.357497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.357 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"41686fd7-6ba6-4033-a937-c86f8a418f51\"}\n"} -{"Time":"2022-12-07T09:15:32.359625+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.359634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.359637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.359 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"000fc0b1-2899-4ce9-a1e2-a0badccde320\"}\n"} -{"Time":"2022-12-07T09:15:32.359916+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.35992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.359922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.359 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"25db42e5-5439-48e6-8f1b-a7808b355660\"}\n"} -{"Time":"2022-12-07T09:15:32.359926+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.359928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.359929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.359 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ad1a71b-ed36-4263-8ed0-bb8cdd26ebe6\"}\n"} -{"Time":"2022-12-07T09:15:32.360058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} -{"Time":"2022-12-07T09:15:32.361489+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.361504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.361507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.121ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"cd990cee-5ff0-42e5-a912-46228b1bf0f7\"}\n"} -{"Time":"2022-12-07T09:15:32.36151+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.361512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.361521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.229458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f01f0162-37f3-4e8b-8a9d-5eb429d0cba4\"}\n"} -{"Time":"2022-12-07T09:15:32.361523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.361525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.361528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.361529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.361533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.361925+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.361933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.361935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"615.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"93fda724-c11f-4493-99ab-f9374a793aff\"}\n"} -{"Time":"2022-12-07T09:15:32.374264+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.374284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.374288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.374 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.374293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.374 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.374295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.374 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.374301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.374 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.374418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.374 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.383009+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.38303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.383034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.382 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.383037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.382 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.383041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.383044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.383073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.383087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.383105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.38326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.383302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.383551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.383556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.383559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.383 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"530.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"55ee34fb-a36a-4b4d-931c-c813eb9c234b\"}\n"} -{"Time":"2022-12-07T09:15:32.384385+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.384388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.384389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.384 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"856f675e-1da7-4cfc-96ef-7d9f51a35a4a\"}\n"} -{"Time":"2022-12-07T09:15:32.384852+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.384858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.384863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.384 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7981886-0e62-4a39-ab45-0e2c4fc4aa8c\"}\n"} -{"Time":"2022-12-07T09:15:32.384919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.384922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.384925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.384 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6c2be084-3ca7-4fa4-aad5-c2ca6ab44e36\"}\n"} -{"Time":"2022-12-07T09:15:32.384972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} -{"Time":"2022-12-07T09:15:32.385273+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.385276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.385278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.385 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"338.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a45ef4a3-125f-4e9d-8beb-eaecdb4022fd\"}\n"} -{"Time":"2022-12-07T09:15:32.385394+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.385399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.385401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.385 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"308.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f6c26676-29b2-43ae-964c-ba1c00fca312\"}\n"} -{"Time":"2022-12-07T09:15:32.386405+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.386411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.386413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0dcab739-2655-4372-9fd1-27aeae77c6cb\"}\n"} -{"Time":"2022-12-07T09:15:32.407452+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.407468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.407471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.407 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"350.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c80a3fa-efd4-4030-b8ea-929339a64d8b\"}\n"} -{"Time":"2022-12-07T09:15:32.408201+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces"} -{"Time":"2022-12-07T09:15:32.408211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces","Output":"=== CONT Test_sshConfigExecEscape/spaces\n"} -{"Time":"2022-12-07T09:15:32.410748+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.410756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.41076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"896.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e0606a91-70e4-42a6-b0ac-27b79b70324b\"}\n"} -{"Time":"2022-12-07T09:15:32.410923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.410926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.410929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"934.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a21224d8-0886-4f7e-b9bc-8d00acfdfd66\"}\n"} -{"Time":"2022-12-07T09:15:32.411033+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.411055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.411063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"884.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c95462a8-b6e4-431c-bfc7-80982683936c\"}\n"} -{"Time":"2022-12-07T09:15:32.411586+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.411594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.411596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} -{"Time":"2022-12-07T09:15:32.412116+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.412124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.412127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.616958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"355b99b5-c73a-4d25-94b5-353938644782\"}\n"} -{"Time":"2022-12-07T09:15:32.412131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.412134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.412136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.412 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.41214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.430667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"410a1a46-6f58-48cd-91f4-19dc72eb6537\"}\n"} -{"Time":"2022-12-07T09:15:32.412169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.412 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:32.412236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.412 [DEBUG]\t(provisionerd-gallant_meninsky5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.412245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.412 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"ed7b8e26-09c5-406f-9b74-3e03e1d74937\"}\n"} -{"Time":"2022-12-07T09:15:32.412561+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.41257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.412573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"446.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1a163ec2-8a0e-420b-a85e-2facef65598c\"}\n"} -{"Time":"2022-12-07T09:15:32.425049+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.425068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.425071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.424 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.425076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.425 [DEBUG]\t(provisionerd-romantic_mendel0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.425104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.425 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"c76d7f34-bdeb-4b09-ab70-3e5ccb919601\"}\n"} -{"Time":"2022-12-07T09:15:32.433321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.433327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.433331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.433 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"481.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"271a2d9b-e904-4c15-8ff6-a8af57d10445\"}\n"} -{"Time":"2022-12-07T09:15:32.433471+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.433476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.433479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.433 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.433495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.433 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.43352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.433 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.433549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.433 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.433572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.433 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.433627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.433 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.434572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.434 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"478.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b8bba761-d8d4-490e-914e-7a9bb42cc5fa\"}\n"} -{"Time":"2022-12-07T09:15:32.435052+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.43506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.435063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.434 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"463.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9f4e5d8f-4bba-4e31-8325-260c4dfabbdc\"}\n"} -{"Time":"2022-12-07T09:15:32.435162+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.435168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.435172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"566.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"38a52e99-5094-4bc4-8210-74b8074e0a1e\"}\n"} -{"Time":"2022-12-07T09:15:32.435286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} -{"Time":"2022-12-07T09:15:32.435492+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.435506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.435512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspacebuilds/fc55599b-cbee-4e49-a39a-a09ff3bab930\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"510.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2fb78a1a-190b-4b83-82d3-41a8b3d45a32\"}\n"} -{"Time":"2022-12-07T09:15:32.43563+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.435635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.435638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/workspacebuilds/2df72dfe-ca58-4072-80d5-620c94d61d27\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"459.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1114634d-0510-4435-8c39-e62a7994c1f4\"}\n"} -{"Time":"2022-12-07T09:15:32.435663+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.435667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.435671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.435 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:446\u003e\t(*agent).init\tgenerating host key\n"} -{"Time":"2022-12-07T09:15:32.436454+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.43646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.436462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.436 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"435.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2760b61d-2d61-46b6-a279-c9538260c6b8\"}\n"} -{"Time":"2022-12-07T09:15:32.438823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled"} -{"Time":"2022-12-07T09:15:32.438829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":"=== CONT TestScheduleShow/Enabled\n"} -{"Time":"2022-12-07T09:15:32.438832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.417µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"82964ad6-e8d5-4495-9e82-e0a66efced86\"}\n"} -{"Time":"2022-12-07T09:15:32.439084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.439 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b8186eab-b096-4747-b52c-c92488537a84\"}\n"} -{"Time":"2022-12-07T09:15:32.439819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.439 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56575\", \"path\": \"/api/v2/users/me/workspace/xenodochial-fermat6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"448dd081-c47d-4e5c-a1ab-e07c416efcb8\"}\n"} -{"Time":"2022-12-07T09:15:32.440243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" t.go:81: 2022-12-07 08:15:32.440 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:32.441167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:32.441217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow","Output":"--- PASS: TestScheduleShow (0.00s)\n"} -{"Time":"2022-12-07T09:15:32.441228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Output":" --- PASS: TestScheduleShow/NotFound (0.37s)\n"} -{"Time":"2022-12-07T09:15:32.441232+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/NotFound","Elapsed":0.37} -{"Time":"2022-12-07T09:15:32.441237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Output":" --- PASS: TestScheduleShow/Manual (0.70s)\n"} -{"Time":"2022-12-07T09:15:32.44124+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Manual","Elapsed":0.7} -{"Time":"2022-12-07T09:15:32.441243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Output":" --- PASS: TestScheduleShow/Enabled (1.18s)\n"} -{"Time":"2022-12-07T09:15:32.441245+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow/Enabled","Elapsed":1.18} -{"Time":"2022-12-07T09:15:32.441248+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleShow","Elapsed":0} -{"Time":"2022-12-07T09:15:32.44125+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} -{"Time":"2022-12-07T09:15:32.441252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} -{"Time":"2022-12-07T09:15:32.447694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.447 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"145.166µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"84e6daad-6746-44a1-adbc-3737efca6047\"}\n"} -{"Time":"2022-12-07T09:15:32.447956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.447 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"46.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"fc3299a3-fb69-4006-9b01-48b31b525acd\"}\n"} -{"Time":"2022-12-07T09:15:32.451049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.450 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.917µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"77b57328-775c-443f-a7d1-11fcd301d642\"}\n"} -{"Time":"2022-12-07T09:15:32.451258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.451 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1d66b71a-1c19-4612-82ea-0a7080f4ceee\"}\n"} -{"Time":"2022-12-07T09:15:32.452049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.452 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"599.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c0be797-32ed-4889-8f61-45a57691af04\"}\n"} -{"Time":"2022-12-07T09:15:32.452303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.452 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/organizations/82053ff4-d217-4a07-8db0-0c667b77a815/templates/my-template\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"39.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"1da04ad9-933b-49d0-b0cb-791aef9ca9c0\"}\n"} -{"Time":"2022-12-07T09:15:32.452441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" templatecreate_test.go:78: 2022-12-07 08:15:32.452: cmd: matched \"Create and upload\" = \"\u003e Create and upload\"\n"} -{"Time":"2022-12-07T09:15:32.452455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" templatecreate_test.go:80: 2022-12-07 08:15:32.452: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:32.452505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.452: cmd: stdout: \"\u003e Create and upload \\\"/tmp/TestTemplateCreateCreate2343441089/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:32.453659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.453 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"214d35b0-a699-4ec4-bd4f-6ab06cbdbb92\"}\n"} -{"Time":"2022-12-07T09:15:32.454511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/organizations/82053ff4-d217-4a07-8db0-0c667b77a815/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"659.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c80692e7-bf3a-474d-a402-81e06cb31abe\"}\n"} -{"Time":"2022-12-07T09:15:32.454666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.454: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:32.455072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.455 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/templateversions/ebf6bb22-f9eb-46ba-b64d-27c55d509413\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c286f60-7d16-4314-9efb-42f17fdb5cab\"}\n"} -{"Time":"2022-12-07T09:15:32.457739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.457745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.457748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"447.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d717ba07-6e5a-4307-a64d-925e1f86ccb8\"}\n"} -{"Time":"2022-12-07T09:15:32.459519+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.459526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.459529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.459 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:138\u003e\t(*agent).runLoop\trunning loop\n"} -{"Time":"2022-12-07T09:15:32.460079+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.460083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.460086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"471.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d7f2e779-0f2a-4df6-b241-ba302ec94c3c\"}\n"} -{"Time":"2022-12-07T09:15:32.460229+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.460238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.460242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.460 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"8a2357be-9070-463a-8c18-eac6844ced27\", \"agent_id\": \"c1a86b86-6b5f-45b8-b63d-3df2687a2c40\", \"agent_version\": \"v0.0.0-devel\"}\n"} -{"Time":"2022-12-07T09:15:32.460245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"124.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8a2357be-9070-463a-8c18-eac6844ced27\"}\n"} -{"Time":"2022-12-07T09:15:32.460348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"80.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1f943e66-371c-4cd1-81e9-63d1ec235fe1\"}\n"} -{"Time":"2022-12-07T09:15:32.460528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"79.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d71f2682-a9db-4284-9492-f30e15504955\"}\n"} -{"Time":"2022-12-07T09:15:32.460595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.460 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:177\u003e\t(*agent).run\tfetched metadata\n"} -{"Time":"2022-12-07T09:15:32.460683+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.460688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.460691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"523.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1d07e0df-8d80-4835-b0f5-ce55b4bf4cc0\"}\n"} -{"Time":"2022-12-07T09:15:32.460837+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.460844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.460849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"491.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4fe59e4f-747a-45f5-b12c-25bcccb8f13f\"}\n"} -{"Time":"2022-12-07T09:15:32.460984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" coderdtest.go:598: agent example not connected yet\n"} -{"Time":"2022-12-07T09:15:32.462019+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.462024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.462026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.461 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"563.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"df63f1ad-20c6-4df5-880d-64f22bf49b91\"}\n"} -{"Time":"2022-12-07T09:15:32.46326+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.463266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.463269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.463 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:402\u003e\t(*agent).runCoordinator\tconnected to coordination server\n"} -{"Time":"2022-12-07T09:15:32.463327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.463 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"162cfbdb-993f-4a9d-bd47-8b371c49bd25\", \"agent\": {\"id\": \"c1a86b86-6b5f-45b8-b63d-3df2687a2c40\", \"created_at\": \"2022-12-07T08:15:32.124648Z\", \"updated_at\": \"2022-12-07T08:15:32.124648Z\", \"name\": \"example\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"9cc9b5ff-5e83-48f8-ab28-021e0b2ca898\", \"auth_token\": \"6518c7b9-f2f7-4aa4-b8da-eb504ffb9753\", \"auth_instance_id\": {\"String\": \"\", \"Valid\": false}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"director"} -{"Time":"2022-12-07T09:15:32.463343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"y\": \"\", \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} -{"Time":"2022-12-07T09:15:32.468851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape","Output":"--- PASS: Test_sshConfigExecEscape (0.00s)\n"} -{"Time":"2022-12-07T09:15:32.46886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces","Output":" --- PASS: Test_sshConfigExecEscape/no_spaces (0.06s)\n"} -{"Time":"2022-12-07T09:15:32.468864+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/no_spaces","Elapsed":0.06} -{"Time":"2022-12-07T09:15:32.468867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails","Output":" --- PASS: Test_sshConfigExecEscape/newline_fails (0.00s)\n"} -{"Time":"2022-12-07T09:15:32.46887+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/newline_fails","Elapsed":0} -{"Time":"2022-12-07T09:15:32.468872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs","Output":" --- PASS: Test_sshConfigExecEscape/tabs (0.05s)\n"} -{"Time":"2022-12-07T09:15:32.468874+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/tabs","Elapsed":0.05} -{"Time":"2022-12-07T09:15:32.468876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes","Output":" --- PASS: Test_sshConfigExecEscape/backslashes (0.07s)\n"} -{"Time":"2022-12-07T09:15:32.468879+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/backslashes","Elapsed":0.07} -{"Time":"2022-12-07T09:15:32.468881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes","Output":" --- PASS: Test_sshConfigExecEscape/quotes (0.10s)\n"} -{"Time":"2022-12-07T09:15:32.468883+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/quotes","Elapsed":0.1} -{"Time":"2022-12-07T09:15:32.468884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces","Output":" --- PASS: Test_sshConfigExecEscape/spaces (0.06s)\n"} -{"Time":"2022-12-07T09:15:32.468886+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape/spaces","Elapsed":0.06} -{"Time":"2022-12-07T09:15:32.468888+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_sshConfigExecEscape","Elapsed":0} -{"Time":"2022-12-07T09:15:32.468889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.468891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.472139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.472 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"116.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"18ba74ce-3f90-4886-8e87-ead65838ff94\"}\n"} -{"Time":"2022-12-07T09:15:32.472329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.472 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"35.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9bd22ac7-9b47-40ce-91fb-24e82711ed8b\"}\n"} -{"Time":"2022-12-07T09:15:32.472979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.472 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"466.541µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7a34c595-4986-4470-ad1b-db1d78a44702\"}\n"} -{"Time":"2022-12-07T09:15:32.473695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.473 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/organizations/364a154c-ac78-426b-82ce-f48f9b1f5f90/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"531.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bcfc4213-a257-417e-8c28-777228733d51\"}\n"} -{"Time":"2022-12-07T09:15:32.473796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" state_test.go:113: waiting for template version job 16be6208-04bc-4c7e-bea0-71ceda9ee306\n"} -{"Time":"2022-12-07T09:15:32.483254+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.483263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.483265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.483 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"326.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f7ef31f3-72df-4a11-a53b-7885cc735d28\"}\n"} -{"Time":"2022-12-07T09:15:32.483773+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.483776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.483778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.483 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.483786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.483 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.483803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.483 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.4839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.483 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"e96ddf7d-ec85-48a8-ae2c-d9824f8da7e5\"}\n"} -{"Time":"2022-12-07T09:15:32.484339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.484 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/templateversions/83a463b7-3d5b-473e-946b-43a803f1841b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"309.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aef8c379-f8d6-460c-a89d-055f8de01483\"}\n"} -{"Time":"2022-12-07T09:15:32.484839+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.484843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.484844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.484 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"283.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"71f8ac2f-af41-4bea-a401-1e196c485b56\"}\n"} -{"Time":"2022-12-07T09:15:32.484847+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.484848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.48485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.484 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/organizations/2d62e2c5-c8aa-4495-906d-e4a682bc9913/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"290.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"757ba638-1078-4aeb-971e-5ca081a9bbc9\"}\n"} -{"Time":"2022-12-07T09:15:32.485035+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.485039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.48504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.484 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces/1e701e9d-7889-4738-bdd1-ce6caf03218b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"444.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d2dfd77-4934-412e-90a1-64c17dcc6698\"}\n"} -{"Time":"2022-12-07T09:15:32.485569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.485 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaceagents/c1a86b86-6b5f-45b8-b63d-3df2687a2c40/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8165b2cf-846c-4824-86d2-5dfa1a434763\"}\n"} -{"Time":"2022-12-07T09:15:32.485687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.485692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.485694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.485 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/organizations/2d62e2c5-c8aa-4495-906d-e4a682bc9913/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"593.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"44d0bb32-88f6-416a-ba58-78074bd86ef9\"}\n"} -{"Time":"2022-12-07T09:15:32.485801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" state_test.go:91: waiting for workspace build job b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\n"} -{"Time":"2022-12-07T09:15:32.486303+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.486311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.486314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.486 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16fd27cf-0ba9-4a34-9b65-b5ef34cdc3ee\"}\n"} -{"Time":"2022-12-07T09:15:32.499779+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.499794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.499798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.499 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"417.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3226611b-4385-4ae9-9d50-4e3a25e39ac5\"}\n"} -{"Time":"2022-12-07T09:15:32.502984+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.502989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.50299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.502 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.503032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.503082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:32.503112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStop3343082525/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.503126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStop3343082525/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.503146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleStop3343082525/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.503161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"workspace_name\": \"clever-merkle4\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:32.50329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.503295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.503 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.507369+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.507378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.507381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.507 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"832d3296-5ab1-498e-9ffd-216539764b41\"}\n"} -{"Time":"2022-12-07T09:15:32.51009+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.510096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.510098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"306.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e71f4c45-339e-43ba-9106-e63558799088\"}\n"} -{"Time":"2022-12-07T09:15:32.511338+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.511344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.511346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.511 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"65a46f99-154b-488f-94ef-2b4f435ee1be\"}\n"} -{"Time":"2022-12-07T09:15:32.511355+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.511357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.511358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.511 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"327.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"55b4ad79-8846-4957-bed2-c42a92cc273d\"}\n"} -{"Time":"2022-12-07T09:15:32.525174+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.525181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.525184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.525 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"235.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"698a5fb1-a2a4-4ba7-a180-0d85e38f93d1\"}\n"} -{"Time":"2022-12-07T09:15:32.53298+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.532992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.532993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"250µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a71afddf-40e5-4d09-9d5c-7320bfb4bd26\"}\n"} -{"Time":"2022-12-07T09:15:32.534938+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.534946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.534948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.534 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"241.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"76dc9006-91a5-489d-a37d-1874f2b240b4\"}\n"} -{"Time":"2022-12-07T09:15:32.5363+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.536303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.536305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"253.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ea5dc8c1-4692-4539-8652-a8918f424b61\"}\n"} -{"Time":"2022-12-07T09:15:32.536326+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.536328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.536329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8587654f-a98c-4c89-b7eb-7ca76cf5b0b7\"}\n"} -{"Time":"2022-12-07T09:15:32.547119+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} -{"Time":"2022-12-07T09:15:32.547124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} -{"Time":"2022-12-07T09:15:32.547126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.547 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:32.549413+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.549417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.549418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.549 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"256.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b815095b-fc7a-4164-92dd-f51a2d0a4344\"}\n"} -{"Time":"2022-12-07T09:15:32.553856+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.553862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.553864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.553 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.553867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.553 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.553884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.553 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.553899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.553 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.557477+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.557482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.557483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"235.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4cd2a549-c8eb-48d5-aef3-fda256fdeb67\"}\n"} -{"Time":"2022-12-07T09:15:32.560101+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.560108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.56011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.560 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"128f7dcc-5e46-4d69-8916-58379848403e\"}\n"} -{"Time":"2022-12-07T09:15:32.561319+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.561326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.561328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.561 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"294.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"86bdd0c4-fda9-4baf-bcb7-6219f5b108c5\"}\n"} -{"Time":"2022-12-07T09:15:32.561377+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.561382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.561386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.561 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"323.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"af95b49d-fca2-459e-8472-ed106312594f\"}\n"} -{"Time":"2022-12-07T09:15:32.572072+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.572086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.57209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.572 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:32.574524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.574 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1387d06-5acd-49f4-8a84-133ba632d280\"}\n"} -{"Time":"2022-12-07T09:15:32.583147+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.583153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.583155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.583 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"308.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3baf6864-3385-4584-b818-c221f52a66d9\"}\n"} -{"Time":"2022-12-07T09:15:32.584957+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.58496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.584962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.584 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9ef493e4-c596-4903-96ba-4269d68accd2\"}\n"} -{"Time":"2022-12-07T09:15:32.586278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.586281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.586283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"255.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a153375-2d9d-4709-a663-cca7b30740d0\"}\n"} -{"Time":"2022-12-07T09:15:32.586347+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.586355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.586357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dc5998e3-590c-424c-a0b0-7ae6c573e019\"}\n"} -{"Time":"2022-12-07T09:15:32.590103+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.590109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.590112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"9fb541ce-eb25-4201-9a31-3251900b658a\"}\n"} -{"Time":"2022-12-07T09:15:32.590123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"abb658b4-86d5-4a29-b441-54bc3dfd4c99\"}\n"} -{"Time":"2022-12-07T09:15:32.590572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.590: cmd: stdout: \"\\x1b[1mThe current executable path does not match the executable path found in $PATH.\\x1b[0m\\r\"\n"} -{"Time":"2022-12-07T09:15:32.59058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.590: cmd: stdout: \" | This may cause issues connecting to your workspace via SSH.\\r\"\n"} -{"Time":"2022-12-07T09:15:32.590584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.590: cmd: stdout: \" | \\tCurrent executable path: \\\"/tmp/go-build2871666910/b001/cli.test\\\"\\r\"\n"} -{"Time":"2022-12-07T09:15:32.590586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.590: cmd: stdout: \" | \\tExecutable path in $PATH: \\\"\\\"\\r\"\n"} -{"Time":"2022-12-07T09:15:32.590589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.590: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:32.597591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.597 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"7.277125ms\", \"status_code\": 200, \"latency_ms\": 7, \"request_id\": \"43b40716-4b42-4a23-aad0-5e347196119b\"}\n"} -{"Time":"2022-12-07T09:15:32.597624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} -{"Time":"2022-12-07T09:15:32.597633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} -{"Time":"2022-12-07T09:15:32.597636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.597713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.597769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:32.597806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateCreate2343441089/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.597827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"size_bytes\": 41, \"path\": \"/tmp/TestTemplateCreateCreate2343441089/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.597844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"size_bytes\": 41, \"path\": \"/tmp/TestTemplateCreateCreate2343441089/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.597864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateCreate2343441089/002/1861687875.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.597872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.597975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.597 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:32.598145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.598149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.598154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.598 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/templateversions/1715306d-575a-4cfd-b024-ba0e9cc794c1/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24e122e5-642c-494d-b7f0-cec7b3d6db72\"}\n"} -{"Time":"2022-12-07T09:15:32.598289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} -{"Time":"2022-12-07T09:15:32.598306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:32.59831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH2701562645/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:32.598311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:32.598372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" configssh_test.go:178: 2022-12-07 08:15:32.598: cmd: matched \"Continue?\" = \"\\x1b[1mThe current executable path does not match the executable path found in $PATH.\\x1b[0m\\r\\r\\n | This may cause issues connecting to your workspace via SSH.\\r\\r\\n | \\tCurrent executable path: \\\"/tmp/go-build2871666910/b001/cli.test\\\"\\r\\r\\n | \\tExecutable path in $PATH: \\\"\\\"\\r\\r\\n\\r\\n\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH2701562645/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} -{"Time":"2022-12-07T09:15:32.598379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" configssh_test.go:179: 2022-12-07 08:15:32.598: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:32.598396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:32.598422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:32.59871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} -{"Time":"2022-12-07T09:15:32.598716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"For example, try running:\"\n"} -{"Time":"2022-12-07T09:15:32.598718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:32.598719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:103: 2022-12-07 08:15:32.598: cmd: stdout: \"\\t$ ssh coder.optimistic-panini6\"\n"} -{"Time":"2022-12-07T09:15:32.600501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.600505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.600507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.600 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.414417ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"dd64bf91-6f6d-4be8-b100-5e22e2416300\"}\n"} -{"Time":"2022-12-07T09:15:32.60421+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.604216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.604218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.604 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.604473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.604 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.60449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.604 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.607849+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.607853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.607855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.607 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"448.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"98380ef6-5ea1-4d1e-b9e4-7f7eb997b858\"}\n"} -{"Time":"2022-12-07T09:15:32.61038+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.610387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.610389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.610 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62efdcd5-247d-4224-b1ad-4825198417da\"}\n"} -{"Time":"2022-12-07T09:15:32.611786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.611791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.611793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.611 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fc00c387-b454-4b6f-9d5f-32d3e6327943\"}\n"} -{"Time":"2022-12-07T09:15:32.611796+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.611798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.611799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.611 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d8e572b-9d13-4e67-a3d4-b26610217367\"}\n"} -{"Time":"2022-12-07T09:15:32.623326+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.623342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.623346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.623351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.623411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:32.623446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.623492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.623498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.623506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.62361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.623 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:32.624549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.624 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"19ea74c4-9de4-44b9-8917-ab788ee69dc2\"}\n"} -{"Time":"2022-12-07T09:15:32.633297+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.633303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.633305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.633 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"404.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a3e7a421-ea76-4e2b-960c-6b58332b3080\"}\n"} -{"Time":"2022-12-07T09:15:32.635042+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.635057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.635059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"306µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"23665a40-eecb-4b24-b30a-f858d7a8b42a\"}\n"} -{"Time":"2022-12-07T09:15:32.636382+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.636386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.636388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f027c193-625e-42d1-bfd2-13c657cc7b57\"}\n"} -{"Time":"2022-12-07T09:15:32.636451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.636456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.636458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ec723626-bd1b-4e31-8c21-29016f95810c\"}\n"} -{"Time":"2022-12-07T09:15:32.643243+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} -{"Time":"2022-12-07T09:15:32.643249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} -{"Time":"2022-12-07T09:15:32.643251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.643 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.709µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:32.648624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.648 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.648791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.648 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.64938+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.649385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.649388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.649 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"365.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3d57369d-59f3-4bf4-b5b2-2983fb57a8e6\"}\n"} -{"Time":"2022-12-07T09:15:32.654623+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.654629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.654639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.654 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.654643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.654 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.654654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.654 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.654676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.654 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.654731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.654 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.658235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.658242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.658244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.658 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"508.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"66b32846-d479-474b-955a-ee4c5bd3713c\"}\n"} -{"Time":"2022-12-07T09:15:32.660204+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.660208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.66021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8ad6e2bf-a8ed-4a69-90c8-a1d587da93bb\"}\n"} -{"Time":"2022-12-07T09:15:32.661302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.661307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.661309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49e0c9a0-0a95-4bb2-9494-27212bc7ca4f\"}\n"} -{"Time":"2022-12-07T09:15:32.661364+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.661367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.661369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5e82498e-384d-4990-af6c-97a0e73e861e\"}\n"} -{"Time":"2022-12-07T09:15:32.670872+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.670878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.670881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.670 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.792µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:32.673726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.673 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.673889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.673 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.674342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae983680-1fd5-49ce-93c9-8834b8039af3\"}\n"} -{"Time":"2022-12-07T09:15:32.674522+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH"} -{"Time":"2022-12-07T09:15:32.674527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"=== CONT TestConfigSSH\n"} -{"Time":"2022-12-07T09:15:32.674529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaceagents/c1a86b86-6b5f-45b8-b63d-3df2687a2c40/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"86.932042ms\", \"status_code\": 101, \"latency_ms\": 86, \"request_id\": \"c9a45835-c512-41ce-933a-81fa200a1178\"}\n"} -{"Time":"2022-12-07T09:15:32.674653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"137.120042ms\", \"status_code\": 0, \"latency_ms\": 137, \"request_id\": \"61e12c28-d5f6-4b1e-a9c5-657c59dbddab\"}\n"} -{"Time":"2022-12-07T09:15:32.674783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:80: 2022-12-07 08:15:32.674: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:32.674791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56561\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"211.617791ms\", \"status_code\": 101, \"latency_ms\": 211, \"request_id\": \"162cfbdb-993f-4a9d-bd47-8b371c49bd25\"}\n"} -{"Time":"2022-12-07T09:15:32.674794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"161.2595ms\", \"status_code\": 0, \"latency_ms\": 161, \"request_id\": \"0788f72b-85bb-4270-8d90-e7f25e005945\"}\n"} -{"Time":"2022-12-07T09:15:32.674848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" ptytest.go:80: 2022-12-07 08:15:32.674: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:32.674885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" t.go:81: 2022-12-07 08:15:32.674 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:32.675685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:32.675704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Output":"--- PASS: TestConfigSSH (1.42s)\n"} -{"Time":"2022-12-07T09:15:32.675709+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH","Elapsed":1.42} -{"Time":"2022-12-07T09:15:32.675712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.675715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.678927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.678 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"99.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"dabb6b43-7097-4e91-bacf-d257722f0cd5\"}\n"} -{"Time":"2022-12-07T09:15:32.679106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.679 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"32µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e41b2c03-bf56-4d02-a7e9-1f6082bf2d10\"}\n"} -{"Time":"2022-12-07T09:15:32.67968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.679 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"397.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cbcd7c1d-b2ac-4ace-a28c-4ae9e368475e\"}\n"} -{"Time":"2022-12-07T09:15:32.680313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.680 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/organizations/59bd6974-a38e-4820-8466-c916354f4ec8/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"492.584µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"08836b1d-2310-4221-a96e-13366cb61e09\"}\n"} -{"Time":"2022-12-07T09:15:32.680387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" schedule_test.go:233: waiting for template version job 78326d1b-fd62-463c-8f55-ccecb5cf210d\n"} -{"Time":"2022-12-07T09:15:32.683726+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.683737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.68374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.683 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"387.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a9e0600-0750-4e86-8853-70dad088ed5d\"}\n"} -{"Time":"2022-12-07T09:15:32.685536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.68554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.685542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.685 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"331.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d8509c8-049c-42d3-a56b-65f51b7ccbc0\"}\n"} -{"Time":"2022-12-07T09:15:32.686837+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.686847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.686849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.686 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24ca4eae-f27e-4cdb-93b3-fc722d426914\"}\n"} -{"Time":"2022-12-07T09:15:32.686879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.686882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.686883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.686 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1954ba6f-6440-4cbc-905a-9f9d9b43a7fc\"}\n"} -{"Time":"2022-12-07T09:15:32.69879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} -{"Time":"2022-12-07T09:15:32.698793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} -{"Time":"2022-12-07T09:15:32.698799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.698828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.698839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.698846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.698861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.698879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.698945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.69895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:32.698985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:32.698994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:32.699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:32.699011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:32.699096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.699 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.699124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:32.699131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.699 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.699154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:32.699195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:32.699324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.699: cmd: stdout: \"\\x1b[1A\\r✔ Queued [142ms]\"\n"} -{"Time":"2022-12-07T09:15:32.699333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.699: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:32.699337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.699: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} -{"Time":"2022-12-07T09:15:32.699351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.699: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:32.699356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.699: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [51ms]\"\n"} -{"Time":"2022-12-07T09:15:32.699358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.699: cmd: stdout: \"⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:32.700749+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.700755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.700767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.700 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"513µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cdcb2d05-0e2b-4059-8ff9-59ddc59b3a62\"}\n"} -{"Time":"2022-12-07T09:15:32.705372+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.705376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.705378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.705 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.705386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.705 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.705389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.705 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.705392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.705 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.705424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.705 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.706001+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.706009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.706011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a2998dff-2108-4498-9b8e-cc7e202710a8\"}\n"} -{"Time":"2022-12-07T09:15:32.707268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.707273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.707275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.707 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"269µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"afdc587f-5446-4f28-9967-7f1ee5eebe8e\"}\n"} -{"Time":"2022-12-07T09:15:32.708723+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.70873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.708733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" speedtest_test.go:31: waiting for workspace agents (workspace c0e73af8-5424-44e9-a1f4-62af613fb00a)\n"} -{"Time":"2022-12-07T09:15:32.709925+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.70993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.709931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.709 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"275.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"37e3cc2f-b449-4ee3-8c18-ec9882d670ea\"}\n"} -{"Time":"2022-12-07T09:15:32.711338+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.711346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.711349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.711 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"01415467-053d-4ec6-b013-d4f03afafccc\"}\n"} -{"Time":"2022-12-07T09:15:32.71145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.711455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.711457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.711 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2baea31e-9740-4e1d-ab79-cf60ce9e00ab\"}\n"} -{"Time":"2022-12-07T09:15:32.724278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.724289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.724294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.724298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.72431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.724334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.724346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.724376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.724406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.724543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.724589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.724735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.724 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"74882f53-d177-42ae-963f-73847fa85c4e\"}\n"} -{"Time":"2022-12-07T09:15:32.731604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.731614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.731619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.731 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d15647e0-c9ad-41c1-9aa9-32bdf115cf5b\"}\n"} -{"Time":"2022-12-07T09:15:32.732131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.732134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.732137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.732 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fe3d4f99-1939-4085-bd36-a7529cabaee3\"}\n"} -{"Time":"2022-12-07T09:15:32.734828+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.734832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.734834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.734 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e8f5cb5e-28e7-4849-bde7-b2fb5b18b122\"}\n"} -{"Time":"2022-12-07T09:15:32.735191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.735194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.7352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.735 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"408.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20ab6b70-d0b2-4c98-83d6-889610214c83\"}\n"} -{"Time":"2022-12-07T09:15:32.73528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:32.736345+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.736349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.73635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"257.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d735be5c-91d3-4653-8664-3130c0513111\"}\n"} -{"Time":"2022-12-07T09:15:32.736366+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.736368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.736369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"266.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9bac4531-4a62-4240-8a1b-6717820d250a\"}\n"} -{"Time":"2022-12-07T09:15:32.749783+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} -{"Time":"2022-12-07T09:15:32.749794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} -{"Time":"2022-12-07T09:15:32.749797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.7498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.749802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.749811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.749812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.750021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:32.750033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:32.750035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:32.750036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:32.750038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:32.75004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.750049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:32.750132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.750: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:32.750138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.750: cmd: stdout: \"✔ Detecting persistent resources [0ms]\"\n"} -{"Time":"2022-12-07T09:15:32.75014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.750: cmd: stdout: \"⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:32.750146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.750: cmd: stdout: \"\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\"\n"} -{"Time":"2022-12-07T09:15:32.750148+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.75015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.750152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.750 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5ef76bb7-7a47-4d2e-b18f-e91fea970279\"}\n"} -{"Time":"2022-12-07T09:15:32.750156+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} -{"Time":"2022-12-07T09:15:32.750158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} -{"Time":"2022-12-07T09:15:32.75016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.750: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:32.755612+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.755627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.755631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.755 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.755634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.755 [DEBUG]\t(provisionerd-dazzling_blackburn0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.755674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.755 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"048217b6-a050-4994-a972-b95ac10154c1\"}\n"} -{"Time":"2022-12-07T09:15:32.75609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.756103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.756106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.756 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0d7dbe4-9292-41c3-9010-18208a5c4b4b\"}\n"} -{"Time":"2022-12-07T09:15:32.757241+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.757244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.757247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8415b2a8-b992-489b-bec1-c121054c5b44\"}\n"} -{"Time":"2022-12-07T09:15:32.759407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.75941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.759412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"367.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a9d78e88-55c9-45ef-96a5-d84cf2ca8441\"}\n"} -{"Time":"2022-12-07T09:15:32.75952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:32.759956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.75996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.759962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspacebuilds/42bafdf5-d95a-4c0b-b4ad-59e663315caf\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f4859680-f601-467a-81eb-aea872c1b3c6\"}\n"} -{"Time":"2022-12-07T09:15:32.761463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.761471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.761474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.761 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"caf1df92-9f10-47a7-a17e-47513fa3c12c\"}\n"} -{"Time":"2022-12-07T09:15:32.761477+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.761479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.76148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.761 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"91c2b548-ec76-41f1-a27a-b00c17668216\"}\n"} -{"Time":"2022-12-07T09:15:32.762176+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop"} -{"Time":"2022-12-07T09:15:32.762183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"=== CONT TestScheduleStop\n"} -{"Time":"2022-12-07T09:15:32.762186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.762 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"28.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"14be0303-d02c-44c8-b311-d20e7f4f7f28\"}\n"} -{"Time":"2022-12-07T09:15:32.762342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.762 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c0c40f1-0616-44d7-9a35-386944d77489\"}\n"} -{"Time":"2022-12-07T09:15:32.762841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.762 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/users/me/workspace/clever-merkle4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae671a91-b36e-489e-a51c-935daa5a5264\"}\n"} -{"Time":"2022-12-07T09:15:32.763316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.763 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspaces/09ade267-8600-474c-9302-d522dd1c9d54/ttl\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.375µs\", \"status_code\": 204, \"latency_ms\": 0, \"request_id\": \"48ad464c-ea9c-4687-be8d-40b1664caaed\"}\n"} -{"Time":"2022-12-07T09:15:32.763773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.763 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/users/me/workspace/clever-merkle4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"270.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c8f174a-6dd1-41be-a34d-c867d93ffb7d\"}\n"} -{"Time":"2022-12-07T09:15:32.765785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.959µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"fee403b9-117f-4c4f-ac01-76bd740ceb90\"}\n"} -{"Time":"2022-12-07T09:15:32.765935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a63fb729-8c9a-408e-8158-f43666dcb350\"}\n"} -{"Time":"2022-12-07T09:15:32.766339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.766 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/users/me/workspace/clever-merkle4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"190be580-83b7-41b7-85c5-78ae52ceed03\"}\n"} -{"Time":"2022-12-07T09:15:32.766722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.766 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/workspaces/09ade267-8600-474c-9302-d522dd1c9d54/ttl\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"237.791µs\", \"status_code\": 204, \"latency_ms\": 0, \"request_id\": \"9df5cbfc-806c-4a05-ba48-d262b25c870c\"}\n"} -{"Time":"2022-12-07T09:15:32.767081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.767 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56558\", \"path\": \"/api/v2/users/me/workspace/clever-merkle4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"247.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f3e345d0-6c78-4817-999a-24d10b9ed28b\"}\n"} -{"Time":"2022-12-07T09:15:32.767306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" t.go:81: 2022-12-07 08:15:32.767 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:32.768164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:32.768195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Output":"--- PASS: TestScheduleStop (1.52s)\n"} -{"Time":"2022-12-07T09:15:32.7682+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleStop","Elapsed":1.52} -{"Time":"2022-12-07T09:15:32.768204+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header"} -{"Time":"2022-12-07T09:15:32.768206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header","Output":"=== CONT TestRoot/Header\n"} -{"Time":"2022-12-07T09:15:32.770542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version"} -{"Time":"2022-12-07T09:15:32.770546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version","Output":"=== CONT TestRoot/Version\n"} -{"Time":"2022-12-07T09:15:32.772162+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:32.772167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:32.774972+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.775016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.775027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.774 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.775029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.774 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.775032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.774 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.775034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.774 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.775039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.774 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.775086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.775 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.775782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:32.775789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:32.775798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.775 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"495d965c-2f99-4a9e-9ab0-e01b3860273b\"}\n"} -{"Time":"2022-12-07T09:15:32.776041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.775 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"50.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c860e2dd-4f7a-477c-8821-a8b44100b94d\"}\n"} -{"Time":"2022-12-07T09:15:32.776364+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.776371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.776373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.776 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"502µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"076313ec-78d1-44a0-9b15-0cb4004686b2\"}\n"} -{"Time":"2022-12-07T09:15:32.776602+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:32.776606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:32.776608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.776 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a3b86c64-b757-458c-bc3f-7e4ff3fbe671\"}\n"} -{"Time":"2022-12-07T09:15:32.77732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.777 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/organizations/e6817e67-621a-4aab-b61a-930024486eaf/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"577.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4c7a2066-afdb-4139-8dd2-a207ccf9cd78\"}\n"} -{"Time":"2022-12-07T09:15:32.777405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" schedule_test.go:310: waiting for template version job 2bab1cf6-fb75-4a9f-87af-27c43b5242d1\n"} -{"Time":"2022-12-07T09:15:32.777826+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.777831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.777833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.777 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:32.781754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.781 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7dba56ad-c343-4b7d-b9a6-91ae1b6199eb\"}\n"} -{"Time":"2022-12-07T09:15:32.782599+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.782603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.782605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.782 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a01d8467-5985-4502-834b-ad1ae01a57f3\"}\n"} -{"Time":"2022-12-07T09:15:32.785069+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.785076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.785078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"938fe290-18ad-404d-8099-e3a2bd23ed5e\"}\n"} -{"Time":"2022-12-07T09:15:32.785168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:32.787091+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.787095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.787096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.787 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5fb2aee1-362d-44be-85db-3dc9b0b87ce7\"}\n"} -{"Time":"2022-12-07T09:15:32.787099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.7871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.787102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.787 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"338µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"146b0a6c-45a4-4fc8-97f6-00b38e5faecc\"}\n"} -{"Time":"2022-12-07T09:15:32.799391+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.799395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.799396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.799 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c740b17b-0f6e-47d3-935c-e9bfe9173229\"}\n"} -{"Time":"2022-12-07T09:15:32.800172+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} -{"Time":"2022-12-07T09:15:32.800174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} -{"Time":"2022-12-07T09:15:32.800177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.800202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [INFO]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:32.800227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [INFO]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:32.80025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.800275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [DEBUG]\t(provisionerd-competent_johnson3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.800315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.800319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.800345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"a2639012-91af-44ce-81d3-de4ecd8a8df1\"}\n"} -{"Time":"2022-12-07T09:15:32.800571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.800 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/templateversions/ebf6bb22-f9eb-46ba-b64d-27c55d509413/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.769ms\", \"status_code\": 101, \"latency_ms\": 344, \"request_id\": \"d7faf178-7956-4efc-9b13-84d2531624c5\"}\n"} -{"Time":"2022-12-07T09:15:32.801573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.801 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/templateversions/ebf6bb22-f9eb-46ba-b64d-27c55d509413\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a9318abd-6bd0-4b42-94a3-fed78e094a3f\"}\n"} -{"Time":"2022-12-07T09:15:32.801687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.801: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [101ms]\"\n"} -{"Time":"2022-12-07T09:15:32.802052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.802 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/templateversions/ebf6bb22-f9eb-46ba-b64d-27c55d509413\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3e27ce90-dd15-4a8c-b9b1-3fd00b3b834f\"}\n"} -{"Time":"2022-12-07T09:15:32.802521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.802 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/templateversions/ebf6bb22-f9eb-46ba-b64d-27c55d509413/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"264.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53ef847f-f002-40f2-80bc-c7d034262c8e\"}\n"} -{"Time":"2022-12-07T09:15:32.802794+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:32.802798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:32.802801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.802 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"249.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"78b1ea27-fdb3-4692-974a-806160f5e5a5\"}\n"} -{"Time":"2022-12-07T09:15:32.802981+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create"} -{"Time":"2022-12-07T09:15:32.802984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"=== CONT TestTemplateCreate/Create\n"} -{"Time":"2022-12-07T09:15:32.802987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.802 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/templateversions/ebf6bb22-f9eb-46ba-b64d-27c55d509413/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf01baaf-2355-473c-90bb-5f17164dbaf2\"}\n"} -{"Time":"2022-12-07T09:15:32.803382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.803 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/templateversions/ebf6bb22-f9eb-46ba-b64d-27c55d509413/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"250.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e1d5150e-5d4e-468d-9e62-e692610962f3\"}\n"} -{"Time":"2022-12-07T09:15:32.803522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"┌────────────────────────────┐\"\n"} -{"Time":"2022-12-07T09:15:32.803528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"│ Template Preview │\"\n"} -{"Time":"2022-12-07T09:15:32.80353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"├────────────────────────────┤\"\n"} -{"Time":"2022-12-07T09:15:32.803533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"│ RESOURCE │\"\n"} -{"Time":"2022-12-07T09:15:32.803535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"├────────────────────────────┤\"\n"} -{"Time":"2022-12-07T09:15:32.803537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"│ \\x1b[1mcompute.main\\x1b[0m │\"\n"} -{"Time":"2022-12-07T09:15:32.803539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"│ └─ smith (linux, i386) │\"\n"} -{"Time":"2022-12-07T09:15:32.803541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"└────────────────────────────┘\"\n"} -{"Time":"2022-12-07T09:15:32.803611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" templatecreate_test.go:78: 2022-12-07 08:15:32.803: cmd: matched \"compute.main\" = \" \\\"/tmp/TestTemplateCreateCreate2343441089/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [142ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [0ms]\\r\\n⧗ \\x1b[;mParsing template parameters\\x1b[0m \\r\\n\\x1b[1A\\r✔ Parsing template parameters [51ms]\\r\\n⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \\r\\n \\r\\n✔ Detecting persistent resources [0ms]\\r\\n⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \\r\\n\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Cleaning Up [101ms]\\r\\n┌────────────────────────────┐\\r\\n│ Template Preview │\\r\\n├────────────────────────────┤\\r\\n│ RESOURCE │\\r\\n├──────────────────────────"} -{"Time":"2022-12-07T09:15:32.803628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":"──┤\\r\\n│ \\x1b[1mcompute.main\"\n"} -{"Time":"2022-12-07T09:15:32.803631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" templatecreate_test.go:78: 2022-12-07 08:15:32.803: cmd: matched \"smith (linux, i386)\" = \"\\x1b[0m │\\r\\n│ └─ smith (linux, i386)\"\n"} -{"Time":"2022-12-07T09:15:32.803643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" templatecreate_test.go:78: 2022-12-07 08:15:32.803: cmd: matched \"Confirm create?\" = \" │\\r\\n└────────────────────────────┘\\r\\n\u003e Confirm create?\"\n"} -{"Time":"2022-12-07T09:15:32.803647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" templatecreate_test.go:80: 2022-12-07 08:15:32.803: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:32.803673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.803: cmd: stdout: \"\u003e Confirm create? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:32.80406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56719\", \"path\": \"/api/v2/organizations/82053ff4-d217-4a07-8db0-0c667b77a815/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"255.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"56c0c345-1b73-4e58-bb6a-f44c262348ba\"}\n"} -{"Time":"2022-12-07T09:15:32.804167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.804: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:32.804175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.804: cmd: stdout: \"The my-template template has been created at Dec 7 09:15:32! Developers can \"\n"} -{"Time":"2022-12-07T09:15:32.804185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.804: cmd: stdout: \"provision a workspace with this template using: \"\n"} -{"Time":"2022-12-07T09:15:32.804189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.804: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:32.80419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.804: cmd: stdout: \" \\x1b[;mcoder create --template=\\\"my-template\\\" [workspace name]\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:32.804193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:32.804: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:32.804197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" ptytest.go:80: 2022-12-07 08:15:32.804: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:32.804239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" t.go:81: 2022-12-07 08:15:32.804 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:32.805005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:32.80503+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:32.805033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:32.80632+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.806324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.806326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.806 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"350.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"437dc3cf-107e-450c-b8c9-f02c8a986431\"}\n"} -{"Time":"2022-12-07T09:15:32.807762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:32.807768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:32.80777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.807 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"85.791µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"68cdc3ad-6f7d-4c8a-854e-02e0f6b74904\"}\n"} -{"Time":"2022-12-07T09:15:32.807977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.807 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"33.334µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"89d68d0b-1274-45d6-8f18-2b9134ff1d2c\"}\n"} -{"Time":"2022-12-07T09:15:32.808036+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.808039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.808049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.807 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16045f89-aec1-4b3f-b34b-85b52a800061\"}\n"} -{"Time":"2022-12-07T09:15:32.808604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:32.808613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:32.808616+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.808 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"430.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"eb80699d-aa14-49b9-8ba9-a8ce06130cac\"}\n"} -{"Time":"2022-12-07T09:15:32.809397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/organizations/1ce8b51f-a09e-4cb6-9f22-e3c24dffd97e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"584.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d0fd09ed-0524-4dff-b02e-18a1a9de544f\"}\n"} -{"Time":"2022-12-07T09:15:32.809462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" schedule_test.go:274: waiting for template version job 2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\n"} -{"Time":"2022-12-07T09:15:32.809943+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.809947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.809949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a837050a-b11a-417e-84c1-4af5ecacd2a1\"}\n"} -{"Time":"2022-12-07T09:15:32.810047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:32.811889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.811892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.811894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.811 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e49c33da-10d4-4b26-a8eb-1307b59097f4\"}\n"} -{"Time":"2022-12-07T09:15:32.811897+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.811898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.811905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.811 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"367.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"588860a1-5129-4c08-84de-5313a8b3e473\"}\n"} -{"Time":"2022-12-07T09:15:32.825274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.825283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.825286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.825 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.825288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.825 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.825291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.825 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.825356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.825 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"2a43ba41-a0af-4448-88e0-96c14f724286\"}\n"} -{"Time":"2022-12-07T09:15:32.826149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.826 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/templateversions/16be6208-04bc-4c7e-bea0-71ceda9ee306\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"393.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"76342701-8a51-4801-9a5c-3aed288e531e\"}\n"} -{"Time":"2022-12-07T09:15:32.826653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.826 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/organizations/364a154c-ac78-426b-82ce-f48f9b1f5f90/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"42a0fbec-5278-46db-9caf-f8641989783d\"}\n"} -{"Time":"2022-12-07T09:15:32.827482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/organizations/364a154c-ac78-426b-82ce-f48f9b1f5f90/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"616.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4933d8c1-eaeb-4e79-bca7-6f157a9a7557\"}\n"} -{"Time":"2022-12-07T09:15:32.827604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" state_test.go:116: waiting for workspace build job b530656d-137b-4084-a379-973f872ae887\n"} -{"Time":"2022-12-07T09:15:32.827982+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.82799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.827992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.827 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:32.82806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.828 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:32.828106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.828 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:32.828137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideOK1102854830/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.828166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideOK1102854830/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.828184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideOK1102854830/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.828202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:32.828303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.828 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:32.830314+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:32.830322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:32.830325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"951.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a9a17890-b510-4001-a4df-d90c69e08f12\"}\n"} -{"Time":"2022-12-07T09:15:32.831075+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.831079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.831081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"00de2d22-5e38-4b99-956d-95a891f7060f\"}\n"} -{"Time":"2022-12-07T09:15:32.832327+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.832332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.832334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.832 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0ab6d3c-67c4-4699-9957-c6e2a20be17d\"}\n"} -{"Time":"2022-12-07T09:15:32.834389+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.834394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.834397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c2dcc67e-8903-43be-b3b5-ab247b3f8a87\"}\n"} -{"Time":"2022-12-07T09:15:32.834482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:32.834919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:32.834924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:32.834926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"327.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad2382b8-1d16-4b81-8aa7-9e16492a7638\"}\n"} -{"Time":"2022-12-07T09:15:32.836418+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.836428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.83643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8449f2ff-eb40-4a70-8715-e28dd5afe2eb\"}\n"} -{"Time":"2022-12-07T09:15:32.836433+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.836434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.836436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"380µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5150869d-9566-43fc-8186-437f1b5034bc\"}\n"} -{"Time":"2022-12-07T09:15:32.853877+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:32.853881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:32.853883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.853 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"82bae274-fe1a-4c08-8b89-bb5e57fb90a5\"}\n"} -{"Time":"2022-12-07T09:15:32.85395+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.853958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.853961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.853 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97ae5469-b73f-47dd-be8a-6b4c30cd8b9a\"}\n"} -{"Time":"2022-12-07T09:15:32.855996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.856001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.856003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.855 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"288µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2743692f-906e-4728-bdb4-77cdbc7bac8a\"}\n"} -{"Time":"2022-12-07T09:15:32.85618+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.856183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.856185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:32.85626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:32.856305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:32.856337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePullFile4042663601/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.85636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullFile4042663601/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.856381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullFile4042663601/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.856407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"workspace_name\": \"fervent-carver1\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:32.856495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:32.856512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.856 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} -{"Time":"2022-12-07T09:15:32.857201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.857 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"267.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"069445db-b38a-496c-a677-30725c623da9\"}\n"} -{"Time":"2022-12-07T09:15:32.859363+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.859367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.859369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.859 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"331.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b530c271-fdd3-4083-8b48-3d66b6edb535\"}\n"} -{"Time":"2022-12-07T09:15:32.859483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:32.859856+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:32.859861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:32.859863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.859 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eac0fd38-1629-4f99-9fcb-2c6a4965b4f6\"}\n"} -{"Time":"2022-12-07T09:15:32.861377+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.861383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.861386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.861 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9e52cae3-4db9-4ba3-b897-0e09182a6d6b\"}\n"} -{"Time":"2022-12-07T09:15:32.861432+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.861439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.861441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.861 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"338.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7eb6cc32-2e3e-41ef-a944-aaea241319fc\"}\n"} -{"Time":"2022-12-07T09:15:32.875818+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:32.875826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:32.875828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.875 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:32.876971+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.876974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.876977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.876 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"13.958µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:32.877939+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:32.877943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:32.877945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.877 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"534fe534-2d17-40be-b4c3-800e92aca5f6\"}\n"} -{"Time":"2022-12-07T09:15:32.878063+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.878071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.878073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.878 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"323.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8749cfbd-94b0-4ecd-8ec6-97b40e51cea6\"}\n"} -{"Time":"2022-12-07T09:15:32.878347+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.878351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.878352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.878 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:32.878446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.878 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.881169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.881 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a4ef3fc1-afef-45ef-ba98-f58aca64e141\"}\n"} -{"Time":"2022-12-07T09:15:32.882286+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.88229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.882293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.882 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"354.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1ad2fbe-cccf-4403-9213-fccf995397ba\"}\n"} -{"Time":"2022-12-07T09:15:32.884406+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.884411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.884413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.884 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1fb39dad-5724-4126-93f3-1d953bc7f751\"}\n"} -{"Time":"2022-12-07T09:15:32.884534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:32.884936+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:32.884944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:32.884946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.884 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"23e1df05-8d9d-448a-ad05-896bc1804208\"}\n"} -{"Time":"2022-12-07T09:15:32.886403+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.886408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.886411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2b92f956-e314-4a10-9435-07155eaf567e\"}\n"} -{"Time":"2022-12-07T09:15:32.886425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.886429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.886431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dcf0e90d-a567-4d44-a074-e4664cd1329f\"}\n"} -{"Time":"2022-12-07T09:15:32.903786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.903797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.903799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.903 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"50517c8a-9d69-44a3-9ab9-1926210d8586\"}\n"} -{"Time":"2022-12-07T09:15:32.903806+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:32.903808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:32.903815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.903 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"363.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c9221a28-92c3-4889-85db-b10cd4bf4d29\"}\n"} -{"Time":"2022-12-07T09:15:32.906073+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.90608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.906082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.906 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"35c52772-e155-40e3-8ee5-b8a689628df9\"}\n"} -{"Time":"2022-12-07T09:15:32.906674+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.906682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.906684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.906 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:32.906709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.906 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.906737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.906 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:32.906765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.906 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:32.906844+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:32.906853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:32.906859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.906 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:32.907362+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.907367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.907381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.907 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"388.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a763dac4-5219-4196-a30d-867472dc1a27\"}\n"} -{"Time":"2022-12-07T09:15:32.908952+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.908962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.908965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.908 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:138\u003e\t(*agent).runLoop\trunning loop\n"} -{"Time":"2022-12-07T09:15:32.909442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f57e4e8c-4447-4bac-af57-9e47f58767a0\"}\n"} -{"Time":"2022-12-07T09:15:32.909581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:32.909741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"59.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"95d5337a-456f-49b1-a44e-6181dbcff3e0\"}\n"} -{"Time":"2022-12-07T09:15:32.910018+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:32.910027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:32.91003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b6bf13d-144f-46f2-88ee-8cbdcfa248c8\"}\n"} -{"Time":"2022-12-07T09:15:32.910034+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.910044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.910047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.909 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"5511755f-1b23-41ff-9aec-a18ec7510e26\", \"agent_id\": \"e10ec02a-e8c3-464a-be15-0d9f6d491e0a\", \"agent_version\": \"v0.0.0-devel\"}\n"} -{"Time":"2022-12-07T09:15:32.910071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.910 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"81.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5511755f-1b23-41ff-9aec-a18ec7510e26\"}\n"} -{"Time":"2022-12-07T09:15:32.910301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.910 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40065778-0245-4181-9535-f22c629117de\"}\n"} -{"Time":"2022-12-07T09:15:32.910444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.910 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:177\u003e\t(*agent).run\tfetched metadata\n"} -{"Time":"2022-12-07T09:15:32.91154+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.911548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.911552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.911 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5f14a2cb-1cbf-40af-a48c-1981ac8631d3\"}\n"} -{"Time":"2022-12-07T09:15:32.911715+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.911723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.911726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.911 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"438.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e80a6c53-0a54-4c63-98ff-aafb50791954\"}\n"} -{"Time":"2022-12-07T09:15:32.913517+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.913527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.913531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.913 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"b6af8e97-ea4d-407d-be30-82266ade7c98\", \"agent\": {\"id\": \"e10ec02a-e8c3-464a-be15-0d9f6d491e0a\", \"created_at\": \"2022-12-07T08:15:32.412118Z\", \"updated_at\": \"2022-12-07T08:15:32.412118Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"7b73c9b4-0884-4051-bbb2-df53da5ccc64\", \"auth_token\": \"f900032b-8d13-43a0-977d-7d3009a614fb\", \"auth_instance_id\": {\"String\": \"\", \"Valid\": false}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"directory\": \"\","} -{"Time":"2022-12-07T09:15:32.91354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} -{"Time":"2022-12-07T09:15:32.913543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.913 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:402\u003e\t(*agent).runCoordinator\tconnected to coordination server\n"} -{"Time":"2022-12-07T09:15:32.926424+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:32.926444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:32.92645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:32.926594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:32.926671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:32.926733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.926786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.926809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.926835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:32.926961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.926 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:32.928349+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.928358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.928361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"494.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3f8f5359-eaf3-4ad6-ac71-69f5bd47190c\"}\n"} -{"Time":"2022-12-07T09:15:32.928372+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:32.928375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:32.928378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"509.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6c9daa6a-77df-4979-af58-aa7d6d9d52c3\"}\n"} -{"Time":"2022-12-07T09:15:32.928562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.928569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.928573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:32.928595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.92862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.928658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.928672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.928692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:32.928736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:32.928911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.92894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.928 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:32.931336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"447.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2b229cb7-5c2f-4cbc-808e-097dedd6d756\"}\n"} -{"Time":"2022-12-07T09:15:32.932223+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.93223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.932232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"312.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7425e6b0-fe68-4df1-aaad-14ca15f18b1e\"}\n"} -{"Time":"2022-12-07T09:15:32.934467+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.934474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.934476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.934 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaces/c0e73af8-5424-44e9-a1f4-62af613fb00a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b8d5ec92-6422-453c-9391-683eea8357e3\"}\n"} -{"Time":"2022-12-07T09:15:32.934933+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:32.934937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:32.93494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.934 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"294.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c5e9e6a4-d25b-438e-8fc7-e1128570d78c\"}\n"} -{"Time":"2022-12-07T09:15:32.936505+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.936512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.936516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.936 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"440.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40cffb42-7a21-4d81-a1ec-857d1394bd83\"}\n"} -{"Time":"2022-12-07T09:15:32.936585+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.936593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.936597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.936 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"485.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b7b32d8-1c8d-4b72-9f16-d908ee8d0de7\"}\n"} -{"Time":"2022-12-07T09:15:32.937482+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:32.937491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:32.937495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"24.709µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"104be62f-602d-4f4a-95ef-1f1a787b6778\"}\n"} -{"Time":"2022-12-07T09:15:32.937503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"28.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d44235b5-8906-4429-8f8c-fb012655527c\"}\n"} -{"Time":"2022-12-07T09:15:32.938241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.938 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/users/me/workspace/cool-pike0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"499.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bc4cab58-bc1e-4dbb-aacb-f58e68b4467f\"}\n"} -{"Time":"2022-12-07T09:15:32.939005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.938 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaceagents/e10ec02a-e8c3-464a-be15-0d9f6d491e0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"479.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ef37586f-16d5-44d1-83ad-8420dc55d79c\"}\n"} -{"Time":"2022-12-07T09:15:32.939664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:32.939 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaceagents/e10ec02a-e8c3-464a-be15-0d9f6d491e0a/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12b44ad9-45a5-49c1-8a34-5ad7a5a57dd8\"}\n"} -{"Time":"2022-12-07T09:15:32.948587+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.948608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.948613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.948 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:32.948727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.948 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:32.948789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.948 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:32.948839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.948 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.948868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.948 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.948897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.948 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.948918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.948 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"workspace_name\": \"sweet-bassi0\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:32.949049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.949 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:32.949076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.949 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.953452+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:32.953459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:32.953462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.953 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"563.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f5c0967-e33a-40bf-af45-9df73df3461a\"}\n"} -{"Time":"2022-12-07T09:15:32.953469+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.953471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.953475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.953 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"595.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8b535fdd-1684-4ad0-ace4-535e77dce382\"}\n"} -{"Time":"2022-12-07T09:15:32.956298+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.956307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.95631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.956 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"454.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"63ddec12-4602-413b-b53d-450e3165b8c4\"}\n"} -{"Time":"2022-12-07T09:15:32.956908+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.956916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.956942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.956 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:32.956946+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:32.956948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:32.956952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.956 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:32.956988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.956 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:32.957009+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.957023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.957025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.956 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:32.957031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.957 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} -{"Time":"2022-12-07T09:15:32.957038+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:32.957042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:32.957047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.957 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:32.957109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.957 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideInvalidDuration4118256705/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.957138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.957 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideInvalidDuration4118256705/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.957166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.957 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideInvalidDuration4118256705/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:32.957219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.957 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:32.957318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.957 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:32.957451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.957457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.95746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.957 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"529µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9a0c6aa0-b889-4ae7-8531-83e773f29692\"}\n"} -{"Time":"2022-12-07T09:15:32.960412+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:32.960418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:32.960421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.960 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ee77eee-de89-47aa-9c6d-db7e1e07e646\"}\n"} -{"Time":"2022-12-07T09:15:32.961448+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.961455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.961458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"449.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"75a5c97c-a017-4492-b24d-f4ab07364a2d\"}\n"} -{"Time":"2022-12-07T09:15:32.961478+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.961481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.961484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"478.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24dff592-66e0-4dee-aea3-8e7fd86e3c12\"}\n"} -{"Time":"2022-12-07T09:15:32.973517+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:32.973525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:32.973529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.973 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"16.708µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:32.977383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.977 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:32.97754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.977 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:32.978029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:32.977 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"427.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5bc0b86f-91b1-4699-b75e-1afb1ae37041\"}\n"} -{"Time":"2022-12-07T09:15:32.978199+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:32.978204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:32.978207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:32.978 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"436.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d0079e1-6fbb-431a-bdf6-48057b5dea7b\"}\n"} -{"Time":"2022-12-07T09:15:32.979142+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:32.979149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:32.979152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.979 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:32.979157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.979 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.979188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.979 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.979214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.979 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:32.979244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.979 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:32.979292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.979 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:32.981147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:32.981 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e310668a-57d5-4645-89b0-14f11dd41fe4\"}\n"} -{"Time":"2022-12-07T09:15:32.982435+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:32.982442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:32.982445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:32.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"442.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fb2ab3be-1e64-4d32-9310-49e54174f575\"}\n"} -{"Time":"2022-12-07T09:15:32.985243+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:32.985249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:32.985252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:32.985 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf565529-40b0-4496-bd22-4915cf341a98\"}\n"} -{"Time":"2022-12-07T09:15:32.986507+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.986514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.986517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.986 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"454.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d0ac0fc7-c068-4d55-ab87-2f9cfa772ec2\"}\n"} -{"Time":"2022-12-07T09:15:32.986522+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:32.986525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:32.986527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:32.986 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"429.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a6b2acf-21f3-4482-91ea-55f895de357a\"}\n"} -{"Time":"2022-12-07T09:15:32.999665+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:32.999672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:32.999675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.999 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:32.999718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.999 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:32.999744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.999 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:32.999754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:32.999 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:33.000737+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.000745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.000749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.000 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.000856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.000 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.000914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.000 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:33.000979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.000 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePullStdout1277238284/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.000989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.000 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullStdout1277238284/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.001024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.000 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"size_bytes\": 14, \"path\": \"/tmp/TestStatePullStdout1277238284/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.001053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.001 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"workspace_name\": \"upbeat-shtern4\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:33.001194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.001 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.001202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.001 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} -{"Time":"2022-12-07T09:15:33.003344+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.003352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.003356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.003 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"471.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c027d1dc-1e38-43e2-a611-659bfa7e59ff\"}\n"} -{"Time":"2022-12-07T09:15:33.003361+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.003364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.003366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.003 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"515µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"be7d35d7-c178-4bff-8701-6bfde2ef85a5\"}\n"} -{"Time":"2022-12-07T09:15:33.006004+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.006018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.006022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.005 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.125µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:33.006349+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.006358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.006361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.006 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"470.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"222fe75b-621d-4aca-b883-ade69bf56168\"}\n"} -{"Time":"2022-12-07T09:15:33.007219+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:33.007226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:33.007229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.007 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:33.007234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.007 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.007262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.007 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:33.007271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.007 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:33.007279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.007 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:33.007423+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.007431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.007435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.007 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:33.007442+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:33.007445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:33.007448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.007 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"479.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"007ba6d2-7d9c-4751-8e5e-c7fb917cb461\"}\n"} -{"Time":"2022-12-07T09:15:33.007567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.007574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.007578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.007 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.010473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"526.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d72f3384-6bb0-4b1e-82af-e2e139dce8a7\"}\n"} -{"Time":"2022-12-07T09:15:33.011627+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.011635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.011639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.011 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"561.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1cfcfb17-46bb-4861-a5d1-a71eeb5017a5\"}\n"} -{"Time":"2022-12-07T09:15:33.011645+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.011648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.011652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.011 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"567.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"34064f8b-a5ae-4128-adac-37a79050de65\"}\n"} -{"Time":"2022-12-07T09:15:33.028663+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.028675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.028678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.028 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:33.028704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.028 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.028806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.028 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.028816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.028 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.028823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.028 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.028851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.028 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:33.028898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.028 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:33.029078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.029 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.029118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.029 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:33.029224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"547.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b10c0eaf-9bbb-4c7e-affc-4e93110753d5\"}\n"} -{"Time":"2022-12-07T09:15:33.029278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.029291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.029297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"600.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4353f3da-de68-4026-9315-574df4bb2bdd\"}\n"} -{"Time":"2022-12-07T09:15:33.02945+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.029459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.029463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.029 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:33.029471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.029 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:33.029504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.029 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:33.029571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.029 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"c2b7c394-5f6a-4549-9164-a824a5eb6372\"}\n"} -{"Time":"2022-12-07T09:15:33.031287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.031 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/templateversions/78326d1b-fd62-463c-8f55-ccecb5cf210d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"539.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fe337af8-053c-4d93-a1fd-3c5a045c6277\"}\n"} -{"Time":"2022-12-07T09:15:33.03213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/organizations/59bd6974-a38e-4820-8466-c916354f4ec8/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"544µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d746f72e-5333-4026-8bad-984941ff25e6\"}\n"} -{"Time":"2022-12-07T09:15:33.032506+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:33.032517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:33.032521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"589.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8e5008d8-ac2f-4d03-85a6-185abd1e0ad1\"}\n"} -{"Time":"2022-12-07T09:15:33.033648+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.033659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.033663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.033 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/organizations/59bd6974-a38e-4820-8466-c916354f4ec8/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.166041ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"73a62856-e11e-4fa6-9d46-5efedfd3c795\"}\n"} -{"Time":"2022-12-07T09:15:33.033818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" schedule_test.go:241: waiting for workspace build job 55d1ca60-261b-497b-a0d9-25213c661cfe\n"} -{"Time":"2022-12-07T09:15:33.035283+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.035292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.035296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"520.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"291411e1-4957-4520-8207-bc4702b99056\"}\n"} -{"Time":"2022-12-07T09:15:33.03663+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.03664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.036644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6897bd9a-eb4b-45de-8f44-12c832285515\"}\n"} -{"Time":"2022-12-07T09:15:33.036649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.036652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.036656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"553.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"085d8c88-dffb-4899-aaa6-e709bd66befb\"}\n"} -{"Time":"2022-12-07T09:15:33.050432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.050 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:33.050656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.050 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:33.050687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.050 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.051477+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.051485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.051489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.051 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.051506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.051 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.051557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.051 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.051589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.051 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.054388+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.054419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.054425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.054 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.407916ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"73d5b983-1681-43c3-a711-c5e24cc89f26\"}\n"} -{"Time":"2022-12-07T09:15:33.057583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.057598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.057603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"4.5155ms\", \"status_code\": 200, \"latency_ms\": 4, \"request_id\": \"20a1cd4d-f9c2-440b-a49f-e156fe972d4b\"}\n"} -{"Time":"2022-12-07T09:15:33.057781+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:33.057797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:33.057803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.057 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:33.057809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.057 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.057819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.057 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:33.057912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.057 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:33.058069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.057 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:33.058594+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.058607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.058613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:33.058672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.058681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.058711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.058763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.058831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:33.058848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:33.059022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:33.059034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:33.059039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.794333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c9b51f84-4c35-43b6-8630-629895063835\"}\n"} -{"Time":"2022-12-07T09:15:33.059083+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.059088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.059093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.058 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.05914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.059 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:33.060234+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.060257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.060262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.060 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"951.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2216880d-13bb-43f9-bf1d-0bc9ac4c6e68\"}\n"} -{"Time":"2022-12-07T09:15:33.060739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.060748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.060753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.060 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"954.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7d088f8f-fb95-49c3-a25d-f34e786d0149\"}\n"} -{"Time":"2022-12-07T09:15:33.061847+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.061862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.061866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"767.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ff78f1d5-373e-49e8-b1c5-d44b08cf3bfd\"}\n"} -{"Time":"2022-12-07T09:15:33.061876+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.06188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.061883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"743.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"67000984-5309-4596-8f2b-258f7d01f0cb\"}\n"} -{"Time":"2022-12-07T09:15:33.07941+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.079427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.079433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:33.079496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.079503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"704.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31257300-645f-4c7d-9490-eb13071dfdc2\"}\n"} -{"Time":"2022-12-07T09:15:33.079593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.079609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.079625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.07963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"841.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8cde2bf5-4a18-45b2-83c0-9d91450ecfc2\"}\n"} -{"Time":"2022-12-07T09:15:33.079641+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.079645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.079649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:33.0797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:33.079818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.079 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:33.083169+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:33.08318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:33.083185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"827.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad8fa4fd-9745-421b-b0a8-0a939a6ff668\"}\n"} -{"Time":"2022-12-07T09:15:33.084882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.084898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.084904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.084 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"729.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"147a748b-672d-409e-a6e7-9b8a99f8cd25\"}\n"} -{"Time":"2022-12-07T09:15:33.08546+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.085476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.085483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.085 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"696.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a7b8a0a-08c5-4623-9013-393a34cb0ea3\"}\n"} -{"Time":"2022-12-07T09:15:33.086791+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.086804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.086809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.086 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"682.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"643d8a98-b707-49c7-9ed6-b1d0e7d04451\"}\n"} -{"Time":"2022-12-07T09:15:33.086819+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.086838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.086842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.086 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"729.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"02949612-a09e-41f7-8cdf-947d0ac6b6c9\"}\n"} -{"Time":"2022-12-07T09:15:33.101383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.100 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:33.101422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.100 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.10143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.100 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:33.101436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.100 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:33.101441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.101 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:33.101449+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:33.101453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:33.101458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:33.101: cmd: stdout: \"Starting a 5s download test...\"\n"} -{"Time":"2022-12-07T09:15:33.102216+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.102225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.102232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.101 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.102238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.102 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.102243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.102 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"resource_count\": 0, \"resources\": null, \"state_length\": 10}\n"} -{"Time":"2022-12-07T09:15:33.104708+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.104721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.10473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.104 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"708.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1d11dd9d-7112-4d57-96a6-bfd8f2842c0d\"}\n"} -{"Time":"2022-12-07T09:15:33.104977+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.104989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.104994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.104 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"864.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"28bf9c8f-5475-40ba-b2d4-383f6d602210\"}\n"} -{"Time":"2022-12-07T09:15:33.107739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:33.107756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:33.107761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.107 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"711.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1892f405-a383-4922-af84-4c62efd41f9b\"}\n"} -{"Time":"2022-12-07T09:15:33.10827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.108 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:33.108327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.108 [DEBUG]\t(provisionerd-xenodochial_diffie2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:33.108444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.108 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"0338d731-bbd2-4e10-8530-016b5da168cb\"}\n"} -{"Time":"2022-12-07T09:15:33.109346+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.109358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.109364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.109 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:33.109374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.109 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.109415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.109 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.109458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.109 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:33.109494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.109 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:33.109644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.109 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:33.109893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.109911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.109917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.109 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"724µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cae877ff-017d-4704-9a12-9ba786a24732\"}\n"} -{"Time":"2022-12-07T09:15:33.11059+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.110607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.110612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.110 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"731.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3482d813-4296-4fa3-9db7-15168807879b\"}\n"} -{"Time":"2022-12-07T09:15:33.11176+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.111768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.111773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"699.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4801d935-673b-4608-a625-bfeec8415327\"}\n"} -{"Time":"2022-12-07T09:15:33.111864+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.111878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.111883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"723.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dd4913f8-bddd-433a-a7a7-6899004b87b1\"}\n"} -{"Time":"2022-12-07T09:15:33.130196+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.130275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.130292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.130 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:33.130312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.130 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:33.130319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.130 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:33.130324+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.130327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.130331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.130 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.179542ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"d2d33012-8e18-4423-ac49-1eabc641d29f\"}\n"} -{"Time":"2022-12-07T09:15:33.130339+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.130342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.130345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.130 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"aba92696-cb0a-4f7d-8f1b-9032c1c10270\"}\n"} -{"Time":"2022-12-07T09:15:33.131009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.130 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templateversions/2bab1cf6-fb75-4a9f-87af-27c43b5242d1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"618.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6fcb5840-656d-4001-a573-540da715d081\"}\n"} -{"Time":"2022-12-07T09:15:33.131875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.131 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/organizations/e6817e67-621a-4aab-b61a-930024486eaf/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"507µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"38390047-ce08-4ba9-98b4-ad7e847ebe81\"}\n"} -{"Time":"2022-12-07T09:15:33.132642+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:33.13265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:33.132653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.132 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"589.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97658740-5567-43cc-843c-491c3e882144\"}\n"} -{"Time":"2022-12-07T09:15:33.133393+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.133406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.133412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.133 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/organizations/e6817e67-621a-4aab-b61a-930024486eaf/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"972.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4ebbfb11-5803-4f93-91b6-bf7031ee8283\"}\n"} -{"Time":"2022-12-07T09:15:33.134252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.134 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72/ttl\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"551.75µs\", \"status_code\": 204, \"latency_ms\": 0, \"request_id\": \"265b8736-40e1-4769-8222-7c42a30e8550\"}\n"} -{"Time":"2022-12-07T09:15:33.135155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.135 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"625.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b6cbcfa-7673-4540-9c16-8907ef680c76\"}\n"} -{"Time":"2022-12-07T09:15:33.13539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" schedule_test.go:326: waiting for workspace build job f5175f12-f4da-43f7-a285-1f22a363c655\n"} -{"Time":"2022-12-07T09:15:33.135397+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.135399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.135401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.135 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"475µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1826f2da-b817-4929-acf8-996a380f749a\"}\n"} -{"Time":"2022-12-07T09:15:33.136872+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.136879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.136881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"801ce15a-b66a-45e3-8425-51349b0cbb11\"}\n"} -{"Time":"2022-12-07T09:15:33.136885+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:33.136887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:33.136889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96fc88b5-1086-4564-ac3d-bb14d63593b7\"}\n"} -{"Time":"2022-12-07T09:15:33.137246+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.137257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.137261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.137 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"505.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2b294085-080b-43fe-ba76-d5160b17f3d7\"}\n"} -{"Time":"2022-12-07T09:15:33.13777+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:33.137781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:33.137783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.137 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.166µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"508a8b2b-aeb0-4906-acba-eb520ad9f24a\"}\n"} -{"Time":"2022-12-07T09:15:33.138017+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.138024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.138026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.137 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"451.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"46933032-3fc1-4f94-b7d8-db6929fb2653\"}\n"} -{"Time":"2022-12-07T09:15:33.138571+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File"} -{"Time":"2022-12-07T09:15:33.138593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":"=== CONT TestStatePull/File\n"} -{"Time":"2022-12-07T09:15:33.138595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.138 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/users/me/workspace/fervent-carver1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"381.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"586d91ae-8d5f-464f-adc1-d22340f02b9e\"}\n"} -{"Time":"2022-12-07T09:15:33.139245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.139 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56634\", \"path\": \"/api/v2/workspacebuilds/6994775d-2c2e-4015-b417-5c0729f84ee1/state\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7b3c753e-46e6-4a66-94fb-5088a3eac07c\"}\n"} -{"Time":"2022-12-07T09:15:33.139931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" t.go:81: 2022-12-07 08:15:33.139 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:33.140919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:33.141078+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:33.141083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.151329+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.151343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.151346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.151 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:33.151352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.151 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.151357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.151 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:33.151364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.151 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:33.151474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.151 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:33.152289+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.152297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.1523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.152 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.152302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.152 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.152305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.152 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.152329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.152 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.152364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.152 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.155757+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:33.155763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.155766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.155 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"117.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"415fc0c6-ff3a-4c53-a499-31fcb3f51d06\"}\n"} -{"Time":"2022-12-07T09:15:33.160027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"54.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a4931059-c156-4de5-b9d0-850059c8365d\"}\n"} -{"Time":"2022-12-07T09:15:33.160973+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.160978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.160982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.160 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"732.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8439e3b-8cad-4bfe-88ed-65ed31c38379\"}\n"} -{"Time":"2022-12-07T09:15:33.161841+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.161846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.161849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.161 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"387.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"edbbb4f5-91f5-482f-9df2-e32896246aac\"}\n"} -{"Time":"2022-12-07T09:15:33.161853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.161854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.161856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.161 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"409.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"986c6c01-c081-4c89-9f44-1a1929c0493d\"}\n"} -{"Time":"2022-12-07T09:15:33.162127+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.162134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.162137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"accb1569-6d45-494e-9373-5708320f3917\"}\n"} -{"Time":"2022-12-07T09:15:33.162292+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.1623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.162302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.162 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:33.162304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.162 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:33.162306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.162 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:33.162308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.162 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"656bffc5-a099-4c9c-a494-bbdc303db01b\"}\n"} -{"Time":"2022-12-07T09:15:33.162461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.162489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.162495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"521.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f44edb20-ebfb-41fc-a240-72dbc4e9f825\"}\n"} -{"Time":"2022-12-07T09:15:33.162506+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.162526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.16253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"430.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"751132c9-1183-4222-ba74-9dfe791c3b59\"}\n"} -{"Time":"2022-12-07T09:15:33.162991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:33.162997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.162999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"54.042µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"edde15c9-8a04-4cf1-8cc4-d6a35a8c319c\"}\n"} -{"Time":"2022-12-07T09:15:33.163395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.163 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c8baae53-a274-4bfc-b1be-1712760c757e\"}\n"} -{"Time":"2022-12-07T09:15:33.164032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.163 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d0ecb8f5-fb8f-4888-b5b0-a06644fe55b6\"}\n"} -{"Time":"2022-12-07T09:15:33.164251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.164 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/organizations/956d9bea-f2b8-419f-b999-c80085c53e8c/templates/my-template\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"27.708µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"56975f29-7d6f-45d8-b254-8943cbadfc84\"}\n"} -{"Time":"2022-12-07T09:15:33.165764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" templatecreate_test.go:193: 2022-12-07 08:15:33.165: cmd: matched \"Create and upload\" = \"\u003e Create and upload\"\n"} -{"Time":"2022-12-07T09:15:33.165782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" templatecreate_test.go:194: 2022-12-07 08:15:33.165: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:33.165843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.165: cmd: stdout: \"\u003e Create and upload \\\"/tmp/TestTemplateCreateWithParameterFileNotContainingTheValue2256270717/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:33.166858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.166 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0a4b321c-f24a-4239-88f6-ee4d2166656d\"}\n"} -{"Time":"2022-12-07T09:15:33.167701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.167 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/organizations/956d9bea-f2b8-419f-b999-c80085c53e8c/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"710.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5a971b70-6a18-4b64-a530-bdcb6df2c885\"}\n"} -{"Time":"2022-12-07T09:15:33.168517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.168: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:33.168582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.168 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/templateversions/c8062831-8e1e-47e2-b33a-c621aaaaafc1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"523.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"577566a5-d1ad-49ea-ad61-30c73845a047\"}\n"} -{"Time":"2022-12-07T09:15:33.171943+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.171953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.171956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.171 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.172023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.171 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.172037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.172 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:33.172457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.172 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.172594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.172 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.172599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.172 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.172602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.172 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"workspace_name\": \"lucid-roentgen1\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:33.172611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.172 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.172647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.172 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.178752+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.178763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.178766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.178 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"922.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57bf587d-f7e5-4afe-a527-694a2d096f5b\"}\n"} -{"Time":"2022-12-07T09:15:33.184673+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.184689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.184692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cb2e545a-c2f6-43bf-a0c0-8c62881d0f4c\"}\n"} -{"Time":"2022-12-07T09:15:33.18498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.184994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.184996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/templateversions/2f398552-8e8b-4ce1-9e71-ddc8a8e15fa7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6fcfbf9d-bbe2-452e-a37f-54df67171587\"}\n"} -{"Time":"2022-12-07T09:15:33.185452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/organizations/1ce8b51f-a09e-4cb6-9f22-e3c24dffd97e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"46f63de8-f341-4bf8-91aa-c2cba551ca04\"}\n"} -{"Time":"2022-12-07T09:15:33.186173+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.186177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.186195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"459.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e2925ec1-d4ae-4dda-ac20-4bb6cc430b67\"}\n"} -{"Time":"2022-12-07T09:15:33.186274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.186276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.186278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.186 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/organizations/1ce8b51f-a09e-4cb6-9f22-e3c24dffd97e/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"648.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d33bae73-154a-4f5e-81eb-e8d1e7556a9f\"}\n"} -{"Time":"2022-12-07T09:15:33.186391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" schedule_test.go:282: waiting for workspace build job 85a7846d-ab07-4abe-ad02-8cb0b108ddd7\n"} -{"Time":"2022-12-07T09:15:33.186421+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.186424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.186428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.186 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"420.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e16efced-dddc-422f-8140-02f904473ead\"}\n"} -{"Time":"2022-12-07T09:15:33.18663+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.186639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.186641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.186 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f549ce38-d8e4-4ca4-b4a9-0b6b33e511bf\"}\n"} -{"Time":"2022-12-07T09:15:33.201878+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.201901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.201904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.201 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.201976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.201 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.201982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.201 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:33.202014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.201 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.202058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.202 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.202069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.202 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.202124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.202 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"workspace_name\": \"tender-chatelet5\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:33.202151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.202 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.202171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.202 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.203176+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.20318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.203183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.202 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.203185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.203 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.203187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.203 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.20319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.203 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.203191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.203 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.203267+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.203271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.203272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.203 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3cfaeef2-68d4-4b1c-9760-8b33cb0b1c8d\"}\n"} -{"Time":"2022-12-07T09:15:33.204485+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.204488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.204491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.204 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:33.204493+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.204 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:33.204495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.204 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"eb5ef2ca-5ea7-4d20-b9e1-944675864de7\"}\n"} -{"Time":"2022-12-07T09:15:33.211106+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.21113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.211145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"572.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f0b41881-6684-4686-ab16-ef3f02b96b5e\"}\n"} -{"Time":"2022-12-07T09:15:33.211387+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.21139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.211394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.211 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"354µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"78f32739-8fef-49b4-8fc2-975b0011c833\"}\n"} -{"Time":"2022-12-07T09:15:33.211992+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.211996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.211998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.211 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/b8d6a447-7bb4-4b18-8e72-ba6e56b11b3e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae49af71-f862-4672-b957-edb7d42938d7\"}\n"} -{"Time":"2022-12-07T09:15:33.212+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.212002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.212003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.211 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"410.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6e28260b-74ba-4d1a-a216-4c4dfb1bfb40\"}\n"} -{"Time":"2022-12-07T09:15:33.212515+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.212525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.212528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.212 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0ba0b9df-3d8f-410f-9174-1d3bdacb8c28\"}\n"} -{"Time":"2022-12-07T09:15:33.213843+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.213849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.213851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.213 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.958µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"dcfbbee8-6258-4d97-97d0-4a629d2aaf04\"}\n"} -{"Time":"2022-12-07T09:15:33.214057+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.214063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.214065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.213 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.214463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.214466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:33.214469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideInvalidDuration4118256705/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.214472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideInvalidDuration4118256705/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.214474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideInvalidDuration4118256705/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.214477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"workspace_name\": \"laughing-cerf3\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:33.214482+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.214483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.214485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.214 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c34ac09-d68c-4181-9a13-dad3d5121627\"}\n"} -{"Time":"2022-12-07T09:15:33.214487+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.214488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.214489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.214491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.214 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.214928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.214946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.214951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.214 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/users/me/workspace/sweet-bassi0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1c3cace1-544f-4552-a5e8-b50d1040de9b\"}\n"} -{"Time":"2022-12-07T09:15:33.216404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.215 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspaces/eb821dd2-2edc-4344-9454-598f71e5a199/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"632.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b83b0dad-ec99-47c9-a071-ce6b85119117\"}\n"} -{"Time":"2022-12-07T09:15:33.216409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.216 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/3eb4616b-c2d1-4335-98ec-a5ebfdaa2255\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bef3bfb2-5f2d-404e-bf1a-25f9bcda0ff7\"}\n"} -{"Time":"2022-12-07T09:15:33.222735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.222741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.222744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.222 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.222746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.222 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.222749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.222 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.222751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.222 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.228874+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.228883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.228886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.228 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9ca33e89-7646-44cc-8f05-933dd8792303\"}\n"} -{"Time":"2022-12-07T09:15:33.234374+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.234422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.234431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.234 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bc5e99ba-7c47-4c71-9400-4cc8a7734332\"}\n"} -{"Time":"2022-12-07T09:15:33.235782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.235794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.235799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b0a72c33-c175-4f55-a7f0-9de23abb470c\"}\n"} -{"Time":"2022-12-07T09:15:33.236282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.236293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.236298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.236 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0b200b15-9980-43de-99ab-ed995c3cb51b\"}\n"} -{"Time":"2022-12-07T09:15:33.237157+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.237235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.237239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.237 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"201a8b43-a625-4d59-bf8f-6ea5c9129cff\"}\n"} -{"Time":"2022-12-07T09:15:33.24525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:33.245261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.245267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.245 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:33.252725+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.252745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.252759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.252 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.252762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.252 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.252764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.252 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.252766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.252 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.253625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.253 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1c737f9e-de8b-451e-a641-ba30c0bf0255\"}\n"} -{"Time":"2022-12-07T09:15:33.253637+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.253643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.253645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.253 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.253647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.253 [DEBUG]\t(provisionerd-nervous_mccarthy1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.253649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.253 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"bc192035-ff1b-403c-87d5-7d017ecb1782\"}\n"} -{"Time":"2022-12-07T09:15:33.259772+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.259779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.259781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"470.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c41d09eb-5fae-49b9-86a9-b2113a363fb8\"}\n"} -{"Time":"2022-12-07T09:15:33.262703+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.262711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.262714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3806bf7a-6320-454a-a03a-17f8655b686c\"}\n"} -{"Time":"2022-12-07T09:15:33.262717+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.262719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.26272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"247.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"289004fc-805a-49ad-a663-dcc79c250940\"}\n"} -{"Time":"2022-12-07T09:15:33.262727+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.262729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.262731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"447µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"059c0c3d-0434-486f-8356-495509a2dd59\"}\n"} -{"Time":"2022-12-07T09:15:33.264058+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.264063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.264065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.264 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.334µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"78a64711-2598-4d39-872f-90983a4244cd\"}\n"} -{"Time":"2022-12-07T09:15:33.264272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.264 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3db01453-93dc-4783-a2e2-21c28f9f3634\"}\n"} -{"Time":"2022-12-07T09:15:33.264465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.264469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.264471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.264 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.264473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.264 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.264475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.264 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.264477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.264 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.264841+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout"} -{"Time":"2022-12-07T09:15:33.264848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":"=== CONT TestStatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:33.26485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.264 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/users/me/workspace/upbeat-shtern4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"387.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"38c7e78f-146b-4699-84f4-a8404752cbe1\"}\n"} -{"Time":"2022-12-07T09:15:33.265375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.265 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56654\", \"path\": \"/api/v2/workspacebuilds/83d31ca2-38b6-4423-8af7-65c27fd3db93/state\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"300.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"42e33e3b-e15f-4aa6-b334-4c2371d2b4a7\"}\n"} -{"Time":"2022-12-07T09:15:33.265471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:33.265 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:33.266214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:33.266235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull","Output":"--- PASS: TestStatePull (0.00s)\n"} -{"Time":"2022-12-07T09:15:33.266242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Output":" --- PASS: TestStatePull/File (1.47s)\n"} -{"Time":"2022-12-07T09:15:33.266246+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestStatePull/File","Elapsed":1.47} -{"Time":"2022-12-07T09:15:33.266254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Output":" --- PASS: TestStatePull/Stdout (1.29s)\n"} -{"Time":"2022-12-07T09:15:33.266258+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestStatePull/Stdout","Elapsed":1.29} -{"Time":"2022-12-07T09:15:33.266263+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestStatePull","Elapsed":0} -{"Time":"2022-12-07T09:15:33.266268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit"} -{"Time":"2022-12-07T09:15:33.266281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":"=== CONT TestTemplateCreate/WithParameterExceedingCharLimit\n"} -{"Time":"2022-12-07T09:15:33.269846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" t.go:81: 2022-12-07 08:15:33.269 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56838\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"117.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1fe5e085-5fd2-4fcf-af6a-4114c32d795c\"}\n"} -{"Time":"2022-12-07T09:15:33.270272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" t.go:81: 2022-12-07 08:15:33.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56838\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"65.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3889b5f5-3ac9-4c1a-85fd-e53d28485857\"}\n"} -{"Time":"2022-12-07T09:15:33.272177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" t.go:81: 2022-12-07 08:15:33.272 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56838\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.667µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"662d7f3b-48ec-4b3d-b231-50006b074a06\"}\n"} -{"Time":"2022-12-07T09:15:33.272321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" t.go:81: 2022-12-07 08:15:33.272 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56838\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f41e4392-29d9-4a35-a71a-06fef9048a34\"}\n"} -{"Time":"2022-12-07T09:15:33.272849+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.272852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.272854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.272 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.273408+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit"} -{"Time":"2022-12-07T09:15:33.273432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":"=== CONT TestTemplateCreate/WithParameterExceedingCharLimit\n"} -{"Time":"2022-12-07T09:15:33.273438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" t.go:81: 2022-12-07 08:15:33.273 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56838\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"759.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a38a96bb-8e51-4ca7-bd2c-4f796cbe6f4e\"}\n"} -{"Time":"2022-12-07T09:15:33.273629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" t.go:81: 2022-12-07 08:15:33.273 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:33.273638+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.27364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.273641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.273 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.273643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.273 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.274309+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit"} -{"Time":"2022-12-07T09:15:33.274322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":"=== CONT TestTemplateCreate/WithParameterExceedingCharLimit\n"} -{"Time":"2022-12-07T09:15:33.274327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:33.274346+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:33.27435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:33.277904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.277 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"182.084µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"84bba99b-5e1c-4f5f-8f7e-d7699692dcf2\"}\n"} -{"Time":"2022-12-07T09:15:33.27845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.278 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"119.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b52abcc2-783f-4d63-80b3-e470d461f12b\"}\n"} -{"Time":"2022-12-07T09:15:33.279335+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.279341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.279343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.279 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"590.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6541377c-ed86-4d0e-9ed1-72d21ccf5a5d\"}\n"} -{"Time":"2022-12-07T09:15:33.280858+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:33.280862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:33.280864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.280 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.667µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"44f71115-e19a-4c31-af0d-24fc2698d5c6\"}\n"} -{"Time":"2022-12-07T09:15:33.281119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.281 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"149bca3b-71de-45ad-bfb4-0bfd5ae70634\"}\n"} -{"Time":"2022-12-07T09:15:33.281646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.281 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"407.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ddb0f97d-be0b-4eff-9ebd-e053a3d0d92d\"}\n"} -{"Time":"2022-12-07T09:15:33.281828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.281 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/organizations/6319f3f6-0918-4597-9470-6ab6ae5b9f5b/templates/my-template\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.416µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"5d5b7ed6-9286-419a-b296-114e38c20cd9\"}\n"} -{"Time":"2022-12-07T09:15:33.282815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.282 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"518.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f0be8559-8cc3-4e1b-8b6b-14cbe17c8169\"}\n"} -{"Time":"2022-12-07T09:15:33.283657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.283 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/organizations/6319f3f6-0918-4597-9470-6ab6ae5b9f5b/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"522µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0da05d3d-1ab0-4611-b10e-c64ffaf069b7\"}\n"} -{"Time":"2022-12-07T09:15:33.284154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.284 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/e7c319b9-9c9c-42db-85fc-1b14a7d4cbda\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5846f289-7782-41aa-b80b-6bd487edbd7e\"}\n"} -{"Time":"2022-12-07T09:15:33.285077+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.285081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.285083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.284 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"25753daa-1e30-4403-8d9b-b06f35ae6f76\"}\n"} -{"Time":"2022-12-07T09:15:33.286358+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.286361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.286363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.286 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"336.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c779f19f-3fa6-4e03-bd0d-e02afc2ffe63\"}\n"} -{"Time":"2022-12-07T09:15:33.288022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.288032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.288034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.287 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"567.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"13298fcb-b941-4ad5-81b4-fa8446f9af73\"}\n"} -{"Time":"2022-12-07T09:15:33.295809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:33.295816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.295819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} -{"Time":"2022-12-07T09:15:33.295821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} -{"Time":"2022-12-07T09:15:33.295823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:33.295825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplateCreateWithParameterFileNotContainingTheValue2256270717/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.295827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameterFileNotContainingTheValue2256270717/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.295829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameterFileNotContainingTheValue2256270717/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.295831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateWithParameterFileNotContainingTheValue2256270717/002/1432674328.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.295833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} -{"Time":"2022-12-07T09:15:33.295842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.295 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} -{"Time":"2022-12-07T09:15:33.303111+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.303119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.303121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.302 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.303124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.302 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.303126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.302 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.303911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.303 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"471.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e9e52d87-bd76-4d20-94e5-cc20045bd4cc\"}\n"} -{"Time":"2022-12-07T09:15:33.309591+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.309597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.309599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.309 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"455.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20d56948-6342-41ae-a6eb-f8b4a095b154\"}\n"} -{"Time":"2022-12-07T09:15:33.31217+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.312175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.312177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e483338-b3c7-43c5-a64e-52b826389035\"}\n"} -{"Time":"2022-12-07T09:15:33.31218+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.312181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.312183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.311 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0f8178f9-0201-4598-81bc-c4846edd8737\"}\n"} -{"Time":"2022-12-07T09:15:33.315029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.314 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.315039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.314 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.315042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.314 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.323781+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.323792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.323794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.323 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.323797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.323 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.3238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.323 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.323801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.323 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.323803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.323 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.32842+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.32843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.328432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.328 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7926140c-65d8-4151-9767-f6796e1e4b2f\"}\n"} -{"Time":"2022-12-07T09:15:33.334392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.334402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.334404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1a2bef0e-767a-4312-8fd7-177212124cd1\"}\n"} -{"Time":"2022-12-07T09:15:33.335795+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.335804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.335807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"22b58559-1409-4416-aa88-0371b20a8adf\"}\n"} -{"Time":"2022-12-07T09:15:33.336868+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.336872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.336873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.336 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"682b3104-bad9-4651-a5b5-0df9fa619612\"}\n"} -{"Time":"2022-12-07T09:15:33.342838+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:33.342846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.342848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.342 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.084µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:33.345898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.345 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} -{"Time":"2022-12-07T09:15:33.345909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.345 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} -{"Time":"2022-12-07T09:15:33.353032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.353038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.35304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.352 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1951f9d2-b62b-4e7b-9685-3052b009c3ed\"}\n"} -{"Time":"2022-12-07T09:15:33.353043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.352 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.353045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.352 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.353047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.353 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.35305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.353 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.353102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.353 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.359993+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.360001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.360002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.359 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"258.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fb2b17fe-8797-4228-93f1-fa133941c6c0\"}\n"} -{"Time":"2022-12-07T09:15:33.362667+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.362671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.362673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"492.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16acc4c3-0be5-480c-826a-9ce2ca8346d5\"}\n"} -{"Time":"2022-12-07T09:15:33.365601+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.365606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.365608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.363 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"406.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fa69ce3c-df50-4f5e-84bb-f285078c58d9\"}\n"} -{"Time":"2022-12-07T09:15:33.365611+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.365612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.365614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.364 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.365616+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.364 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.365618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.364 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.36562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.364 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.365621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.365 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.376257+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.376264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.376266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.373 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.376268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.373 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.37627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.373 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.376272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.373 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.376274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.373 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.37759+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:33.377595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:33.377597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.377 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:33.378281+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.378285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.378286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ed09f7cc-8841-4a78-8128-7ea2cee2c0a9\"}\n"} -{"Time":"2022-12-07T09:15:33.384311+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.384338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.384344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.384 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"323.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"edba6eef-10a9-4519-8845-beab6367a598\"}\n"} -{"Time":"2022-12-07T09:15:33.385807+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.385814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.385816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.385 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"315.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"94ab2824-b1b4-4744-af78-ad62061b33c8\"}\n"} -{"Time":"2022-12-07T09:15:33.386886+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.386891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.386893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"332.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"71431117-8478-405e-b7bd-efcf2fca5a70\"}\n"} -{"Time":"2022-12-07T09:15:33.396702+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:33.396708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.39671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.395 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} -{"Time":"2022-12-07T09:15:33.396715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.396717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.396719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.396721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.396723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} -{"Time":"2022-12-07T09:15:33.396725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} -{"Time":"2022-12-07T09:15:33.396727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:33.396729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:33.39673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:33.396732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:33.396734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"request_id\": \"1a88d2ea-7613-4571-bcc5-63f74173f47b\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:33.396735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"request_id\": \"1a88d2ea-7613-4571-bcc5-63f74173f47b\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:33.396737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"request_id\": \"1a88d2ea-7613-4571-bcc5-63f74173f47b\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:33.396739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\", \"request_id\": \"1a88d2ea-7613-4571-bcc5-63f74173f47b\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:33.396741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.396 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:186\u003e\t(*Runner).Run\tsending FailedJob\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} -{"Time":"2022-12-07T09:15:33.397102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.396: cmd: stdout: \"\\x1b[1A\\r✔ Queued [127ms]\"\n"} -{"Time":"2022-12-07T09:15:33.397106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.396: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:33.397108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.396: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} -{"Time":"2022-12-07T09:15:33.397109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.396: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:33.397116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.396: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [50ms]\"\n"} -{"Time":"2022-12-07T09:15:33.397118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.396: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:33.404993+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.405066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.405073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.404 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.40508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.404 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.405085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.404 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.40509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.404 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.405108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.404 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.409923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.409936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.409942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.409 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"657.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf8dfb3b-0356-43f0-ae91-2f8f3774c5cb\"}\n"} -{"Time":"2022-12-07T09:15:33.410094+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.410104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.410107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.557125ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"6f4a6221-c344-46e2-8182-81fe21e53e96\"}\n"} -{"Time":"2022-12-07T09:15:33.411056+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.411094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.411106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"495.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8fa6b038-3b97-455f-8807-15d39c98a2c0\"}\n"} -{"Time":"2022-12-07T09:15:33.413118+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.413124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.413126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.413 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.155667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"67649fcb-dc92-4ff1-83c9-d2ae5f688a34\"}\n"} -{"Time":"2022-12-07T09:15:33.415189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.415 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.415194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.415 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.415198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.415 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.415279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.415 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.415294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.424174+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.424186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.424188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.424 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.424191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.424 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.424198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.424 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d0e7bf76-b505-437c-95b1-f879f50559aa\"}\n"} -{"Time":"2022-12-07T09:15:33.428015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:33.428026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:33.428029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.428031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.428034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:33.428036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.428038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"size_bytes\": 41, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.42804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"size_bytes\": 41, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.428042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/1812325471.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.428044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.428047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.428 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:33.428341+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.428345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.428348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.428 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"18ea18aa-1344-49e3-989a-8fa02f155be1\"}\n"} -{"Time":"2022-12-07T09:15:33.434902+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.43491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.434913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.434 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"312.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"406b0ab1-a2f1-49ab-af09-2d398e11e82a\"}\n"} -{"Time":"2022-12-07T09:15:33.436898+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.436907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.436909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.436 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/f5175f12-f4da-43f7-a285-1f22a363c655\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"430.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"719ece89-bbb6-479f-bc39-f74d0251b7bd\"}\n"} -{"Time":"2022-12-07T09:15:33.436993+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.436996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.436997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.436 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0bd5a90a-c48d-4f27-90ea-d414087d3b6b\"}\n"} -{"Time":"2022-12-07T09:15:33.437862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.437865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.437867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.437 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ef01b924-839c-4389-8c30-8aa22cb3d405\"}\n"} -{"Time":"2022-12-07T09:15:33.437871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.437 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5115622-8bc5-4b6c-bded-285bb1e24f7b\"}\n"} -{"Time":"2022-12-07T09:15:33.438411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templates/a8cc2c71-95d9-4593-8c1e-9a96f840ad30\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31428615-dc2d-4c55-8501-cf52e5c42d29\"}\n"} -{"Time":"2022-12-07T09:15:33.439123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.438 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ceb22a53-18dc-413b-96d0-f10e8012f252\"}\n"} -{"Time":"2022-12-07T09:15:33.439129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" schedule_test.go:332: waiting for workspace build job e70dcb55-6c56-471a-8b42-154245ddc071\n"} -{"Time":"2022-12-07T09:15:33.446812+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:33.446837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.446843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.446 [DEBUG]\t(provisionerd-loving_carson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:470\u003e\t(*Server).FailJob\tFailJob starting\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} -{"Time":"2022-12-07T09:15:33.446849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.446 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} -{"Time":"2022-12-07T09:15:33.446854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.446 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} -{"Time":"2022-12-07T09:15:33.446861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.446 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:191\u003e\t(*Runner).Run\tsent FailedJob\t{\"job_id\": \"c5dd719a-459b-4657-b67c-e65bf5acf5ac\"}\n"} -{"Time":"2022-12-07T09:15:33.447163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.447 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/templateversions/c8062831-8e1e-47e2-b33a-c621aaaaafc1/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.420917ms\", \"status_code\": 101, \"latency_ms\": 277, \"request_id\": \"1a88d2ea-7613-4571-bcc5-63f74173f47b\"}\n"} -{"Time":"2022-12-07T09:15:33.448296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.448 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/templateversions/c8062831-8e1e-47e2-b33a-c621aaaaafc1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"428.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c2db4e8d-a3b5-4627-87df-2a293b946b55\"}\n"} -{"Time":"2022-12-07T09:15:33.448527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.448: cmd: stdout: \"\\x1b[1A\\r✘ Cleaning Up [101ms]\"\n"} -{"Time":"2022-12-07T09:15:33.448798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.448 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/templateversions/c8062831-8e1e-47e2-b33a-c621aaaaafc1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e3ac096a-d888-4342-b850-99119fd97e9b\"}\n"} -{"Time":"2022-12-07T09:15:33.449332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/templateversions/c8062831-8e1e-47e2-b33a-c621aaaaafc1/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"286.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5ad14c43-c638-4df9-bb88-a66d2c87452b\"}\n"} -{"Time":"2022-12-07T09:15:33.449755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56817\", \"path\": \"/api/v2/templateversions/c8062831-8e1e-47e2-b33a-c621aaaaafc1/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"269.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5e281803-01d4-4c35-96fb-f39a35b9c317\"}\n"} -{"Time":"2022-12-07T09:15:33.449848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.449: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:33.449856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.449: cmd: stdout: \" Attempting to read the variables from the parameter file. \\r\"\n"} -{"Time":"2022-12-07T09:15:33.449858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.449: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:33.450156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.450: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:33.450162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.450: cmd: stdout: \" This template has required variables! They are scoped to \"\n"} -{"Time":"2022-12-07T09:15:33.450163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.450: cmd: stdout: \" the template, and not viewable after being set. \"\n"} -{"Time":"2022-12-07T09:15:33.450165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.450: cmd: stdout: \"\\r\"\n"} -{"Time":"2022-12-07T09:15:33.450167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:80: 2022-12-07 08:15:33.450: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:33.450442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.450 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:33.451298+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.451316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.451318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.451322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:33.451324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.451326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:33.451328+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:33.45133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:33.451522+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.451526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.451527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.45153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:33.451532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideOK1102854830/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.451534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideOK1102854830/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.451536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideOK1102854830/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.45154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"workspace_name\": \"busy-nightingale9\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:33.45168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.451684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.451 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.454376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:33.454382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:33.454384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"285.541µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7f4d53ce-1964-400e-9f9c-01a94c27c460\"}\n"} -{"Time":"2022-12-07T09:15:33.454548+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.454557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.454559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"466.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d35bc67-b483-4b8e-b6ad-511ea37e0496\"}\n"} -{"Time":"2022-12-07T09:15:33.454563+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:33.454565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:33.454567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"45.709µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7bef34a6-742a-47df-b8d2-828dcee854f7\"}\n"} -{"Time":"2022-12-07T09:15:33.455154+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.455161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.455163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.455 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.455166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.455 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.455168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.455 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"3047f987-30ef-44d7-94f7-3888e4079343\"}\n"} -{"Time":"2022-12-07T09:15:33.457192+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:33.457213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:33.457216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.375µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"a9acaeb7-6cfd-40cb-9edc-fe2d3b36dae0\"}\n"} -{"Time":"2022-12-07T09:15:33.457355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c37eea11-1376-4909-9862-605267975660\"}\n"} -{"Time":"2022-12-07T09:15:33.458038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"443.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ac610798-0fda-4ff0-a8d9-b3d58028af9a\"}\n"} -{"Time":"2022-12-07T09:15:33.458359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.458 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/organizations/e91b6d6a-25e4-4153-863f-a156e345bea7/templates/my-template\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"cd1b3db6-c028-46c2-a38d-fc2c11803235\"}\n"} -{"Time":"2022-12-07T09:15:33.459363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" templatecreate_test.go:116: 2022-12-07 08:15:33.459: cmd: matched \"Create and upload\" = \"\u003e Create and upload\"\n"} -{"Time":"2022-12-07T09:15:33.45937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" templatecreate_test.go:117: 2022-12-07 08:15:33.459: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:33.459401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.459: cmd: stdout: \"\u003e Create and upload \\\"/tmp/TestTemplateCreateWithParameter508008006/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:33.460428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.459 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0d510af5-bb88-467b-ae73-8f820f11d7f7\"}\n"} -{"Time":"2022-12-07T09:15:33.460433+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.460435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.460437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"371.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7b08c802-ba57-426b-b910-86c35e77dee1\"}\n"} -{"Time":"2022-12-07T09:15:33.460937+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:33.46094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:33.460942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/organizations/e91b6d6a-25e4-4153-863f-a156e345bea7/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"461.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"39132db9-bca3-43b7-890b-63401de20324\"}\n"} -{"Time":"2022-12-07T09:15:33.461003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.460: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:33.46119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.461 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/57a5645a-f5a1-44b4-8314-ec42bef02972\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5479846c-56fa-47b5-9d01-c5a1ad74750c\"}\n"} -{"Time":"2022-12-07T09:15:33.462728+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.462732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.462734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.462 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"498.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9ca096bd-18b6-40d6-bfc1-a84ef725b131\"}\n"} -{"Time":"2022-12-07T09:15:33.465777+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.465784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.465786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.465 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"481.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b24ecb59-fc2f-4c3d-b5e0-14611f20142d\"}\n"} -{"Time":"2022-12-07T09:15:33.466063+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.466066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.466068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.465 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.46607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.465 [DEBUG]\t(provisionerd-magical_solomon0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.466072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.465 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"5cf8a646-4a82-4476-9b43-207917bc5443\"}\n"} -{"Time":"2022-12-07T09:15:33.477377+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:33.477384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:33.477386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.477 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.333µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:33.478197+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.478202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.478204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.478 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/b530656d-137b-4084-a379-973f872ae887\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"440.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7bfb5a7b-b234-4a83-91b2-64469648fede\"}\n"} -{"Time":"2022-12-07T09:15:33.478761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:33.478764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:33.478766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.478 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.478768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.478 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.480499+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:33.480522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:33.480525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.480 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"46.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"a6ce7a5d-c9fd-4b1c-a881-e2160d9d9231\"}\n"} -{"Time":"2022-12-07T09:15:33.480527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.480 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d69981d-e0f7-41bc-92ca-62661cd852ac\"}\n"} -{"Time":"2022-12-07T09:15:33.481056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.481 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/users/me/workspace/tender-chatelet5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"309.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31d6e7b2-c4bd-4b7e-aa4b-f149723c7771\"}\n"} -{"Time":"2022-12-07T09:15:33.481695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.481 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/users/me/workspace/tender-chatelet5/builds/1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1fefca8b-142a-418b-a79d-15dd3478497a\"}\n"} -{"Time":"2022-12-07T09:15:33.482316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.482 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspaces/fafae29d-5989-49eb-83cb-671a770c5a3c/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"518µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"13a86621-e896-4761-b580-d73b87756711\"}\n"} -{"Time":"2022-12-07T09:15:33.482743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:33.482 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/58f53ab6-ef50-4fd4-9836-8f04bcf7dceb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d387e7c2-bf44-4450-ae7d-18d3a0ca2d36\"}\n"} -{"Time":"2022-12-07T09:15:33.484898+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.484904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.484906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.484 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"225.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ab788b40-4d56-454d-acb2-387e47e5352b\"}\n"} -{"Time":"2022-12-07T09:15:33.487317+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.487331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.487334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.487 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspacebuilds/85a7846d-ab07-4abe-ad02-8cb0b108ddd7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24d5da2b-cee8-4301-8edb-28184b5f3a13\"}\n"} -{"Time":"2022-12-07T09:15:33.488797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.487 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56787\", \"path\": \"/api/v2/workspaces/5f008cad-cb4e-4014-8716-b4e287b77c9d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2fd08319-79d2-4f01-b0df-fe6163c2a35d\"}\n"} -{"Time":"2022-12-07T09:15:33.490062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" t.go:81: 2022-12-07 08:15:33.489 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:33.490076+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.490077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.490079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.489 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4ac492ac-8b62-4b70-bb4c-c4ddeb82b099\"}\n"} -{"Time":"2022-12-07T09:15:33.490295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration"} -{"Time":"2022-12-07T09:15:33.490303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":"=== CONT TestScheduleOverride/InvalidDuration\n"} -{"Time":"2022-12-07T09:15:33.490305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:33.490307+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:33.490308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.4928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.492 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"108.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cf4c71b8-c018-4f77-88bc-f45d3ba163c1\"}\n"} -{"Time":"2022-12-07T09:15:33.493134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.492 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"36.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"acb5fa0d-2fe2-46c4-91e0-8b97344eaef1\"}\n"} -{"Time":"2022-12-07T09:15:33.495757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.041µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"d97da3a8-8eed-4b5a-9720-3d356b047b2b\"}\n"} -{"Time":"2022-12-07T09:15:33.495762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ef73821-0cf6-4b22-8e58-f74ec0b28b4c\"}\n"} -{"Time":"2022-12-07T09:15:33.496553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.496 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"521.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9933630c-7300-4f9c-b8c8-b6580ee89d63\"}\n"} -{"Time":"2022-12-07T09:15:33.496677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.496 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/organizations/1bf238fd-05e5-47ae-b110-1456fc0308de/templates/my-template\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.333µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"27e78cf0-03b4-40d9-ba43-30b781b1c333\"}\n"} -{"Time":"2022-12-07T09:15:33.496794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" templatecreate_test.go:155: 2022-12-07 08:15:33.496: cmd: matched \"Create and upload\" = \"\u003e Create and upload\"\n"} -{"Time":"2022-12-07T09:15:33.496799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" templatecreate_test.go:156: 2022-12-07 08:15:33.496: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:33.49699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.496: cmd: stdout: \"\u003e Create and upload \\\"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:33.497491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.497 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7263ed70-fd60-4d8a-a3c3-29a7bbd747ba\"}\n"} -{"Time":"2022-12-07T09:15:33.49843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.498 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/organizations/1bf238fd-05e5-47ae-b110-1456fc0308de/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"644.916µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9b478511-b110-4565-9ade-9af198a20466\"}\n"} -{"Time":"2022-12-07T09:15:33.498535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.498: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:33.498801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.498 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/3fa5a5db-280c-4126-8537-cacd9fce88e0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b622995b-34ec-456a-b221-ae9d3c9b4fdf\"}\n"} -{"Time":"2022-12-07T09:15:33.501861+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.501865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.501867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.501 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.501869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.501 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.501871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.501 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.502093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.501 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.510806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"781.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"972247be-cfdb-4d27-be2e-d4df1b2742cc\"}\n"} -{"Time":"2022-12-07T09:15:33.515394+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.515402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.515404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.515 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"600.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a8994430-7fa4-47ec-bea4-8909d339da9a\"}\n"} -{"Time":"2022-12-07T09:15:33.529875+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:33.529886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:33.529888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.528 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.529891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.528 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.529893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.528 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.529908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.528 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.52991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.528 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.529912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.528 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.529914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.528 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.529915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:33.529917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:33.529919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:33.529922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:33.529923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:33.529925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:33.529927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:33.529928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:33.529931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.529933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.529 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.535394+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.535401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.535402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"685bf985-aaa5-4c89-8c82-c27fceb33602\"}\n"} -{"Time":"2022-12-07T09:15:33.539667+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.539673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.539675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.539 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"455.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0d3ced8-783b-47fc-b397-a365757b4bc1\"}\n"} -{"Time":"2022-12-07T09:15:33.552099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.552109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.552111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.552 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.552226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.552 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.552235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.552 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.553645+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:33.553672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:33.553679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.553 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:33.559584+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.559595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.559598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.559 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"338.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ebb79ae9-d70b-433b-b264-dcb86fdea724\"}\n"} -{"Time":"2022-12-07T09:15:33.564425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.564432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.564434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.564 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3597bab7-01bc-4858-afab-d73e2cdabf09\"}\n"} -{"Time":"2022-12-07T09:15:33.5825+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:33.582511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:33.582514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.582516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.582518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.58252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.582522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.582524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:33.582525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:33.582527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:33.582529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:33.582531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:33.582532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:33.582534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.581 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.584369+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.584379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.584382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.584 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"333.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90e25260-a1f2-4391-bc8d-5429d81bd39e\"}\n"} -{"Time":"2022-12-07T09:15:33.589457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.589464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.589466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"45969558-369e-40a1-bd07-f9df933be78d\"}\n"} -{"Time":"2022-12-07T09:15:33.592391+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:33.592397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.592399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.592 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:33.60366+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.603671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.603673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.603676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.603678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.60368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.603681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.604525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:33.60453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:33.604532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} -{"Time":"2022-12-07T09:15:33.604537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.603 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} -{"Time":"2022-12-07T09:15:33.60454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.603 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:33.604548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.60455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.603 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.604552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.604 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.604554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.604 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/621695553.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.604556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.604 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} -{"Time":"2022-12-07T09:15:33.604557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.604 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} -{"Time":"2022-12-07T09:15:33.610094+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.610142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.610146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.609 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"583.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fdd73114-5416-412a-8885-21470079e5b0\"}\n"} -{"Time":"2022-12-07T09:15:33.614875+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.614891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.614894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.614 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"983be1f2-15a3-42cc-83d0-674cb026cfcc\"}\n"} -{"Time":"2022-12-07T09:15:33.633214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:33.633231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:33.633234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.633237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [INFO]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:33.633239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [INFO]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:33.633242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.633244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.633245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.633247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.633313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"35e55bf8-5576-49a8-836d-7d9331f67a0a\"}\n"} -{"Time":"2022-12-07T09:15:33.633319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/e7c319b9-9c9c-42db-85fc-1b14a7d4cbda/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.235084ms\", \"status_code\": 101, \"latency_ms\": 348, \"request_id\": \"26e4086d-7ace-4830-8844-7fdaafad35db\"}\n"} -{"Time":"2022-12-07T09:15:33.634497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/e7c319b9-9c9c-42db-85fc-1b14a7d4cbda\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"189e7e10-93a7-4cf9-abe3-1a6e6d08af48\"}\n"} -{"Time":"2022-12-07T09:15:33.634687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.634714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.63472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"646.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e4490bec-2f5c-41f9-9427-beb4cef619f5\"}\n"} -{"Time":"2022-12-07T09:15:33.635174+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:33.635184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:33.635189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/e7c319b9-9c9c-42db-85fc-1b14a7d4cbda\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eeec573c-4604-40c6-9a8b-04a3bb80a84d\"}\n"} -{"Time":"2022-12-07T09:15:33.635451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/e7c319b9-9c9c-42db-85fc-1b14a7d4cbda/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"196588ce-4745-47fa-9324-82e2ef414f16\"}\n"} -{"Time":"2022-12-07T09:15:33.635863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/e7c319b9-9c9c-42db-85fc-1b14a7d4cbda/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6cc25f98-2906-48b4-9f0c-00ceebf5861b\"}\n"} -{"Time":"2022-12-07T09:15:33.636268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/e7c319b9-9c9c-42db-85fc-1b14a7d4cbda/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2bbd9791-d314-4b7d-a9d7-3cf51905979c\"}\n"} -{"Time":"2022-12-07T09:15:33.636955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/organizations/6319f3f6-0918-4597-9470-6ab6ae5b9f5b/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"25e01f21-e2f2-4b84-af58-4367e4ba7ec2\"}\n"} -{"Time":"2022-12-07T09:15:33.639489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.638 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.25µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"b13c904b-99d7-4861-a34c-f043d33a0320\"}\n"} -{"Time":"2022-12-07T09:15:33.639501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.639 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b4fb9b0-bbb6-401c-b257-6c406ef4b4ca\"}\n"} -{"Time":"2022-12-07T09:15:33.639504+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.639505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.639507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.639 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9ea0bcb5-b990-48cc-acdd-fd450bbe8ed8\"}\n"} -{"Time":"2022-12-07T09:15:33.640193+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:33.640205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:33.640208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.639 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"af020eb7-8206-4472-93a1-997860d539af\"}\n"} -{"Time":"2022-12-07T09:15:33.640838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.640 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/organizations/6319f3f6-0918-4597-9470-6ab6ae5b9f5b/templates/my-template\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dabc5232-1b6f-4304-b4fb-a21e3d49dd76\"}\n"} -{"Time":"2022-12-07T09:15:33.641187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.640 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templates/91b4defa-b4c9-49ea-bd5b-8cb98568fdf8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"329.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a57a88d4-5483-470e-a869-84ef83e71f19\"}\n"} -{"Time":"2022-12-07T09:15:33.642923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:33.642936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.642938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} -{"Time":"2022-12-07T09:15:33.642941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} -{"Time":"2022-12-07T09:15:33.642944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:33.642946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.642948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.642952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.643252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/1192496900.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.643261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.642 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} -{"Time":"2022-12-07T09:15:33.643263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.643 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} -{"Time":"2022-12-07T09:15:33.644259+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:33.644267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:33.64427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.644 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.541µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"5850f7dd-fcba-4b4d-9f85-904def0ac90e\"}\n"} -{"Time":"2022-12-07T09:15:33.644274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.644 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"99.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c8c4844f-1141-48c3-9e5d-85ec3f038c15\"}\n"} -{"Time":"2022-12-07T09:15:33.644915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.644 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"433.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"42136b84-b453-41f8-9e6d-a6dd69315894\"}\n"} -{"Time":"2022-12-07T09:15:33.645267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.644 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/organizations/6319f3f6-0918-4597-9470-6ab6ae5b9f5b/templates/my-template\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"32.125µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"6fc472ec-a010-4c33-ac70-fd76df65974f\"}\n"} -{"Time":"2022-12-07T09:15:33.647613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.646 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"948.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e3b9888b-334a-49c2-963c-016aa35298ff\"}\n"} -{"Time":"2022-12-07T09:15:33.64794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.647 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/organizations/6319f3f6-0918-4597-9470-6ab6ae5b9f5b/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"813.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0e42bc43-94ec-45bf-b1c8-48a7027106f4\"}\n"} -{"Time":"2022-12-07T09:15:33.648749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:33.648 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/a778338b-bb13-40d0-8e5a-0f8be48cf282\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"542.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3610346-9096-40c3-96f0-90f3d4c4c63a\"}\n"} -{"Time":"2022-12-07T09:15:33.652423+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:33.65243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:33.652432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.652 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.958µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:33.654762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} -{"Time":"2022-12-07T09:15:33.654855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.654 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} -{"Time":"2022-12-07T09:15:33.655322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.65537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.655375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.655 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.655378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.655 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.655383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.655 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.655384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.655 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.655393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.655 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.661042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"464.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e2c6ba17-1e7e-46de-8de8-929b836b9987\"}\n"} -{"Time":"2022-12-07T09:15:33.665214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.665225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.665227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.664 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"537.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3f540a4b-d22f-487b-9040-65f6fd4c8e74\"}\n"} -{"Time":"2022-12-07T09:15:33.684695+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.684711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.684714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.684 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6e775ef-ef4d-4a2f-afe3-0a699558a203\"}\n"} -{"Time":"2022-12-07T09:15:33.690922+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.690931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.690933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"533.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d107ea1b-f4da-4224-b9fa-edbdd7689c45\"}\n"} -{"Time":"2022-12-07T09:15:33.690946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.690952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.690956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:33.690958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.691129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.691142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.691144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.690 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"workspace_name\": \"lucid-roentgen1\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:33.691146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.691 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.691149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.691 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.691598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:33.691604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.691606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.691 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"9.417µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:33.69338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.693 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} -{"Time":"2022-12-07T09:15:33.693492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.693 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} -{"Time":"2022-12-07T09:15:33.706915+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.706926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.706929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.706931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-beautiful_poitras2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.706933+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:33.706935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:33.706936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} -{"Time":"2022-12-07T09:15:33.706943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.706945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.706947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.706949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.70695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} -{"Time":"2022-12-07T09:15:33.706952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} -{"Time":"2022-12-07T09:15:33.706954+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.706974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.706976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.706 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"e65bd8aa-7820-48e1-9a3c-e6b1ae1fa3ef\"}\n"} -{"Time":"2022-12-07T09:15:33.706978+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:33.706979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:33.706981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:33.706982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:33.706984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:33.706986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:33.706987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"request_id\": \"f574ec3c-9b5a-4092-98c5-7e9ee1f6a40b\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:33.706994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"request_id\": \"f574ec3c-9b5a-4092-98c5-7e9ee1f6a40b\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:33.706996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"request_id\": \"f574ec3c-9b5a-4092-98c5-7e9ee1f6a40b\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:33.706997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\", \"request_id\": \"f574ec3c-9b5a-4092-98c5-7e9ee1f6a40b\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:33.706999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.706 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:186\u003e\t(*Runner).Run\tsending FailedJob\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} -{"Time":"2022-12-07T09:15:33.707407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.707: cmd: stdout: \"\\x1b[1A\\r✔ Queued [142ms]\"\n"} -{"Time":"2022-12-07T09:15:33.707416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.707: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:33.708151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.707: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [1ms]\"\n"} -{"Time":"2022-12-07T09:15:33.708155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.707: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:33.708156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.707: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [50ms]\"\n"} -{"Time":"2022-12-07T09:15:33.708158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.707: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:33.714466+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.714476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.714478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.714 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6154c79f-61a7-4204-92cc-a7bf63ccc38c\"}\n"} -{"Time":"2022-12-07T09:15:33.715071+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK"} -{"Time":"2022-12-07T09:15:33.715097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":"=== CONT TestScheduleOverride/OK\n"} -{"Time":"2022-12-07T09:15:33.715104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.715 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspacebuilds/55d1ca60-261b-497b-a0d9-25213c661cfe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a536171-716e-4ab0-a721-295a2cd7b7e5\"}\n"} -{"Time":"2022-12-07T09:15:33.715624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.715 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspaces/eaffda38-5e56-4714-bd85-8e8db6530ad1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8a1b511-dc91-4aaa-abe6-1cc7904c2bbc\"}\n"} -{"Time":"2022-12-07T09:15:33.718731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.718 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"34.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2728783f-79f9-4a1e-bdf9-5b690673a6ea\"}\n"} -{"Time":"2022-12-07T09:15:33.718824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.718 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"32.084µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"01077183-78c0-464d-a802-6119c689d969\"}\n"} -{"Time":"2022-12-07T09:15:33.719976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.719 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/users/me/workspace/busy-nightingale9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"606µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a44e448-9686-4698-a67e-b206d8537238\"}\n"} -{"Time":"2022-12-07T09:15:33.720966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.720 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspaces/eaffda38-5e56-4714-bd85-8e8db6530ad1/extend\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"912.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"976d7e63-45c7-499e-9f04-eb096b7596f8\"}\n"} -{"Time":"2022-12-07T09:15:33.723377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.722 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/users/me/workspace/busy-nightingale9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"629.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"725340c1-cb51-4e62-b544-d78cff584c7f\"}\n"} -{"Time":"2022-12-07T09:15:33.725298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.725 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56752\", \"path\": \"/api/v2/workspaces/eaffda38-5e56-4714-bd85-8e8db6530ad1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"611.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e417d7c4-35f5-4019-a252-ef5fc41b2b32\"}\n"} -{"Time":"2022-12-07T09:15:33.725799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" t.go:81: 2022-12-07 08:15:33.725 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:33.727127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:33.727136+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:33.727141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:33.730822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"214µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"001c25c9-e70e-452a-9427-1da704f24b8a\"}\n"} -{"Time":"2022-12-07T09:15:33.731057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"95.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9958f6ce-8fe7-4bf7-b0fb-42e403cb11d7\"}\n"} -{"Time":"2022-12-07T09:15:33.732155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.731 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"588.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"65130516-cb35-4647-b84d-711aba87ce04\"}\n"} -{"Time":"2022-12-07T09:15:33.732671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.732 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/organizations/c5fc3c05-416b-43be-9ac3-1fe76fc4b712/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"709.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3fca6063-a51c-43c4-8045-e9ad799e4b75\"}\n"} -{"Time":"2022-12-07T09:15:33.732741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" show_test.go:25: waiting for template version job fdd62948-cc68-45d4-a103-4cf539d26b72\n"} -{"Time":"2022-12-07T09:15:33.742581+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.742598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.742602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.741 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.742605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.741 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.742608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.741 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.74261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.741 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.742611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.742 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.262291ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0f061c7f-3fad-4114-9c1d-40ba1f92dca6\"}\n"} -{"Time":"2022-12-07T09:15:33.74385+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:33.743858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.743861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} -{"Time":"2022-12-07T09:15:33.743863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.743866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.743868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.74387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.743872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} -{"Time":"2022-12-07T09:15:33.743874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} -{"Time":"2022-12-07T09:15:33.743875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:33.743877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:33.743878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:33.74388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:33.743882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"request_id\": \"2e42cb68-71d4-4504-9bdc-94eb66bd2605\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:33.743889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"request_id\": \"2e42cb68-71d4-4504-9bdc-94eb66bd2605\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:33.745337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"request_id\": \"2e42cb68-71d4-4504-9bdc-94eb66bd2605\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:33.745348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\", \"request_id\": \"2e42cb68-71d4-4504-9bdc-94eb66bd2605\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:33.745351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.743 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:186\u003e\t(*Runner).Run\tsending FailedJob\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} -{"Time":"2022-12-07T09:15:33.747154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.745: cmd: stdout: \"\\x1b[1A\\r✔ Queued [143ms]\"\n"} -{"Time":"2022-12-07T09:15:33.747165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.745: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:33.747168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.745: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [1ms]\"\n"} -{"Time":"2022-12-07T09:15:33.747169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.745: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:33.747171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.745: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [50ms]\"\n"} -{"Time":"2022-12-07T09:15:33.747173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.745: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:33.758485+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:33.758498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:33.758501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.757 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:470\u003e\t(*Server).FailJob\tFailJob starting\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} -{"Time":"2022-12-07T09:15:33.758503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} -{"Time":"2022-12-07T09:15:33.758505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} -{"Time":"2022-12-07T09:15:33.758507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.757 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:191\u003e\t(*Runner).Run\tsent FailedJob\t{\"job_id\": \"1f352009-2855-4573-9202-fcb9c4bb8b51\"}\n"} -{"Time":"2022-12-07T09:15:33.758509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/57a5645a-f5a1-44b4-8314-ec42bef02972/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.665625ms\", \"status_code\": 101, \"latency_ms\": 295, \"request_id\": \"f574ec3c-9b5a-4092-98c5-7e9ee1f6a40b\"}\n"} -{"Time":"2022-12-07T09:15:33.759307+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:33.759317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:33.75932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"336.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d65b1001-28be-43e6-8e8f-5e0ed80a3423\"}\n"} -{"Time":"2022-12-07T09:15:33.761151+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:33.761157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:33.761159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/57a5645a-f5a1-44b4-8314-ec42bef02972\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"59b051c4-169c-4471-8511-83279f10ddaf\"}\n"} -{"Time":"2022-12-07T09:15:33.763716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.761: cmd: stdout: \"\\x1b[1A\\r✘ Cleaning Up [103ms]\"\n"} -{"Time":"2022-12-07T09:15:33.763723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.761 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/57a5645a-f5a1-44b4-8314-ec42bef02972\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"342.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"505391fd-ea14-4506-b14c-2e41d0cece35\"}\n"} -{"Time":"2022-12-07T09:15:33.763726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.763 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/57a5645a-f5a1-44b4-8314-ec42bef02972/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.790708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c72f4255-106a-4152-904c-34985165eaa9\"}\n"} -{"Time":"2022-12-07T09:15:33.763728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.763 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/57a5645a-f5a1-44b4-8314-ec42bef02972/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"48d1ebda-1c60-4b43-b535-d9efa391a434\"}\n"} -{"Time":"2022-12-07T09:15:33.763925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.763: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:33.763954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.763: cmd: stdout: \" This template has required variables! They are scoped to \"\n"} -{"Time":"2022-12-07T09:15:33.763984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.763: cmd: stdout: \" the template, and not viewable after being set. \"\n"} -{"Time":"2022-12-07T09:15:33.763988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.763: cmd: stdout: \"\\r\"\n"} -{"Time":"2022-12-07T09:15:33.763992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.763: cmd: stdout: \"\\x1b[1mvar.region\\x1b[0m\"\n"} -{"Time":"2022-12-07T09:15:33.764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.763: cmd: stdout: \" description\"\n"} -{"Time":"2022-12-07T09:15:33.764004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.763: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:33.764446+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.764453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.764457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.764 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d8d9a4cb-e342-40f7-9a93-d749d43bbe45\"}\n"} -{"Time":"2022-12-07T09:15:33.765655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:33.76566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:33.765671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" templatecreate_test.go:116: 2022-12-07 08:15:33.764: cmd: matched \"Enter a value:\" = \" \\\"/tmp/TestTemplateCreateWithParameter508008006/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [142ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [1ms]\\r\\n⧗ \\x1b[;mParsing template parameters\\x1b[0m \\r\\n\\x1b[1A\\r✔ Parsing template parameters [50ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✘ Cleaning Up [103ms]\\r\\n \\r\\n This template has required variables! They are scoped to \\r\\n the template, and not viewable after being set. \\r\\n\\r\\r\\n\\x1b[1mvar.region\\x1b[0m\\r\\n description\\r\\n\\r\\n\u003e \\x1b[1mEnter a value:\"\n"} -{"Time":"2022-12-07T09:15:33.765675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" templatecreate_test.go:117: 2022-12-07 08:15:33.764: cmd: stdin: \"bananas\\r\"\n"} -{"Time":"2022-12-07T09:15:33.765677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/organizations/e91b6d6a-25e4-4153-863f-a156e345bea7/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"809.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e59fbeac-5c67-4ea9-89dc-56bbd6e5323c\"}\n"} -{"Time":"2022-12-07T09:15:33.766385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:33.766 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/a4d483d1-cdc5-4198-959a-64d91fb00351\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57914a10-be6e-4eee-bb6b-f3c6f743a7f3\"}\n"} -{"Time":"2022-12-07T09:15:33.767023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.766: cmd: stdout: \"\u003e \\x1b[1mEnter a value:\\x1b[0m bananas\"\n"} -{"Time":"2022-12-07T09:15:33.767028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.766: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:33.76703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:33.766: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:33.783623+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:33.78364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:33.783644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"365.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"542ea9d7-a44f-407f-b3fc-75b84c500c55\"}\n"} -{"Time":"2022-12-07T09:15:33.790056+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.790067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.79007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.789 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a139b1d-ec62-46bf-84da-754292c91b31\"}\n"} -{"Time":"2022-12-07T09:15:33.795397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.795 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.795407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:33.795409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.79541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.795 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:470\u003e\t(*Server).FailJob\tFailJob starting\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} -{"Time":"2022-12-07T09:15:33.795712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.795721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.795948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.795 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.795953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.795 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.795956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:33.795958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:33.795959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.795 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} -{"Time":"2022-12-07T09:15:33.795961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.795 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} -{"Time":"2022-12-07T09:15:33.795963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.795 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:191\u003e\t(*Runner).Run\tsent FailedJob\t{\"job_id\": \"70f6a23b-3f25-4780-9d24-c43714a5e4c8\"}\n"} -{"Time":"2022-12-07T09:15:33.796047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.795 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/3fa5a5db-280c-4126-8537-cacd9fce88e0/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296.514375ms\", \"status_code\": 101, \"latency_ms\": 296, \"request_id\": \"2e42cb68-71d4-4504-9bdc-94eb66bd2605\"}\n"} -{"Time":"2022-12-07T09:15:33.798166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.798 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/3fa5a5db-280c-4126-8537-cacd9fce88e0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"674.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a7a30f5a-1d93-4389-b5d4-fee64ecdd84e\"}\n"} -{"Time":"2022-12-07T09:15:33.798372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.798: cmd: stdout: \"\\x1b[1A\\r✘ Cleaning Up [102ms]\"\n"} -{"Time":"2022-12-07T09:15:33.799215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.798 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/3fa5a5db-280c-4126-8537-cacd9fce88e0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4ca0f072-694e-453e-9a24-8adc50d84d1e\"}\n"} -{"Time":"2022-12-07T09:15:33.799225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.799 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/3fa5a5db-280c-4126-8537-cacd9fce88e0/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"260.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96c3cc7e-83f7-4e09-9e72-3b4cf16b641c\"}\n"} -{"Time":"2022-12-07T09:15:33.799739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.799 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/3fa5a5db-280c-4126-8537-cacd9fce88e0/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b576418b-4e2b-4729-845e-9bf0f6683cde\"}\n"} -{"Time":"2022-12-07T09:15:33.800094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:33.800102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \" Attempting to read the variables from the parameter file. \\r\"\n"} -{"Time":"2022-12-07T09:15:33.800104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:33.800107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:33.800109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \" This template has required variables! They are scoped to \"\n"} -{"Time":"2022-12-07T09:15:33.80011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \" the template, and not viewable after being set. \"\n"} -{"Time":"2022-12-07T09:15:33.800112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \"\\r\"\n"} -{"Time":"2022-12-07T09:15:33.800113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.800: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:33.801511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.800 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/organizations/1bf238fd-05e5-47ae-b110-1456fc0308de/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"588.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8ec97055-8dd1-4b6d-bcc2-a70c3bde3196\"}\n"} -{"Time":"2022-12-07T09:15:33.801521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:33.801 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/4171db07-e4f7-477a-ac66-0c320d545b52\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"250.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"142c5f5d-d1eb-4ec4-addc-56d20dacc273\"}\n"} -{"Time":"2022-12-07T09:15:33.801644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:33.801: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:33.8105+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:33.810516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:33.810519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.015333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"82328f45-421b-4281-8253-c9bf14fde6f0\"}\n"} -{"Time":"2022-12-07T09:15:33.81778+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.817796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.817799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.816 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"900.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9c7721c1-373d-45e9-a5be-e903075e390b\"}\n"} -{"Time":"2022-12-07T09:15:33.829083+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:33.829104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:33.829107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.829 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:33.833755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.833 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"595.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8e7f2b7-0d78-48ef-b971-2563dda540bb\"}\n"} -{"Time":"2022-12-07T09:15:33.839478+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.839488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.83949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.839 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"416.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"941ac260-27a3-4777-85eb-bc2cf0fbc776\"}\n"} -{"Time":"2022-12-07T09:15:33.846128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.846 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.846141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.846 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"stage\": \"Stopping workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.846146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.846 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.846185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.846 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.846235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.846 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.858392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:33.858401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:33.858404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.858 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"335.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b8d81d27-21af-4ce2-a87c-2e749efbc828\"}\n"} -{"Time":"2022-12-07T09:15:33.865193+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.865205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.865207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.864 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"494085cf-ad68-4551-a195-d510d4536d16\"}\n"} -{"Time":"2022-12-07T09:15:33.879994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:33.880008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:33.880011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.879 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:33.880013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.879 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:33.880019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.879 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:33.880021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.879 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"size_bytes\": 2, \"path\": \"/tmp/TestShowExists2135269818/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.880023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.879 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"size_bytes\": 41, \"path\": \"/tmp/TestShowExists2135269818/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.880026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.879 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"size_bytes\": 41, \"path\": \"/tmp/TestShowExists2135269818/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.880028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.880 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:33.88041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.880 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:33.883598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.883 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"538.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dc44d218-17da-4a52-a29e-9732079da26f\"}\n"} -{"Time":"2022-12-07T09:15:33.889501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.889526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.889533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.889 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"326.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d63b835a-948b-4f2d-a124-0f95e9d84e6e\"}\n"} -{"Time":"2022-12-07T09:15:33.892786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.892795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.892798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.892 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:33.892888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.892 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:33.892907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.892 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:33.892957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.892 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.892967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.892 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.892971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.892 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushFile3990659550/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:33.893007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.892 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"workspace_name\": \"sweet-bassi0\", \"state_length\": 16, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:33.893098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.893 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:33.893133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.893 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.896538+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.896544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.896547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.896 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.89655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.896 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.896577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.896 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.89662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.896 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.896625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.896 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.908642+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:33.90866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:33.908663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.908 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"507.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"87dc6917-6916-4c8e-ad2d-ec82d7b47fec\"}\n"} -{"Time":"2022-12-07T09:15:33.914981+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.914988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.914991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.914 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"408.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2a7783ee-eaec-4be3-8415-4bb41259eff3\"}\n"} -{"Time":"2022-12-07T09:15:33.928317+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:33.928338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:33.928344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.928 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.625µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:33.930502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.930 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:33.930788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.930 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.933379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"279.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d768f9a6-efa0-4851-996c-218f46b3aa22\"}\n"} -{"Time":"2022-12-07T09:15:33.939475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.939482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.939484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.939 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"059e6b30-c4cc-4a8c-a023-a6f6c12ff265\"}\n"} -{"Time":"2022-12-07T09:15:33.943801+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.943806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.943808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.943 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:33.94381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.943 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.943812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.943 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:33.943814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.943 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:33.943816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.943 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:33.944428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.943 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"request_id\": \"a20a35bc-5308-4adf-ad96-9f663ad92a3b\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:33.946821+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.946826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.946828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.946 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.946841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.946 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.946843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.946 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"66266647-4bc6-43ff-a7f6-ac1e764980c2\"}\n"} -{"Time":"2022-12-07T09:15:33.959455+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:33.959465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:33.959468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a34b4eb-a283-4fab-aca3-1261cc8d73af\"}\n"} -{"Time":"2022-12-07T09:15:33.964431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.964439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.964442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.964 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/e70dcb55-6c56-471a-8b42-154245ddc071\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58f950da-e192-4f3d-912d-74135d33e24f\"}\n"} -{"Time":"2022-12-07T09:15:33.964978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.964 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b73129b3-1bde-47c8-b0e5-0101c9e36add\"}\n"} -{"Time":"2022-12-07T09:15:33.965468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.965 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"268.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f87efaa-aa15-47dd-ae44-c0d05edaee36\"}\n"} -{"Time":"2022-12-07T09:15:33.966537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.966 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/templates/a8cc2c71-95d9-4593-8c1e-9a96f840ad30\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"734.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57ea74d1-911e-4d61-bf61-e2493e3eb0b7\"}\n"} -{"Time":"2022-12-07T09:15:33.966999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.966 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"151b6b24-a6d5-45fc-93b8-efebc26b17c6\"}\n"} -{"Time":"2022-12-07T09:15:33.967086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" schedule_test.go:333: waiting for workspace build job 70169787-57a4-4004-9b0e-241b776935d6\n"} -{"Time":"2022-12-07T09:15:33.982269+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:33.982283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:33.982286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:33.982289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.982292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.982294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.982296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:33.982297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:33.982299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:33.982301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.980 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:33.982303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.981 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:33.983251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:33.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b1b09df-4d24-4c0a-b59e-7c9d48282874\"}\n"} -{"Time":"2022-12-07T09:15:33.99373+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:33.99376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:33.993768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:33.993 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"505.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"60c67446-1434-4911-b1e4-c10980fd4cad\"}\n"} -{"Time":"2022-12-07T09:15:33.994094+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:33.994106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:33.994108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.994 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:33.994219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.994 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:33.994225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:33.994 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.00836+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.008371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.008374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.008 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2dc447a2-e51a-4aa3-ab8f-7d829b74530b\"}\n"} -{"Time":"2022-12-07T09:15:34.017971+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.017992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.017995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.017 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"322.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58fbc4e0-5099-496e-8ecd-ea2a2db0be87\"}\n"} -{"Time":"2022-12-07T09:15:34.031803+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.031814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.031816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.031 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:34.031822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.031 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.031824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.031 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.031826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.031 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:34.031834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.031 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:34.031836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.031 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:34.034495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.034 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b86a15ca-4ce7-4bb6-85e8-3c2130cbd734\"}\n"} -{"Time":"2022-12-07T09:15:34.042766+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.042796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.04281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.042 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7ed80776-c029-4e94-aab7-0c4c9bed9962\"}\n"} -{"Time":"2022-12-07T09:15:34.04438+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:34.044385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:34.044388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:34.04439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.044416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:34.044419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:34.044422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:34.044424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:34.044649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"request_id\": \"a20a35bc-5308-4adf-ad96-9f663ad92a3b\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:34.044654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:34.044657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.044 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"request_id\": \"a20a35bc-5308-4adf-ad96-9f663ad92a3b\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:34.058789+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.058814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.058817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"429.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"18dbfc38-55aa-48fb-8a3e-917aad04c7e2\"}\n"} -{"Time":"2022-12-07T09:15:34.068416+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.068437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.068442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.068 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"731.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c6cec221-bc9f-4170-ba13-b338f4d818e0\"}\n"} -{"Time":"2022-12-07T09:15:34.08198+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.081996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.081999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.081 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:34.082001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.081 [INFO]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:34.082007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.081 [INFO]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:34.08202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.081 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:34.082022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.081 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:34.082025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.081 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"ed19a8f6-c2c3-4f8a-b6b4-0a5248cd9806\"}\n"} -{"Time":"2022-12-07T09:15:34.083876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/templateversions/fdd62948-cc68-45d4-a103-4cf539d26b72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8cf68bd6-ef6c-4335-a866-1d5aa19b45d6\"}\n"} -{"Time":"2022-12-07T09:15:34.084533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.084 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/organizations/c5fc3c05-416b-43be-9ac3-1fe76fc4b712/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4b82c5cd-5062-4c71-962a-b998a4b332bb\"}\n"} -{"Time":"2022-12-07T09:15:34.085085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.085 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/organizations/c5fc3c05-416b-43be-9ac3-1fe76fc4b712/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"587µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e9f6f6f5-9b0d-4b6e-9c2e-cf321807ff1d\"}\n"} -{"Time":"2022-12-07T09:15:34.08523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" show_test.go:28: waiting for workspace build job 65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\n"} -{"Time":"2022-12-07T09:15:34.092918+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.092924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.092927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.092 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"483.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"18d9bbe2-6391-4a41-bb15-165e8c16d9ae\"}\n"} -{"Time":"2022-12-07T09:15:34.09493+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:34.094941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:34.094958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:34.094961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.094963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:34.094965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:34.094966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:34.094968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:34.09497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"request_id\": \"a20a35bc-5308-4adf-ad96-9f663ad92a3b\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:34.094972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\", \"request_id\": \"a20a35bc-5308-4adf-ad96-9f663ad92a3b\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:34.094973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.094 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:34.111482+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.111501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.111504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"734.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9218d46d-8275-4fcc-baac-84a8bd107487\"}\n"} -{"Time":"2022-12-07T09:15:34.117754+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.117766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.117769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.117 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1928ae98-38e2-450d-b294-120495c09453\"}\n"} -{"Time":"2022-12-07T09:15:34.119407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:34.119418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:34.119421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.119423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.119425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:34.119427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.11943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"size_bytes\": 41, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.119432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"size_bytes\": 41, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.119434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateRecreate_template_with_same_name_(create,_delete,_create)2438157821/002/3537461467.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.119435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.119443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.119 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:34.135853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.135869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.135872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.135 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"424.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"34488a62-0b20-4c12-bc5e-23b27a6124e3\"}\n"} -{"Time":"2022-12-07T09:15:34.1427+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.142711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.142714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.142 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"354.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3bd8d96e-039a-45c3-aff0-f8acf044d296\"}\n"} -{"Time":"2022-12-07T09:15:34.145035+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File"} -{"Time":"2022-12-07T09:15:34.145044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":"=== CONT TestStatePush/File\n"} -{"Time":"2022-12-07T09:15:34.145046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.144 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:34.14505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.145 [DEBUG]\t(provisionerd-nostalgic_bassi2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:34.145167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.145 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:34.145172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.145 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:34.145174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.145 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"c83a731b-2715-4ade-a5a8-c940cfbbcc72\"}\n"} -{"Time":"2022-12-07T09:15:34.145323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.145 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/3eb4616b-c2d1-4335-98ec-a5ebfdaa2255/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"927.862917ms\", \"status_code\": 101, \"latency_ms\": 927, \"request_id\": \"a20a35bc-5308-4adf-ad96-9f663ad92a3b\"}\n"} -{"Time":"2022-12-07T09:15:34.148174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.147 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56703\", \"path\": \"/api/v2/workspacebuilds/3eb4616b-c2d1-4335-98ec-a5ebfdaa2255\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"886.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44ac0260-c6d8-4e51-98f9-0d2988bbe5f2\"}\n"} -{"Time":"2022-12-07T09:15:34.148184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" t.go:81: 2022-12-07 08:15:34.147 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:34.149138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.149144+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK"} -{"Time":"2022-12-07T09:15:34.149146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":"=== CONT TestPublicKey/OK\n"} -{"Time":"2022-12-07T09:15:34.151531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":" t.go:81: 2022-12-07 08:15:34.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56914\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"104.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"adfaeae4-5e72-42e5-8ff8-0ceb3a42243d\"}\n"} -{"Time":"2022-12-07T09:15:34.151791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":" t.go:81: 2022-12-07 08:15:34.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56914\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"57.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e6eca063-061c-4561-b9cc-3732a1d5cad5\"}\n"} -{"Time":"2022-12-07T09:15:34.157207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":" t.go:81: 2022-12-07 08:15:34.156 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56914\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"49.709µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"9a274abe-ddc4-4378-aa9f-ac3aea317dae\"}\n"} -{"Time":"2022-12-07T09:15:34.15744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":" t.go:81: 2022-12-07 08:15:34.157 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56914\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"421d8a5e-93de-48c6-8d67-b7ab0a22cc9b\"}\n"} -{"Time":"2022-12-07T09:15:34.158854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":" t.go:81: 2022-12-07 08:15:34.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56914\", \"path\": \"/api/v2/users/me/gitsshkey\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.374958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2224e780-6072-4730-80b4-8e64158f2dc1\"}\n"} -{"Time":"2022-12-07T09:15:34.159548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.159585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey","Output":"--- PASS: TestPublicKey (0.00s)\n"} -{"Time":"2022-12-07T09:15:34.159591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Output":" --- PASS: TestPublicKey/OK (0.01s)\n"} -{"Time":"2022-12-07T09:15:34.159593+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestPublicKey/OK","Elapsed":0.01} -{"Time":"2022-12-07T09:15:34.159596+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestPublicKey","Elapsed":0} -{"Time":"2022-12-07T09:15:34.159598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.159599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.162311+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.162327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.16233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"602.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7676df6-f166-468b-aeb1-794883a38ccc\"}\n"} -{"Time":"2022-12-07T09:15:34.162712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.162716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.162725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"127.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2759a948-67a0-40ea-9550-38f0cecedd09\"}\n"} -{"Time":"2022-12-07T09:15:34.163044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"77.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"999abb64-4014-4989-ab59-71eaa585db2f\"}\n"} -{"Time":"2022-12-07T09:15:34.164251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.163 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"486.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b6c25472-296c-431c-9410-ce6f47c4ed20\"}\n"} -{"Time":"2022-12-07T09:15:34.16517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.165 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/organizations/2e411a51-ecff-4d82-b3f3-b30f8acf2451/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.0035ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"9c39e781-8b4b-4d38-b90b-1ff0d807bb61\"}\n"} -{"Time":"2022-12-07T09:15:34.165247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" templatedelete_test.go:27: waiting for template version job de1f153a-e67c-48e6-93a4-525a063da3b8\n"} -{"Time":"2022-12-07T09:15:34.169514+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.169539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.169545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.169 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"626.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cf3216db-f626-4602-85e6-507bfb35af7a\"}\n"} -{"Time":"2022-12-07T09:15:34.169556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:34.169562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:34.169567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.169 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.16966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.169 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.185935+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.185942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.185944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"454.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44844e41-c534-4e83-9328-f2cebd1b33c0\"}\n"} -{"Time":"2022-12-07T09:15:34.191348+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.191365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.191368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.190 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"414.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c5fc024-4502-4b4b-90c1-57dd2a3f72b9\"}\n"} -{"Time":"2022-12-07T09:15:34.194226+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.194232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.19424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.194 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"335.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"43e57c40-32d7-4711-bea8-6d7a3cc25546\"}\n"} -{"Time":"2022-12-07T09:15:34.20592+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:34.205927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:34.205932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.205 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.205934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.205 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.205936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.205 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:34.205947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.205 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.20622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.205 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.206229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.205 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"size_bytes\": 2, \"path\": \"/tmp/TestStatePushStdin3070041619/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.206231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.206 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"workspace_name\": \"tender-chatelet5\", \"state_length\": 16, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:34.206234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.206 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.206236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.206 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.211036+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.211043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.211054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"297736f5-b25d-4def-8c20-92b84235940c\"}\n"} -{"Time":"2022-12-07T09:15:34.215762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.215785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.215792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.215 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"357.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"85a65f53-f04f-46e9-a999-77aaab7a8431\"}\n"} -{"Time":"2022-12-07T09:15:34.217657+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.217666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.217669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.217 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"317.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97c8f559-8c69-4362-9c23-1a577a8d9b53\"}\n"} -{"Time":"2022-12-07T09:15:34.219835+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:34.219846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:34.21985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.219863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.219866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.220016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.220022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.220024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.220026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.220028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:34.22003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:34.220032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:34.220036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.219 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:34.220038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.220 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:34.220313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.220 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:34.220318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.220 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:34.22032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.220 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.220323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.220 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:34.220325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.220 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.236151+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.236175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.236178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"414.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"357acf16-3910-4c8f-8b85-4a7eb24b6fa5\"}\n"} -{"Time":"2022-12-07T09:15:34.2406+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.240611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.240614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.240 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8dbddf7f-49ba-4189-abff-8c3418855995\"}\n"} -{"Time":"2022-12-07T09:15:34.242609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.242617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.242619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.242 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"42cca319-b516-486c-b2d4-f9c00cde9de3\"}\n"} -{"Time":"2022-12-07T09:15:34.256669+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:34.256678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:34.25668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.256 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.256685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.256 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.256689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.256 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.256692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.256 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.256762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.256 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:34.256799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.256 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"request_id\": \"b6fd77ec-3187-4c81-834c-28f14a5ed32e\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:34.26063+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.260637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.260639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"323.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5ee95f34-639f-4385-a14c-ca3b28d536c6\"}\n"} -{"Time":"2022-12-07T09:15:34.261777+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.261805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.261816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.261 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:34.267898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.266 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"604µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"63a9c5ac-aea2-4367-beed-a35fc09fecc2\"}\n"} -{"Time":"2022-12-07T09:15:34.26791+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.267912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.267913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"396.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24639956-cccb-473a-b0f8-1a8a20f7f7a7\"}\n"} -{"Time":"2022-12-07T09:15:34.270547+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:34.270551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:34.270553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.270556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.270558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.270579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.270583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.270585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:34.270589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:34.270591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:34.270593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:34.270609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:34.270612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:34.270614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.270 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.285983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.285993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.285996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f51256fd-5002-414a-898c-857c14bbcd9d\"}\n"} -{"Time":"2022-12-07T09:15:34.290712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.290743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.290746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.290 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8860a228-e2eb-4077-90ed-59e2b48bddc9\"}\n"} -{"Time":"2022-12-07T09:15:34.292669+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.292674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.292676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.292 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"289.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ffa03eb3-7e75-4ec4-81e5-8df24ba0c8d7\"}\n"} -{"Time":"2022-12-07T09:15:34.297209+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:34.297215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:34.297279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.296 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.297283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.296 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.297316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.297 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:34.297318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.297 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.29732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.297 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.297322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.297 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.297324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.297 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/002/1192496900.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.297327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.297 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.297648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.297 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} -{"Time":"2022-12-07T09:15:34.307519+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:34.30765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:34.307661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.307 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.307664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.307 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.307666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.307 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.312112+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.312117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.31212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.311 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.312122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.311 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.312124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.311 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:34.312126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.311 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteOk733647125/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.312128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.312 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteOk733647125/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.312131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.312 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteOk733647125/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.312133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.312 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.312171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.312 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:34.312653+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.31266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.312662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.312 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae93428c-b469-4126-953c-10a6f4989606\"}\n"} -{"Time":"2022-12-07T09:15:34.316066+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.316071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.316073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.315 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d9d9808a-9419-48f4-9caf-7d3390c1ac90\"}\n"} -{"Time":"2022-12-07T09:15:34.317773+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.317777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.317779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.317 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"312.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6fc0901b-602e-4b36-8c5c-3cf964d3c198\"}\n"} -{"Time":"2022-12-07T09:15:34.32236+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)"} -{"Time":"2022-12-07T09:15:34.322366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":"=== CONT TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)\n"} -{"Time":"2022-12-07T09:15:34.322368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.322371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [INFO]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:34.322373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [INFO]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:34.322382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.322384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [DEBUG]\t(provisionerd-vigilant_hopper9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.322387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.322389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.322391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"2b9cdf03-0e3a-450e-89c4-a5c8bf49295d\"}\n"} -{"Time":"2022-12-07T09:15:34.322393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.320 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/a778338b-bb13-40d0-8e5a-0f8be48cf282/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"671.168ms\", \"status_code\": 101, \"latency_ms\": 671, \"request_id\": \"a0823b6c-6d7d-433a-a507-4360027f1e68\"}\n"} -{"Time":"2022-12-07T09:15:34.324305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.324 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/a778338b-bb13-40d0-8e5a-0f8be48cf282\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"553.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f10bcf6b-70a6-4729-bddc-44f63195323c\"}\n"} -{"Time":"2022-12-07T09:15:34.325446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.325 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/a778338b-bb13-40d0-8e5a-0f8be48cf282\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c5afc1d3-0cf2-4db1-8081-a3d2f870adb2\"}\n"} -{"Time":"2022-12-07T09:15:34.326095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.325 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/a778338b-bb13-40d0-8e5a-0f8be48cf282/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"545.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"965a3eb1-33aa-48d3-aa58-cf7c86cb5f0f\"}\n"} -{"Time":"2022-12-07T09:15:34.326698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.326 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/a778338b-bb13-40d0-8e5a-0f8be48cf282/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"447.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e3b13657-41b2-443e-b157-a61b18d8f73c\"}\n"} -{"Time":"2022-12-07T09:15:34.327537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.327 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/templateversions/a778338b-bb13-40d0-8e5a-0f8be48cf282/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"479.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8171a5e0-fd57-4d75-b5a2-bcc55350d86d\"}\n"} -{"Time":"2022-12-07T09:15:34.328268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.328 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56841\", \"path\": \"/api/v2/organizations/6319f3f6-0918-4597-9470-6ab6ae5b9f5b/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"465.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"72d85a5a-928f-4b92-b5b3-226d1e9eea9c\"}\n"} -{"Time":"2022-12-07T09:15:34.328276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" t.go:81: 2022-12-07 08:15:34.328 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:34.33094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.330951+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.330953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.334147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.333 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"162.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4327cfc9-0278-4d9d-acee-f1db580c93d6\"}\n"} -{"Time":"2022-12-07T09:15:34.334247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"47.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"93cecb57-2baf-4319-a10d-a7a10a39418c\"}\n"} -{"Time":"2022-12-07T09:15:34.334857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"405.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d3ac1549-eee8-4538-990f-10d9727b4fa1\"}\n"} -{"Time":"2022-12-07T09:15:34.335451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/organizations/857b3f85-c201-4d20-a9ba-1292089fc2d6/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"496.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"55c84a34-5d80-4930-a635-b532cd2f70ea\"}\n"} -{"Time":"2022-12-07T09:15:34.33554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" templatedelete_test.go:123: waiting for template version job dca34262-73a4-4f2f-92ea-3b6b930b15d5\n"} -{"Time":"2022-12-07T09:15:34.336322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.336328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.33633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.336 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aaee202b-8783-4397-b763-7b18d6e9c9e2\"}\n"} -{"Time":"2022-12-07T09:15:34.341683+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.341706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.34171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.341 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"441.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6e4065ad-2d6e-4d51-80d1-d573996c2abd\"}\n"} -{"Time":"2022-12-07T09:15:34.343625+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.343629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.343631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.343 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39849c6f-89f2-41c1-94b9-eb31d88bb74f\"}\n"} -{"Time":"2022-12-07T09:15:34.349043+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:34.349048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:34.350101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.348 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.350105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.348 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.357928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:34.357936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:34.357938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.35794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.357943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.357949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.357951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:34.357953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:34.357954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"request_id\": \"b6fd77ec-3187-4c81-834c-28f14a5ed32e\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:34.357956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"request_id\": \"b6fd77ec-3187-4c81-834c-28f14a5ed32e\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:34.357958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.357 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.361502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.361509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.36151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"459.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"575f9b57-c2f8-4e0b-894d-f047bc818c0a\"}\n"} -{"Time":"2022-12-07T09:15:34.361513+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.361515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.361516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.361 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.291µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:34.362959+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.362964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.362966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3703f8e6-de90-4de7-b932-57c23143ca75\"}\n"} -{"Time":"2022-12-07T09:15:34.364162+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.364167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.364169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.363 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.364172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.364 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.366206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.365 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"412.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f82d30c5-ba58-4a4e-8163-491983fe4141\"}\n"} -{"Time":"2022-12-07T09:15:34.369166+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.369171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.369173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.367 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"397.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7a4188fc-bb32-4497-aabd-0af0bec863e2\"}\n"} -{"Time":"2022-12-07T09:15:34.386015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.386026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.386029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.385 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c5b1a39f-ca8e-4096-9518-c1197f441421\"}\n"} -{"Time":"2022-12-07T09:15:34.38712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.387124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.387126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"300.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e5cbffef-b955-49e9-85a5-2399d1c22370\"}\n"} -{"Time":"2022-12-07T09:15:34.390099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.390109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.390111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.389 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.390114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.390117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:34.390794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.390799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.390801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"size_bytes\": 2, \"path\": \"/tmp/TestScheduleOverrideNoDeadline4258954746/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.390803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"workspace_name\": \"lucid-roentgen1\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:34.390805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.390807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.390 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.390809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.39081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.390841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.390 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"410.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a3467702-9211-423f-a253-455e172c3574\"}\n"} -{"Time":"2022-12-07T09:15:34.392631+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.392636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.392638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.392 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e716bfec-54a6-44a8-954c-c78455032324\"}\n"} -{"Time":"2022-12-07T09:15:34.400625+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:34.40063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:34.400642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.400644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.400646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.400648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.40065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.400652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.400654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.400655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:34.400657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:34.400659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:34.40066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:34.400662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:34.400664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:34.400666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:34.400668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:34.400669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.398 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.400671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.399 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.400675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.400: cmd: stdout: \"\\x1b[1A\\r✔ Queued [496ms]\"\n"} -{"Time":"2022-12-07T09:15:34.400676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.400: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.400678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.400: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} -{"Time":"2022-12-07T09:15:34.400679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.400: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.400681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.400: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [51ms]\"\n"} -{"Time":"2022-12-07T09:15:34.401391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.400: cmd: stdout: \"⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.408968+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:34.408976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:34.408978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.408994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.408997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.408999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.409001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:34.409002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:34.409004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"request_id\": \"b6fd77ec-3187-4c81-834c-28f14a5ed32e\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:34.409006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\", \"request_id\": \"b6fd77ec-3187-4c81-834c-28f14a5ed32e\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:34.409007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.408 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.410733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.410743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.410746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d81b1156-4459-412b-9f1b-0c4501e4b2f5\"}\n"} -{"Time":"2022-12-07T09:15:34.412481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.412486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.412488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.411 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"451.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16cf57a6-9778-445a-b4ff-c619248defdb\"}\n"} -{"Time":"2022-12-07T09:15:34.415076+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.41511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.415113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.414 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.415115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.414 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.415118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.414 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.41512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.414 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.415122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.414 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.415134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.414 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.415136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.414 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.415138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.415 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.415141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.415633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9036fe82-a59a-4486-869e-371a768e625d\"}\n"} -{"Time":"2022-12-07T09:15:34.417483+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.417487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.417489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.417 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd275db3-0e48-4b5f-949c-c972e85d61cf\"}\n"} -{"Time":"2022-12-07T09:15:34.433443+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.433452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.433454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.433 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:34.435879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.435901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.435912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"357420be-aab1-4f5f-b5a5-5becf129eae6\"}\n"} -{"Time":"2022-12-07T09:15:34.436094+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.436098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.4361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"257.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4dcbd737-65a1-4bcf-8419-a9677c50e975\"}\n"} -{"Time":"2022-12-07T09:15:34.440621+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.440626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.440628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.440 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49cb5476-2c7e-4af9-8dbe-93dfe6768e0a\"}\n"} -{"Time":"2022-12-07T09:15:34.440909+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.440935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.440942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.440 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.440948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.440 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.440955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.440 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.440961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.440 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.442545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.442 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e466083-851c-46d1-a71d-ef6432aff344\"}\n"} -{"Time":"2022-12-07T09:15:34.449664+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:34.449673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:34.449676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.449678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.44968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.449682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.449684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.449686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:34.449688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:34.449689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:34.449691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:34.449694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:34.449695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\", \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:34.449697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.449 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.450011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.449: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:34.450016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.449: cmd: stdout: \"✔ Detecting persistent resources [0ms]\"\n"} -{"Time":"2022-12-07T09:15:34.450018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.449: cmd: stdout: \"⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.45002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.449: cmd: stdout: \"\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\"\n"} -{"Time":"2022-12-07T09:15:34.450022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.449: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.459024+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:34.459032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:34.459034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.458 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.459036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.458 [DEBUG]\t(provisionerd-optimistic_easley4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.459038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.458 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.45904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.458 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.459042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.459 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"cc0f9dcc-1f1d-4c47-8a0e-c8748753aa4d\"}\n"} -{"Time":"2022-12-07T09:15:34.459303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.459 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/58f53ab6-ef50-4fd4-9836-8f04bcf7dceb/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"975.408791ms\", \"status_code\": 101, \"latency_ms\": 975, \"request_id\": \"b6fd77ec-3187-4c81-834c-28f14a5ed32e\"}\n"} -{"Time":"2022-12-07T09:15:34.460655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.460659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.460661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"291.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"544f3559-f785-4472-9d30-a60fb437ce5c\"}\n"} -{"Time":"2022-12-07T09:15:34.460733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin"} -{"Time":"2022-12-07T09:15:34.460741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":"=== CONT TestStatePush/Stdin\n"} -{"Time":"2022-12-07T09:15:34.460743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56742\", \"path\": \"/api/v2/workspacebuilds/58f53ab6-ef50-4fd4-9836-8f04bcf7dceb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"517.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"82b5a779-c8cf-4741-b49f-0c351123331f\"}\n"} -{"Time":"2022-12-07T09:15:34.460791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" t.go:81: 2022-12-07 08:15:34.460 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:34.461563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.461632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush","Output":"--- PASS: TestStatePush (0.00s)\n"} -{"Time":"2022-12-07T09:15:34.461637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Output":" --- PASS: TestStatePush/File (2.02s)\n"} -{"Time":"2022-12-07T09:15:34.461639+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestStatePush/File","Elapsed":2.02} -{"Time":"2022-12-07T09:15:34.461644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Output":" --- PASS: TestStatePush/Stdin (1.99s)\n"} -{"Time":"2022-12-07T09:15:34.461646+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestStatePush/Stdin","Elapsed":1.99} -{"Time":"2022-12-07T09:15:34.461651+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestStatePush","Elapsed":0} -{"Time":"2022-12-07T09:15:34.461653+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.461654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.463456+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.463462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.463464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.463 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"425.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fc0f95b2-5670-496c-a3b3-6ffdd1229fe6\"}\n"} -{"Time":"2022-12-07T09:15:34.464488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.464514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.46452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.464 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"96.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"dbfffc07-fa79-4b21-ac95-3bd880fb70c1\"}\n"} -{"Time":"2022-12-07T09:15:34.464898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.464 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"148.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1594c151-6776-40d6-88e7-d37552eed608\"}\n"} -{"Time":"2022-12-07T09:15:34.46538+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.465386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.465388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.465 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.465391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.465 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.465497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.465 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.465513+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.465532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.465535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.465 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ed9966bb-af96-455f-92da-99d6d34d2b98\"}\n"} -{"Time":"2022-12-07T09:15:34.465539+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.46554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.465542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.465 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.465544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.465 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.465552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.465 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.466112+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.466128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.466133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/organizations/67cd7c26-ca17-4861-9a4a-c9e6ac63feda/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0be3883d-f084-4d99-b153-1c2341e6a365\"}\n"} -{"Time":"2022-12-07T09:15:34.466261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" templatedelete_test.go:84: waiting for template version job 2c6581e1-f8dc-4e30-a093-59a06f3af961\n"} -{"Time":"2022-12-07T09:15:34.466482+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.466494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.466496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"587.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ced0a52-05a7-40e7-8b2b-610e7fd6dd09\"}\n"} -{"Time":"2022-12-07T09:15:34.46869+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.468696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.468712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.468 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0e153f53-9a43-4661-ac3d-7dd7dcff2571\"}\n"} -{"Time":"2022-12-07T09:15:34.484486+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.484499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.484503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.484505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.484517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:34.484519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteSelector1497538659/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.484521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteSelector1497538659/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.484523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteSelector1497538659/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.484525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.484527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.484 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:34.486476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.486 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"471.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f3cd566b-9cc4-4e3b-b793-8f3ae4cab754\"}\n"} -{"Time":"2022-12-07T09:15:34.487552+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.487562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.487567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.487 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"404.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a4bdfb19-e107-42ba-852b-052c2ee102c8\"}\n"} -{"Time":"2022-12-07T09:15:34.490736+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.490742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.490744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.490 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9a1915d3-c51d-4b13-b9ba-ddabf8a8df91\"}\n"} -{"Time":"2022-12-07T09:15:34.491092+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.491117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.491123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.491 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.491132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.491 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.491182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.491 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.491746+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.491757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.491762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.491 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4944d4b3-199e-43fe-8574-77d81cc9f202\"}\n"} -{"Time":"2022-12-07T09:15:34.493378+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.493384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.493387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.492 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"544.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9a885471-4654-4df0-917f-f24e343368e4\"}\n"} -{"Time":"2022-12-07T09:15:34.501024+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:34.501042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestTemplateCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:34.501045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.500 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.501047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.500 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.501049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.500 [DEBUG]\t(provisionerd-suspicious_snyder6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.501056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.500 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.501058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.500 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.501061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.500 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"fce2a5c7-0a36-4dcc-94b3-6db923f45859\"}\n"} -{"Time":"2022-12-07T09:15:34.501062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.500 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/4171db07-e4f7-477a-ac66-0c320d545b52/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"697.523625ms\", \"status_code\": 101, \"latency_ms\": 697, \"request_id\": \"42d44f87-b3c2-4378-84af-3199e8cc9bd7\"}\n"} -{"Time":"2022-12-07T09:15:34.502397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.502 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/4171db07-e4f7-477a-ac66-0c320d545b52\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"18da3c37-a17d-49e3-9f88-297ecbe47507\"}\n"} -{"Time":"2022-12-07T09:15:34.502405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.502: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [101ms]\"\n"} -{"Time":"2022-12-07T09:15:34.502724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.502 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/4171db07-e4f7-477a-ac66-0c320d545b52\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"98965f2a-e0c7-4ec4-a606-e2aa5a61b7d9\"}\n"} -{"Time":"2022-12-07T09:15:34.503282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.503 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/4171db07-e4f7-477a-ac66-0c320d545b52/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"242.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dd0dcad7-064b-4cd2-8592-11f003803d05\"}\n"} -{"Time":"2022-12-07T09:15:34.503671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.503 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/4171db07-e4f7-477a-ac66-0c320d545b52/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"245.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c2c1907d-dbbe-4733-9549-4924ccaac9c0\"}\n"} -{"Time":"2022-12-07T09:15:34.504067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.504 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/templateversions/4171db07-e4f7-477a-ac66-0c320d545b52/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"230.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5ff0584-0302-4bca-8604-74b3e8a1fe2a\"}\n"} -{"Time":"2022-12-07T09:15:34.504202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"┌──────────┐\"\n"} -{"Time":"2022-12-07T09:15:34.504209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"│ Template │\"\n"} -{"Time":"2022-12-07T09:15:34.504211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"│ Preview │\"\n"} -{"Time":"2022-12-07T09:15:34.504212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"├──────────┤\"\n"} -{"Time":"2022-12-07T09:15:34.504291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"│ RESOURCE │\"\n"} -{"Time":"2022-12-07T09:15:34.504294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"├──────────┤\"\n"} -{"Time":"2022-12-07T09:15:34.504296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"└──────────┘\"\n"} -{"Time":"2022-12-07T09:15:34.504497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" templatecreate_test.go:155: 2022-12-07 08:15:34.504: cmd: matched \"Confirm create?\" = \" \\\"/tmp/TestTemplateCreateWithParameterFileContainingTheValue1798751792/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [143ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [1ms]\\r\\n⧗ \\x1b[;mParsing template parameters\\x1b[0m \\r\\n\\x1b[1A\\r✔ Parsing template parameters [50ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✘ Cleaning Up [102ms]\\r\\n \\r\\n Attempting to read the variables from the parameter file. \\r\\r\\n\\r\\n \\r\\n This template has required variables! They are scoped to \\r\\n the template, and not viewable after being set. \\r\\n\\r\\r\\n\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [496ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [0ms]\\r\\n⧗ \\x1b[;mParsing template parameters\\x1b[0m \\r\\n\\x1b[1A\\"} -{"Time":"2022-12-07T09:15:34.504513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":"r✔ Parsing template parameters [51ms]\\r\\n⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \\r\\n \\r\\n✔ Detecting persistent resources [0ms]\\r\\n⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \\r\\n\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Cleaning Up [101ms]\\r\\n┌──────────┐\\r\\n│ Template │\\r\\n│ Preview │\\r\\n├──────────┤\\r\\n│ RESOURCE │\\r\\n├──────────┤\\r\\n└──────────┘\\r\\n\u003e Confirm create?\"\n"} -{"Time":"2022-12-07T09:15:34.504516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" templatecreate_test.go:156: 2022-12-07 08:15:34.504: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:34.504519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.504: cmd: stdout: \"\u003e Confirm create? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:34.504982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.504 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56874\", \"path\": \"/api/v2/organizations/1bf238fd-05e5-47ae-b110-1456fc0308de/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"61e6bd87-66ff-40e7-b873-07ad687c33e6\"}\n"} -{"Time":"2022-12-07T09:15:34.505208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:80: 2022-12-07 08:15:34.505: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.505214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.505: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.505216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.505: cmd: stdout: \"The my-template template has been created at Dec 7 09:15:34! Developers can \"\n"} -{"Time":"2022-12-07T09:15:34.50522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.505: cmd: stdout: \"provision a workspace with this template using: \"\n"} -{"Time":"2022-12-07T09:15:34.505222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.505: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.505225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.505: cmd: stdout: \" \\x1b[;mcoder create --template=\\\"my-template\\\" [workspace name]\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.505226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:34.505: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.505715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:34.505 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:34.506566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.506583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.506585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.50901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.508 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"90.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ca3e6b66-e809-45ac-ab99-dd1cf47fb5b7\"}\n"} -{"Time":"2022-12-07T09:15:34.509306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.509 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"49.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"62ae0a85-52ce-47a8-a80a-82f3b5c36c84\"}\n"} -{"Time":"2022-12-07T09:15:34.509987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.509 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"487.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0df6f55c-be7f-4d57-be09-cce9f3d5399a\"}\n"} -{"Time":"2022-12-07T09:15:34.511069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/organizations/0852c7d3-23d9-4f36-8570-e8db4e37311f/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"815.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7e34c462-6a36-4e4e-a5b2-82d70c617f92\"}\n"} -{"Time":"2022-12-07T09:15:34.511241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" templatedelete_test.go:57: waiting for template version job d87f7cc8-f554-44b6-b398-d3f6a0fae749\n"} -{"Time":"2022-12-07T09:15:34.511695+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.511706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.511708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.511 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"340.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d7e50777-7621-4eb6-8b33-d8aee0663f5e\"}\n"} -{"Time":"2022-12-07T09:15:34.512292+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.512331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.512334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.512 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eeefae1c-967f-4199-9ce8-3cfaa63cea9e\"}\n"} -{"Time":"2022-12-07T09:15:34.517441+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.517449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.517452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.516 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.517455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.516 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.517457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.516 [DEBUG]\t(provisionerd-confident_yonath6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.517459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.516 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"93561bf5-54b9-4294-a8db-87c4a0243d11\"}\n"} -{"Time":"2022-12-07T09:15:34.517537+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.517543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.517545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.517 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5dd117ff-a83c-46c9-886f-85d9304ddf76\"}\n"} -{"Time":"2022-12-07T09:15:34.518177+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.518183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.518185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.517 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templateversions/de1f153a-e67c-48e6-93a4-525a063da3b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"505.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0fa0f186-0673-4efe-a9dd-56a4e7f7337a\"}\n"} -{"Time":"2022-12-07T09:15:34.518662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.518 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/organizations/2e411a51-ecff-4d82-b3f3-b30f8acf2451/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"173dda3e-90c0-4221-b306-125ec23454da\"}\n"} -{"Time":"2022-12-07T09:15:34.518706+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.518708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.51871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.518 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"717.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bc3bb910-0034-4901-a93f-e0966c264774\"}\n"} -{"Time":"2022-12-07T09:15:34.520936+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok"} -{"Time":"2022-12-07T09:15:34.520941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":"=== CONT TestTemplateDelete/Ok\n"} -{"Time":"2022-12-07T09:15:34.520943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.520 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.708µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"6513bd04-4852-4cc2-86dd-a93ec202df1f\"}\n"} -{"Time":"2022-12-07T09:15:34.521203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.521 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"59.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d02137d-da48-4580-b812-e072b3fd79c8\"}\n"} -{"Time":"2022-12-07T09:15:34.521776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.521 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ff572538-aeca-40d1-bbfd-af315dd0459e\"}\n"} -{"Time":"2022-12-07T09:15:34.522325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.522 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/organizations/2e411a51-ecff-4d82-b3f3-b30f8acf2451/templates/dreamy-keller4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"df2ee3c4-1d93-4066-9c68-de81d2fde614\"}\n"} -{"Time":"2022-12-07T09:15:34.52261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" templatedelete_test.go:42: 2022-12-07 08:15:34.522: cmd: matched \"Delete these templates: \\x1b[;mdreamy-keller4\\x1b[0m ?\" = \"\u003e Delete these templates: \\x1b[;mdreamy-keller4\\x1b[0m ?\"\n"} -{"Time":"2022-12-07T09:15:34.522627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" templatedelete_test.go:43: 2022-12-07 08:15:34.522: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:34.52263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" ptytest.go:103: 2022-12-07 08:15:34.522: cmd: stdout: \"\u003e Delete these templates: \\x1b[;mdreamy-keller4\\x1b[0m ? (yes/\\x1b[1mno\\x1b[0m) yes\"\n"} -{"Time":"2022-12-07T09:15:34.523078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templates/e55c8963-de7c-4faf-b3a1-0591cfa620d4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"236.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d184d220-86c8-48bb-b77d-a3f89ae3f3bc\"}\n"} -{"Time":"2022-12-07T09:15:34.523329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" ptytest.go:103: 2022-12-07 08:15:34.523: cmd: stdout: \"Deleted template \\x1b[;mdreamy-keller4\\x1b[0m at Dec 7 09:15:34!\"\n"} -{"Time":"2022-12-07T09:15:34.523404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56917\", \"path\": \"/api/v2/templates/e55c8963-de7c-4faf-b3a1-0591cfa620d4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.834µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"9c77ad6c-7c52-4819-afa0-6052e4166212\"}\n"} -{"Time":"2022-12-07T09:15:34.52352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" ptytest.go:80: 2022-12-07 08:15:34.523: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.523526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" t.go:81: 2022-12-07 08:15:34.523 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:34.524258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.524286+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY"} -{"Time":"2022-12-07T09:15:34.52429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Output":"=== CONT TestLogin/InitialUserNoTTY\n"} -{"Time":"2022-12-07T09:15:34.528176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Output":" t.go:81: 2022-12-07 08:15:34.528 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56965\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"39.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"51eeec36-d215-49b7-b7f0-bc8bf5fdad6d\"}\n"} -{"Time":"2022-12-07T09:15:34.528335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Output":" t.go:81: 2022-12-07 08:15:34.528 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56965\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18.791µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"0af8c4cc-241b-418c-9bdd-fffabb12c566\"}\n"} -{"Time":"2022-12-07T09:15:34.528786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.528791+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} -{"Time":"2022-12-07T09:15:34.528792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== CONT TestLogin/ExistingUserValidTokenTTY\n"} -{"Time":"2022-12-07T09:15:34.531208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.531 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56968\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"104.541µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"19f93c6e-04b4-4a7e-9fab-c2e534086a8d\"}\n"} -{"Time":"2022-12-07T09:15:34.531468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.531 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56968\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"52.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f0f84109-f642-4f9c-8110-4fa5694a9cc0\"}\n"} -{"Time":"2022-12-07T09:15:34.532542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.532546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.532547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.532 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:34.533493+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} -{"Time":"2022-12-07T09:15:34.5335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== CONT TestLogin/ExistingUserValidTokenTTY\n"} -{"Time":"2022-12-07T09:15:34.533502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.533 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56968\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"41f6d915-5756-4e28-8f39-c011bd8e2b5f\"}\n"} -{"Time":"2022-12-07T09:15:34.533877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.533 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56968\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"65µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2483aafb-f0bd-4c52-b92d-7d0ef53d5ad8\"}\n"} -{"Time":"2022-12-07T09:15:34.534029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.533: cmd: stdout: \"Open the following in your browser:\"\n"} -{"Time":"2022-12-07T09:15:34.534041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.533: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.534046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.533: cmd: stdout: \"\\thttp://localhost:56968/cli-auth\"\n"} -{"Time":"2022-12-07T09:15:34.53405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.533: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.534636+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.534641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.534643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.534 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.534649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} -{"Time":"2022-12-07T09:15:34.534651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== CONT TestLogin/ExistingUserValidTokenTTY\n"} -{"Time":"2022-12-07T09:15:34.534652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" login_test.go:153: 2022-12-07 08:15:34.534: cmd: matched \"Paste your token here:\" = \"Open the following in your browser:\\r\\n\\r\\n\\thttp://localhost:56968/cli-auth\\r\\n\\r\\n\u003e Paste your token here:\"\n"} -{"Time":"2022-12-07T09:15:34.534654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" login_test.go:154: 2022-12-07 08:15:34.534: cmd: stdin: \"qCNaZ8xAeh-OfIkACaF7z7PVwBwN6QPgq\\r\"\n"} -{"Time":"2022-12-07T09:15:34.534714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.534: cmd: stdout: \"\u003e Paste your token here: qCNaZ8xAeh-OfIkACaF7z7PVwBwN6QPgq\"\n"} -{"Time":"2022-12-07T09:15:34.53472+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.534722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.534724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.534 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.535969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} -{"Time":"2022-12-07T09:15:34.535973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== CONT TestLogin/ExistingUserValidTokenTTY\n"} -{"Time":"2022-12-07T09:15:34.535974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56968\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f16cb99-7fc7-49ce-bccb-b0815da0d5f0\"}\n"} -{"Time":"2022-12-07T09:15:34.536326+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.536335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.536337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"03ad9eaf-5b64-4565-b7ff-addf0f7394e1\"}\n"} -{"Time":"2022-12-07T09:15:34.536774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} -{"Time":"2022-12-07T09:15:34.536778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== CONT TestLogin/ExistingUserValidTokenTTY\n"} -{"Time":"2022-12-07T09:15:34.53678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56968\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"535.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3409cece-585a-4a37-b216-feb020e77796\"}\n"} -{"Time":"2022-12-07T09:15:34.536815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.536818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.536822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"405.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"94a5a6f8-c08f-414b-8627-94231527f892\"}\n"} -{"Time":"2022-12-07T09:15:34.537153+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} -{"Time":"2022-12-07T09:15:34.537161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== CONT TestLogin/ExistingUserValidTokenTTY\n"} -{"Time":"2022-12-07T09:15:34.537163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.537: cmd: stdout: \"\u003e Welcome to Coder, testuser! You're authenticated.\"\n"} -{"Time":"2022-12-07T09:15:34.537919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.537924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.537926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a005f8ed-f172-4383-9b7f-80356ea2a6ba\"}\n"} -{"Time":"2022-12-07T09:15:34.538122+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY"} -{"Time":"2022-12-07T09:15:34.538142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":"=== CONT TestLogin/ExistingUserValidTokenTTY\n"} -{"Time":"2022-12-07T09:15:34.538147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" login_test.go:155: 2022-12-07 08:15:34.538: cmd: matched \"Welcome to Coder\" = \" qCNaZ8xAeh-OfIkACaF7z7PVwBwN6QPgq\\r\\n\u003e Welcome to Coder\"\n"} -{"Time":"2022-12-07T09:15:34.538155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" ptytest.go:80: 2022-12-07 08:15:34.538: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.538751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.538756+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag"} -{"Time":"2022-12-07T09:15:34.538758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":"=== CONT TestLogin/TokenFlag\n"} -{"Time":"2022-12-07T09:15:34.541202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":" t.go:81: 2022-12-07 08:15:34.541 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56979\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"106.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b9fd5047-a80c-4d29-acb4-d613e9a78fea\"}\n"} -{"Time":"2022-12-07T09:15:34.541356+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.541361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.541363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.541 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.541366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.541 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.541368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.541 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.54142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.541 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.541423+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag"} -{"Time":"2022-12-07T09:15:34.541424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":"=== CONT TestLogin/TokenFlag\n"} -{"Time":"2022-12-07T09:15:34.541467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":" t.go:81: 2022-12-07 08:15:34.541 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56979\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"42.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0a42d399-0f9a-4eaf-ac10-bc742f9890f0\"}\n"} -{"Time":"2022-12-07T09:15:34.541473+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.541476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.541478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.541 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.542597+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.542608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.542613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.542 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"422.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"94e45022-b3c3-4f9c-b62f-7e488bbec078\"}\n"} -{"Time":"2022-12-07T09:15:34.542907+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag"} -{"Time":"2022-12-07T09:15:34.542911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":"=== CONT TestLogin/TokenFlag\n"} -{"Time":"2022-12-07T09:15:34.542913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":" t.go:81: 2022-12-07 08:15:34.542 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56979\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9e9b410b-92b1-4d87-92a4-f7edbf58ba1a\"}\n"} -{"Time":"2022-12-07T09:15:34.542915+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.542917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.542918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.542 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"372.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d6a8ed61-c5cd-473e-963e-044bc9c1da91\"}\n"} -{"Time":"2022-12-07T09:15:34.54303+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag"} -{"Time":"2022-12-07T09:15:34.543032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":"=== CONT TestLogin/TokenFlag\n"} -{"Time":"2022-12-07T09:15:34.543033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":" t.go:81: 2022-12-07 08:15:34.542 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56979\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"48e47b40-d25b-428f-a9ec-c424d5da21a2\"}\n"} -{"Time":"2022-12-07T09:15:34.544195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":" t.go:81: 2022-12-07 08:15:34.543 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56979\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"333.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"54a0a451-e0aa-48f1-9447-a8ae8a424272\"}\n"} -{"Time":"2022-12-07T09:15:34.544944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.54496+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY"} -{"Time":"2022-12-07T09:15:34.544963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":"=== CONT TestLogin/ExistingUserInvalidTokenTTY\n"} -{"Time":"2022-12-07T09:15:34.547398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.547 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56988\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"110.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"84670549-0b6a-4f41-a958-b8c6f8f70339\"}\n"} -{"Time":"2022-12-07T09:15:34.547638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.547 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56988\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"70.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ea53268c-3486-4412-b2e7-06b844e0c8d0\"}\n"} -{"Time":"2022-12-07T09:15:34.549242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.549 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56988\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"24.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db58a842-fe5a-45b6-9c31-3cd7010b3670\"}\n"} -{"Time":"2022-12-07T09:15:34.549488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.549 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56988\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"86d5258f-99c9-44bf-8cc1-7fde48465c55\"}\n"} -{"Time":"2022-12-07T09:15:34.549599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.549: cmd: stdout: \"Open the following in your browser:\"\n"} -{"Time":"2022-12-07T09:15:34.549604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.549: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.549606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.549: cmd: stdout: \"\\thttp://localhost:56988/cli-auth\"\n"} -{"Time":"2022-12-07T09:15:34.549607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.549: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.54992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" login_test.go:178: 2022-12-07 08:15:34.549: cmd: matched \"Paste your token here:\" = \"Open the following in your browser:\\r\\n\\r\\n\\thttp://localhost:56988/cli-auth\\r\\n\\r\\n\u003e Paste your token here:\"\n"} -{"Time":"2022-12-07T09:15:34.549933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" login_test.go:179: 2022-12-07 08:15:34.549: cmd: stdin: \"an-invalid-token\\r\"\n"} -{"Time":"2022-12-07T09:15:34.549972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.549: cmd: stdout: \"\u003e Paste your token here: an-invalid-token\"\n"} -{"Time":"2022-12-07T09:15:34.550536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" t.go:81: 2022-12-07 08:15:34.550 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56988\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"39.125µs\", \"status_code\": 401, \"latency_ms\": 0, \"request_id\": \"a4790f02-6ec7-462c-825d-28bdb3f2d466\"}\n"} -{"Time":"2022-12-07T09:15:34.550636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.550: cmd: stdout: \"That's not a valid token!\"\n"} -{"Time":"2022-12-07T09:15:34.550764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" login_test.go:180: 2022-12-07 08:15:34.550: cmd: matched \"That's not a valid token!\" = \" an-invalid-token\\r\\nThat's not a valid token!\"\n"} -{"Time":"2022-12-07T09:15:34.550799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:80: 2022-12-07 08:15:34.550: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.55083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.550: cmd: stdout: \"\u003e Paste your token here: \"\n"} -{"Time":"2022-12-07T09:15:34.551216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.551245+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt"} -{"Time":"2022-12-07T09:15:34.551247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":"=== CONT TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt\n"} -{"Time":"2022-12-07T09:15:34.553631+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:34.553636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:34.553638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.553648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.553651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:34.554176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.55418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.554195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.554209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplateCreateWithParameter508008006/002/621695553.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.554211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.553 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.554627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.554 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} -{"Time":"2022-12-07T09:15:34.561574+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt"} -{"Time":"2022-12-07T09:15:34.561612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":"=== CONT TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt\n"} -{"Time":"2022-12-07T09:15:34.561615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" t.go:81: 2022-12-07 08:15:34.561 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56993\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"44µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"633378b4-afe5-4d2a-a0e9-a6b6c91f3703\"}\n"} -{"Time":"2022-12-07T09:15:34.561786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" t.go:81: 2022-12-07 08:15:34.561 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56993\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.375µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"80fa4c3f-ce02-4d78-8e38-df36597cebe7\"}\n"} -{"Time":"2022-12-07T09:15:34.562011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.561: cmd: stdout: \"\u003e Your Coder deployment hasn't been set up!\"\n"} -{"Time":"2022-12-07T09:15:34.562399+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.56245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.562458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.562 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"518.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7f436f1a-0733-4f11-9afb-d749d452f48b\"}\n"} -{"Time":"2022-12-07T09:15:34.562649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.562654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.562665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.562 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"658879cf-142f-44c2-bb56-de6913a5866f\"}\n"} -{"Time":"2022-12-07T09:15:34.562932+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.562944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.562949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.562 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"357.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"800216aa-24a9-4f8c-b8ef-0e589ff943b0\"}\n"} -{"Time":"2022-12-07T09:15:34.563304+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt"} -{"Time":"2022-12-07T09:15:34.56331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":"=== CONT TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt\n"} -{"Time":"2022-12-07T09:15:34.563312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:120: 2022-12-07 08:15:34.563: cmd: matched \"first user?\" = \"\u003e Your Coder deployment hasn't been set up!\\r\\n\u003e Would you like to create the first user?\"\n"} -{"Time":"2022-12-07T09:15:34.563316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:121: 2022-12-07 08:15:34.563: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:34.56337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.563: cmd: stdout: \"\u003e Would you like to create the first user? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:34.563739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.563748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.56375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.563 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:34.563752+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt"} -{"Time":"2022-12-07T09:15:34.563754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":"=== CONT TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt\n"} -{"Time":"2022-12-07T09:15:34.563756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:120: 2022-12-07 08:15:34.563: cmd: matched \"username\" = \" (\\x1b[1myes\\x1b[0m/no) yes\\r\\n\u003e What \\x1b[;musername\"\n"} -{"Time":"2022-12-07T09:15:34.563758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:121: 2022-12-07 08:15:34.563: cmd: stdin: \"testuser\\r\"\n"} -{"Time":"2022-12-07T09:15:34.56393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.563: cmd: stdout: \"\u003e What \\x1b[;musername\\x1b[0m would you like? (mtojek) testuser\"\n"} -{"Time":"2022-12-07T09:15:34.564113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:120: 2022-12-07 08:15:34.564: cmd: matched \"email\" = \"\\x1b[0m would you like? (mtojek) testuser\\r\\n\u003e What's your \\x1b[;memail\"\n"} -{"Time":"2022-12-07T09:15:34.564118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:121: 2022-12-07 08:15:34.564: cmd: stdin: \"user@coder.com\\r\"\n"} -{"Time":"2022-12-07T09:15:34.564189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.564: cmd: stdout: \"\u003e What's your \\x1b[;memail\\x1b[0m ? user@coder.com\"\n"} -{"Time":"2022-12-07T09:15:34.566004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:120: 2022-12-07 08:15:34.565: cmd: matched \"password\" = \"\\x1b[0m ? user@coder.com\\r\\n\u003e Enter a \\x1b[;mpassword\"\n"} -{"Time":"2022-12-07T09:15:34.566012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:121: 2022-12-07 08:15:34.565: cmd: stdin: \"mypass\\r\"\n"} -{"Time":"2022-12-07T09:15:34.566094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.566: cmd: stdout: \"\u003e Enter a \\x1b[;mpassword\\x1b[0m : mypass\"\n"} -{"Time":"2022-12-07T09:15:34.567502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.567506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.567508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.567 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"709add14-046c-4335-9e07-d34956f34e33\"}\n"} -{"Time":"2022-12-07T09:15:34.570806+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.570811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.570812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.570 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f35c18f-6b39-43e0-a28a-7868c392f299\"}\n"} -{"Time":"2022-12-07T09:15:34.571399+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt"} -{"Time":"2022-12-07T09:15:34.571401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":"=== CONT TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt\n"} -{"Time":"2022-12-07T09:15:34.571403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:120: 2022-12-07 08:15:34.571: cmd: matched \"password\" = \"\\x1b[0m : mypass\\r\\n\u003e Confirm \\x1b[;mpassword\"\n"} -{"Time":"2022-12-07T09:15:34.571405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:121: 2022-12-07 08:15:34.571: cmd: stdin: \"wrongpass\\r\"\n"} -{"Time":"2022-12-07T09:15:34.571482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.571: cmd: stdout: \"\u003e Confirm \\x1b[;mpassword\\x1b[0m : wrongpass\"\n"} -{"Time":"2022-12-07T09:15:34.571498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.571: cmd: stdout: \"Passwords do not match\"\n"} -{"Time":"2022-12-07T09:15:34.571524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:125: 2022-12-07 08:15:34.571: cmd: matched \"Passwords do not match\" = \"\\x1b[0m : wrongpass\\r\\nPasswords do not match\"\n"} -{"Time":"2022-12-07T09:15:34.571528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:126: 2022-12-07 08:15:34.571: cmd: matched \"Enter a \\x1b[;mpassword\\x1b[0m \" = \"\\r\\n\u003e Enter a \\x1b[;mpassword\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.571531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:128: 2022-12-07 08:15:34.571: cmd: stdin: \"pass\\r\"\n"} -{"Time":"2022-12-07T09:15:34.572728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.572: cmd: stdout: \"\u003e Enter a \\x1b[;mpassword\\x1b[0m : pass\"\n"} -{"Time":"2022-12-07T09:15:34.573735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:129: 2022-12-07 08:15:34.573: cmd: matched \"Confirm\" = \": pass\\r\\n\u003e Confirm\"\n"} -{"Time":"2022-12-07T09:15:34.573743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:130: 2022-12-07 08:15:34.573: cmd: stdin: \"pass\\r\"\n"} -{"Time":"2022-12-07T09:15:34.573745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.573: cmd: stdout: \"\u003e Confirm \\x1b[;mpassword\\x1b[0m : pass\"\n"} -{"Time":"2022-12-07T09:15:34.573812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:131: 2022-12-07 08:15:34.573: cmd: matched \"trial\" = \" \\x1b[;mpassword\\x1b[0m : pass\\r\\n\u003e Start a 30-day trial\"\n"} -{"Time":"2022-12-07T09:15:34.573816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:132: 2022-12-07 08:15:34.573: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:34.57385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.573: cmd: stdout: \"\u003e Start a 30-day trial of Enterprise? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:34.574498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" t.go:81: 2022-12-07 08:15:34.574 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56993\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"93.709µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a90cd307-9b7e-48be-8604-0a20c99fc06e\"}\n"} -{"Time":"2022-12-07T09:15:34.574641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" t.go:81: 2022-12-07 08:15:34.574 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56993\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"28.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0270321f-881d-4be0-be87-ade86da91d83\"}\n"} -{"Time":"2022-12-07T09:15:34.575014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.574: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:34.575033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.574: cmd: stdout: \" Welcome to Coder, testuser! You're authenticated. \"\n"} -{"Time":"2022-12-07T09:15:34.575038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.574: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:34.575042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.574: cmd: stdout: \" Get started by creating a template: \\x1b[;mcoder templates init\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.575518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" login_test.go:133: 2022-12-07 08:15:34.575: cmd: matched \"Welcome to Coder\" = \" of Enterprise? (\\x1b[1myes\\x1b[0m/no) yes\\r\\n \\r\\n Welcome to Coder\"\n"} -{"Time":"2022-12-07T09:15:34.575554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" ptytest.go:80: 2022-12-07 08:15:34.575: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.576336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.576343+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags"} -{"Time":"2022-12-07T09:15:34.576345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":"=== CONT TestLogin/InitialUserFlags\n"} -{"Time":"2022-12-07T09:15:34.580406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" t.go:81: 2022-12-07 08:15:34.580 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57008\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"29.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c5983f6-1931-46d9-88b9-31a226c8e8b8\"}\n"} -{"Time":"2022-12-07T09:15:34.580629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" t.go:81: 2022-12-07 08:15:34.580 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57008\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"29.584µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"dc7147ff-6d26-408b-8d1f-609b16e916ae\"}\n"} -{"Time":"2022-12-07T09:15:34.580743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" ptytest.go:103: 2022-12-07 08:15:34.580: cmd: stdout: \"\u003e Your Coder deployment hasn't been set up!\"\n"} -{"Time":"2022-12-07T09:15:34.581601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" t.go:81: 2022-12-07 08:15:34.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57008\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"148.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"fbd09586-267c-4f9c-a614-9c53a09b9646\"}\n"} -{"Time":"2022-12-07T09:15:34.581712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" t.go:81: 2022-12-07 08:15:34.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57008\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"48.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"36537204-ac9e-4e25-9c38-78d150c5fbcf\"}\n"} -{"Time":"2022-12-07T09:15:34.582036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" ptytest.go:103: 2022-12-07 08:15:34.582: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:34.582045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" ptytest.go:103: 2022-12-07 08:15:34.582: cmd: stdout: \" Welcome to Coder, testuser! You're authenticated. \"\n"} -{"Time":"2022-12-07T09:15:34.582047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" ptytest.go:103: 2022-12-07 08:15:34.582: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:34.582048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" ptytest.go:103: 2022-12-07 08:15:34.582: cmd: stdout: \" Get started by creating a template: \\x1b[;mcoder templates init\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.582168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" login_test.go:87: 2022-12-07 08:15:34.582: cmd: matched \"Welcome to Coder\" = \"\u003e Your Coder deployment hasn't been set up!\\r\\n \\r\\n Welcome to Coder\"\n"} -{"Time":"2022-12-07T09:15:34.582217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" ptytest.go:80: 2022-12-07 08:15:34.582: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.582784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.58279+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY"} -{"Time":"2022-12-07T09:15:34.582791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":"=== CONT TestLogin/InitialUserTTY\n"} -{"Time":"2022-12-07T09:15:34.58483+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.584834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.584836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.584838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.58485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.584893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.584895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.584899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.584925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.585051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.584 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.585061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.585 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.586668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"528.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f4de9c50-c532-4ff3-a4c7-5ea0fa296a66\"}\n"} -{"Time":"2022-12-07T09:15:34.586781+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY"} -{"Time":"2022-12-07T09:15:34.586785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":"=== CONT TestLogin/InitialUserTTY\n"} -{"Time":"2022-12-07T09:15:34.586787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" t.go:81: 2022-12-07 08:15:34.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57013\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"88.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9f7f9aa9-5e1d-4984-9334-5469d620333d\"}\n"} -{"Time":"2022-12-07T09:15:34.586829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.586832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.586834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ef559efe-5047-41c8-b1b6-e2873107e38a\"}\n"} -{"Time":"2022-12-07T09:15:34.587108+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY"} -{"Time":"2022-12-07T09:15:34.587132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":"=== CONT TestLogin/InitialUserTTY\n"} -{"Time":"2022-12-07T09:15:34.587156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" t.go:81: 2022-12-07 08:15:34.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57013\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"24.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"5047aafa-0eb8-4ea6-bc0d-d54b126875f1\"}\n"} -{"Time":"2022-12-07T09:15:34.587564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.587: cmd: stdout: \"\u003e Your Coder deployment hasn't been set up!\"\n"} -{"Time":"2022-12-07T09:15:34.587818+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.587823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.587825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"438.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"29b35d54-afcb-4a75-b353-d3636931ed32\"}\n"} -{"Time":"2022-12-07T09:15:34.588026+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY"} -{"Time":"2022-12-07T09:15:34.58803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":"=== CONT TestLogin/InitialUserTTY\n"} -{"Time":"2022-12-07T09:15:34.588031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:64: 2022-12-07 08:15:34.587: cmd: matched \"first user?\" = \"\u003e Your Coder deployment hasn't been set up!\\r\\n\u003e Would you like to create the first user?\"\n"} -{"Time":"2022-12-07T09:15:34.588033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:65: 2022-12-07 08:15:34.587: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:34.588231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.588: cmd: stdout: \"\u003e Would you like to create the first user? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:34.588384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:64: 2022-12-07 08:15:34.588: cmd: matched \"username\" = \" (\\x1b[1myes\\x1b[0m/no) yes\\r\\n\u003e What \\x1b[;musername\"\n"} -{"Time":"2022-12-07T09:15:34.588387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:65: 2022-12-07 08:15:34.588: cmd: stdin: \"testuser\\r\"\n"} -{"Time":"2022-12-07T09:15:34.588608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.588: cmd: stdout: \"\u003e What \\x1b[;musername\\x1b[0m would you like? (mtojek) testuser\"\n"} -{"Time":"2022-12-07T09:15:34.588615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:64: 2022-12-07 08:15:34.588: cmd: matched \"email\" = \"\\x1b[0m would you like? (mtojek) testuser\\r\\n\u003e What's your \\x1b[;memail\"\n"} -{"Time":"2022-12-07T09:15:34.588617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:65: 2022-12-07 08:15:34.588: cmd: stdin: \"user@coder.com\\r\"\n"} -{"Time":"2022-12-07T09:15:34.58862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.588: cmd: stdout: \"\u003e What's your \\x1b[;memail\\x1b[0m ? user@coder.com\"\n"} -{"Time":"2022-12-07T09:15:34.588801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:64: 2022-12-07 08:15:34.588: cmd: matched \"password\" = \"\\x1b[0m ? user@coder.com\\r\\n\u003e Enter a \\x1b[;mpassword\"\n"} -{"Time":"2022-12-07T09:15:34.588806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:65: 2022-12-07 08:15:34.588: cmd: stdin: \"password\\r\"\n"} -{"Time":"2022-12-07T09:15:34.588957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.588: cmd: stdout: \"\u003e Enter a \\x1b[;mpassword\\x1b[0m : password\"\n"} -{"Time":"2022-12-07T09:15:34.589453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:64: 2022-12-07 08:15:34.589: cmd: matched \"password\" = \"\\x1b[0m : password\"\n"} -{"Time":"2022-12-07T09:15:34.589458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:65: 2022-12-07 08:15:34.589: cmd: stdin: \"password\\r\"\n"} -{"Time":"2022-12-07T09:15:34.589518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.589: cmd: stdout: \"\u003e Confirm \\x1b[;mpassword\\x1b[0m : password\"\n"} -{"Time":"2022-12-07T09:15:34.589827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:64: 2022-12-07 08:15:34.589: cmd: matched \"trial\" = \"\\r\\n\u003e Confirm \\x1b[;mpassword\\x1b[0m : password\\r\\n\u003e Start a 30-day trial\"\n"} -{"Time":"2022-12-07T09:15:34.58983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:65: 2022-12-07 08:15:34.589: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:34.590031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.589: cmd: stdout: \"\u003e Start a 30-day trial of Enterprise? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:34.590792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" t.go:81: 2022-12-07 08:15:34.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57013\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"115.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"eb4bae31-9eb7-4489-954c-05172b2c360f\"}\n"} -{"Time":"2022-12-07T09:15:34.591078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" t.go:81: 2022-12-07 08:15:34.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57013\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"45.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5ac3afd9-0be8-4924-babd-f99abf7a8fff\"}\n"} -{"Time":"2022-12-07T09:15:34.59144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.591: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:34.591445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.591: cmd: stdout: \" Welcome to Coder, testuser! You're authenticated. \"\n"} -{"Time":"2022-12-07T09:15:34.591446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.591: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:34.591448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:103: 2022-12-07 08:15:34.591: cmd: stdout: \" Get started by creating a template: \\x1b[;mcoder templates init\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.592584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" login_test.go:67: 2022-12-07 08:15:34.592: cmd: matched \"Welcome to Coder\" = \" of Enterprise? (\\x1b[1myes\\x1b[0m/no) yes\\r\\n \\r\\n Welcome to Coder\"\n"} -{"Time":"2022-12-07T09:15:34.592589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" ptytest.go:80: 2022-12-07 08:15:34.592: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.592592+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.592593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.592595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.592 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"496.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9b4b1c49-5d3a-46d8-81f7-965898826fe5\"}\n"} -{"Time":"2022-12-07T09:15:34.593268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.593271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.593273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.592 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.593275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.592 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.593277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.592 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.593279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.592 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.593281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.592 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.593429+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY"} -{"Time":"2022-12-07T09:15:34.593431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":"=== CONT TestLogin/InitialUserTTY\n"} -{"Time":"2022-12-07T09:15:34.593433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.593435+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL"} -{"Time":"2022-12-07T09:15:34.593438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL","Output":"=== CONT TestLogin/InitialUserBadLoginURL\n"} -{"Time":"2022-12-07T09:15:34.594666+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.59467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.594684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.594 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"587.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d65f13f3-2886-46ef-9829-6dbb45bcfe44\"}\n"} -{"Time":"2022-12-07T09:15:34.599294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin","Output":"--- PASS: TestLogin (0.00s)\n"} -{"Time":"2022-12-07T09:15:34.5993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Output":" --- PASS: TestLogin/InitialUserNoTTY (0.00s)\n"} -{"Time":"2022-12-07T09:15:34.599302+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserNoTTY","Elapsed":0} -{"Time":"2022-12-07T09:15:34.599323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Output":" --- PASS: TestLogin/ExistingUserValidTokenTTY (0.01s)\n"} -{"Time":"2022-12-07T09:15:34.599331+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserValidTokenTTY","Elapsed":0.01} -{"Time":"2022-12-07T09:15:34.599334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Output":" --- PASS: TestLogin/TokenFlag (0.01s)\n"} -{"Time":"2022-12-07T09:15:34.599336+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/TokenFlag","Elapsed":0.01} -{"Time":"2022-12-07T09:15:34.599338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Output":" --- PASS: TestLogin/ExistingUserInvalidTokenTTY (0.01s)\n"} -{"Time":"2022-12-07T09:15:34.599339+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/ExistingUserInvalidTokenTTY","Elapsed":0.01} -{"Time":"2022-12-07T09:15:34.59935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Output":" --- PASS: TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt (0.03s)\n"} -{"Time":"2022-12-07T09:15:34.599353+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTYConfirmPasswordFailAndReprompt","Elapsed":0.03} -{"Time":"2022-12-07T09:15:34.599355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Output":" --- PASS: TestLogin/InitialUserFlags (0.01s)\n"} -{"Time":"2022-12-07T09:15:34.599357+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserFlags","Elapsed":0.01} -{"Time":"2022-12-07T09:15:34.599358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Output":" --- PASS: TestLogin/InitialUserTTY (0.01s)\n"} -{"Time":"2022-12-07T09:15:34.599361+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserTTY","Elapsed":0.01} -{"Time":"2022-12-07T09:15:34.599362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL","Output":" --- PASS: TestLogin/InitialUserBadLoginURL (0.01s)\n"} -{"Time":"2022-12-07T09:15:34.599364+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin/InitialUserBadLoginURL","Elapsed":0.01} -{"Time":"2022-12-07T09:15:34.599366+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogin","Elapsed":0} -{"Time":"2022-12-07T09:15:34.599367+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.599368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.602257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.602 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"94.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6e31e7cb-e270-46fa-836a-55f0d88ce60b\"}\n"} -{"Time":"2022-12-07T09:15:34.602624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.602 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"36.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a1be93fa-2a8e-479c-9ca9-8b25068af0bb\"}\n"} -{"Time":"2022-12-07T09:15:34.603058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.602 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"431.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"04e974f8-ca42-46bc-afd4-8fc220fcb823\"}\n"} -{"Time":"2022-12-07T09:15:34.603672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/organizations/be81fecb-a814-4779-9b22-5309e54db0e2/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"524.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"13401915-be52-4656-8dd0-724ce61b9d68\"}\n"} -{"Time":"2022-12-07T09:15:34.60378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ssh_test.go:77: waiting for template version job 0096ded6-6047-4251-98cc-094cf59c655c\n"} -{"Time":"2022-12-07T09:15:34.604864+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:34.604868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:34.604869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.604 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.604872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.604 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.608983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.608991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.608993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.608 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:34.612109+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.612118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.612121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.611 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"407.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d36d259-be0b-4b52-b221-4ac26b50789b\"}\n"} -{"Time":"2022-12-07T09:15:34.612188+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.612191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.612195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.612 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"726.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9cae71f4-10b7-4272-ad80-0ba86ec3d9f4\"}\n"} -{"Time":"2022-12-07T09:15:34.612512+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.612523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.612525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.612 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"467.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44cff0d7-c07a-4b7f-939f-03279fc86f1b\"}\n"} -{"Time":"2022-12-07T09:15:34.613919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.613924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.613926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.613 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.61393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.613 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.613999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.613 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:34.614003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.613 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteMultiple_prompted974375322/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.614058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.613 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteMultiple_prompted974375322/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.614062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.614 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteMultiple_prompted974375322/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.614085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.614 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.614237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.614 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:34.618324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.618 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"588.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"82d1d815-f131-49e9-acfa-4f131da1b247\"}\n"} -{"Time":"2022-12-07T09:15:34.619777+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.619784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.619786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.619 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"531.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8577b30e-2ec4-4a3a-bb47-2d359bb9c054\"}\n"} -{"Time":"2022-12-07T09:15:34.629726+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.629735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.629738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.629 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"508.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1d14ac9b-a226-401d-8700-d4252cc29b9e\"}\n"} -{"Time":"2022-12-07T09:15:34.636047+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.636057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.636059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"446.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"818cea8a-23e5-439a-8793-87f1f7116223\"}\n"} -{"Time":"2022-12-07T09:15:34.637329+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.637334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.637347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"360.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0cd78ed-b8c2-44b5-ad52-59391d82c4a9\"}\n"} -{"Time":"2022-12-07T09:15:34.637358+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.63736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.637361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.637 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.637363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.637 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.637366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.637 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.637368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.637 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.637369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.637 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.637371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.637 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.637519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"395.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d60f0524-a6f3-4ff2-a551-ad85254cbb0b\"}\n"} -{"Time":"2022-12-07T09:15:34.641774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.641782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.641784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.641 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fbc99a83-e2a0-427c-a7af-ba9457df073c\"}\n"} -{"Time":"2022-12-07T09:15:34.642968+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.642972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.642976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.642 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"346.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e9c2acc5-37d9-49e3-be3b-5e5845ade871\"}\n"} -{"Time":"2022-12-07T09:15:34.643649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.643 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.643657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.643 [DEBUG]\t(provisionerd-stoic_shamir5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.643659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.643 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"008cf6b8-a24d-4d3e-acef-283112ccb00c\"}\n"} -{"Time":"2022-12-07T09:15:34.655031+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:34.65508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:34.655085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.655087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.655146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.655154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.655157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.655159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.655161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.655163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:34.655165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:34.655169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:34.655171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:34.655173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:34.655175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:34.655176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:34.655179+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.65518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.655182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4fbfd7a6-5614-48d1-9145-c81e8c12f629\"}\n"} -{"Time":"2022-12-07T09:15:34.655185+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:34.655186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:34.655187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.654 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.655192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.655 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:34.655193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.655 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.655281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.655: cmd: stdout: \"\\x1b[1A\\r✔ Queued [787ms]\"\n"} -{"Time":"2022-12-07T09:15:34.655284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.655: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.655285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.655: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} -{"Time":"2022-12-07T09:15:34.655287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.655: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.655288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.655: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [51ms]\"\n"} -{"Time":"2022-12-07T09:15:34.65529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.655: cmd: stdout: \"⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.658982+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.658988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.65899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.658 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.659045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.659 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.659088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.659 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:34.659125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.659 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteMultiple_--yes1546984490/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.65915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.659 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteMultiple_--yes1546984490/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.659195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.659 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateDeleteMultiple_--yes1546984490/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.659202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.659 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.659297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.659 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:34.660736+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.660739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.660748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"357.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"10b7d671-3548-4914-ba44-7abf69770c9b\"}\n"} -{"Time":"2022-12-07T09:15:34.661121+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.661124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.661127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8505837b-3e5b-47ae-b6c3-50765a8e7015\"}\n"} -{"Time":"2022-12-07T09:15:34.66333+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.663334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.663339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.662 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"11.375µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:34.664492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.664 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.664496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.664 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.666136+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.66614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.666142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.665 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44fcb8d5-cae7-4b05-93c5-d710bcf9d6ed\"}\n"} -{"Time":"2022-12-07T09:15:34.667098+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.667104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.667105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.667 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"665.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f4453e40-0c08-4513-9710-3684563643c2\"}\n"} -{"Time":"2022-12-07T09:15:34.66807+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.668082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.668085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.667 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspacebuilds/70169787-57a4-4004-9b0e-241b776935d6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"522.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ab93cb0-05a1-48eb-bc5e-f4f59f17cc28\"}\n"} -{"Time":"2022-12-07T09:15:34.668589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.668 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5878d56-dc72-4e19-8bf8-3c9e54715d27\"}\n"} -{"Time":"2022-12-07T09:15:34.673136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"35µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"742b0c29-5767-47ff-92ce-f15c47342582\"}\n"} -{"Time":"2022-12-07T09:15:34.673477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"34.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"314bd3a9-de62-4c7d-b1f0-6112d8483a8e\"}\n"} -{"Time":"2022-12-07T09:15:34.674112+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.674117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.674119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.673 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.6743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.674313+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.674315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.674316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/users/me/workspace/lucid-roentgen1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6026ef13-1ece-44b1-85f8-c00ce97718e0\"}\n"} -{"Time":"2022-12-07T09:15:34.674417+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.674426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.674427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:34.674431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"size_bytes\": 2, \"path\": \"/tmp/TestShowExists2135269818/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.674846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"size_bytes\": 41, \"path\": \"/tmp/TestShowExists2135269818/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.67485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"size_bytes\": 41, \"path\": \"/tmp/TestShowExists2135269818/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.674852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"workspace_name\": \"suspicious-jackson3\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:34.674854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.674857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.674 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.675591+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline"} -{"Time":"2022-12-07T09:15:34.675606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":"=== CONT TestScheduleOverride/NoDeadline\n"} -{"Time":"2022-12-07T09:15:34.675608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.675 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaces.go:788\u003e\t(*API).putExtendWorkspace\textending workspace\t{\"request_id\": \"1c98869b-bc97-4621-b08f-ffcdce74e747\"} ...\n"} -{"Time":"2022-12-07T09:15:34.675611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" \"error\": workspace shutdown is manual:\n"} -{"Time":"2022-12-07T09:15:34.675642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" github.com/coder/coder/coderd.(*API).putExtendWorkspace.func1\n"} -{"Time":"2022-12-07T09:15:34.675645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" /Users/mtojek/code/coder/coderd/workspaces.go:760\n"} -{"Time":"2022-12-07T09:15:34.675647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.675 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPUT\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72/extend\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"724.375µs\", \"status_code\": 409, \"latency_ms\": 0, \"request_id\": \"1c98869b-bc97-4621-b08f-ffcdce74e747\"}\n"} -{"Time":"2022-12-07T09:15:34.676256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.676 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56770\", \"path\": \"/api/v2/workspaces/ae2bb7ac-a6f1-48f8-996a-cc53e96bec72\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"290.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4cd9ffeb-88c0-486b-b527-d04160fe52c6\"}\n"} -{"Time":"2022-12-07T09:15:34.676552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" t.go:81: 2022-12-07 08:15:34.676 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:34.676943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.676948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride","Output":"--- PASS: TestScheduleOverride (0.00s)\n"} -{"Time":"2022-12-07T09:15:34.676951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Output":" --- PASS: TestScheduleOverride/InvalidDuration (0.69s)\n"} -{"Time":"2022-12-07T09:15:34.676953+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/InvalidDuration","Elapsed":0.69} -{"Time":"2022-12-07T09:15:34.676956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Output":" --- PASS: TestScheduleOverride/OK (1.05s)\n"} -{"Time":"2022-12-07T09:15:34.676958+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/OK","Elapsed":1.05} -{"Time":"2022-12-07T09:15:34.676959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Output":" --- PASS: TestScheduleOverride/NoDeadline (1.90s)\n"} -{"Time":"2022-12-07T09:15:34.676961+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride/NoDeadline","Elapsed":1.9} -{"Time":"2022-12-07T09:15:34.676963+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestScheduleOverride","Elapsed":0} -{"Time":"2022-12-07T09:15:34.676964+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} -{"Time":"2022-12-07T09:15:34.676966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== CONT TestLogout/Logout\n"} -{"Time":"2022-12-07T09:15:34.680086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.679 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"123.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b2f960d6-1982-4a20-aea3-6864cf3df63c\"}\n"} -{"Time":"2022-12-07T09:15:34.680545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.680 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"166.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5489beb0-e554-4b9a-a1a7-e6f5b8c9a176\"}\n"} -{"Time":"2022-12-07T09:15:34.680554+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.680555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.680557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.680 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"534.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c9c222dc-59cd-42a7-8043-d4f6b64fbb82\"}\n"} -{"Time":"2022-12-07T09:15:34.682255+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} -{"Time":"2022-12-07T09:15:34.682259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== CONT TestLogout/Logout\n"} -{"Time":"2022-12-07T09:15:34.682261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.682 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"53.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ff7f088b-15bb-43da-9fea-32f5a900deaf\"}\n"} -{"Time":"2022-12-07T09:15:34.682391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.682 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"25.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b2c3a7ca-7996-464c-985d-4bad9467192c\"}\n"} -{"Time":"2022-12-07T09:15:34.682621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.682: cmd: stdout: \"Open the following in your browser:\"\n"} -{"Time":"2022-12-07T09:15:34.682625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.682: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.682627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.682: cmd: stdout: \"\\thttp://localhost:57042/cli-auth\"\n"} -{"Time":"2022-12-07T09:15:34.682628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.682: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.68263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" logout_test.go:25: 2022-12-07 08:15:34.682: cmd: matched \"Paste your token here:\" = \"Open the following in your browser:\\r\\n\\r\\n\\thttp://localhost:57042/cli-auth\\r\\n\\r\\n\u003e Paste your token here:\"\n"} -{"Time":"2022-12-07T09:15:34.682719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" logout_test.go:25: 2022-12-07 08:15:34.682: cmd: stdin: \"Ve2vMUyEWt-3iYzZF6WZY4gQ36J6ZKLHE\\r\"\n"} -{"Time":"2022-12-07T09:15:34.682781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.682: cmd: stdout: \"\u003e Paste your token here: Ve2vMUyEWt-3iYzZF6WZY4gQ36J6ZKLHE\"\n"} -{"Time":"2022-12-07T09:15:34.684056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.683 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"538.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6b02c456-d935-4888-891d-8c14388a2453\"}\n"} -{"Time":"2022-12-07T09:15:34.684489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.684 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"258.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad67f264-3ffb-4ea4-9d25-9f8a8b4a812f\"}\n"} -{"Time":"2022-12-07T09:15:34.685018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.684: cmd: stdout: \"\u003e Welcome to Coder, testuser! You're authenticated.\"\n"} -{"Time":"2022-12-07T09:15:34.686586+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.686591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.686608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.686 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"365.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5f0f17bc-73c4-4a1d-b932-7e94daa45412\"}\n"} -{"Time":"2022-12-07T09:15:34.687271+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.687274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.687276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.687 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"369.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9ef33cbf-d19a-4789-a853-46b101f5903e\"}\n"} -{"Time":"2022-12-07T09:15:34.687527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.687532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.687534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.687 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.687536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.687 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.687538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.687 [DEBUG]\t(provisionerd-pedantic_moore1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.68754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.687 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"958eed10-12c7-4aac-a93b-beefb6c30e41\"}\n"} -{"Time":"2022-12-07T09:15:34.689101+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} -{"Time":"2022-12-07T09:15:34.689106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== CONT TestLogout/Logout\n"} -{"Time":"2022-12-07T09:15:34.689107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" logout_test.go:25: 2022-12-07 08:15:34.688: cmd: matched \"Welcome to Coder\" = \" Ve2vMUyEWt-3iYzZF6WZY4gQ36J6ZKLHE\\r\\n\u003e Welcome to Coder\"\n"} -{"Time":"2022-12-07T09:15:34.689109+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.689111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.689112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.688 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templateversions/dca34262-73a4-4f2f-92ea-3b6b930b15d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd8cb7b3-962e-41ab-9f0e-f899bc83dc66\"}\n"} -{"Time":"2022-12-07T09:15:34.690764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.689 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/organizations/857b3f85-c201-4d20-a9ba-1292089fc2d6/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"437.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"126fdfe0-3e2d-4674-bc5b-25def3eec4fb\"}\n"} -{"Time":"2022-12-07T09:15:34.69077+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} -{"Time":"2022-12-07T09:15:34.690772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== CONT TestLogout/Logout\n"} -{"Time":"2022-12-07T09:15:34.690773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.690 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"f305b861-f350-432c-89dc-73104c01cb02\"}\n"} -{"Time":"2022-12-07T09:15:34.690775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.690 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3d5bb70b-b747-4ccf-94af-cf4db5180788\"}\n"} -{"Time":"2022-12-07T09:15:34.692128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.692133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.692134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" templatedelete_test.go:138: 2022-12-07 08:15:34.691: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:34.692145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.691 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"21.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"ab6a803e-5b1a-4fa3-9d18-de6e96dfe977\"}\n"} -{"Time":"2022-12-07T09:15:34.692484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.692 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"acc687b8-e754-469a-82c2-867beded63bd\"}\n"} -{"Time":"2022-12-07T09:15:34.693255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.693 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9afe124c-f41c-4dfa-b9b2-e4cb906efc1a\"}\n"} -{"Time":"2022-12-07T09:15:34.69326+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.693262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.693263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.693 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2cbce124-dfc6-4388-8b74-d9fcec9c03a2\"}\n"} -{"Time":"2022-12-07T09:15:34.694361+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} -{"Time":"2022-12-07T09:15:34.694365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== CONT TestLogout/Logout\n"} -{"Time":"2022-12-07T09:15:34.694372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" logout_test.go:44: 2022-12-07 08:15:34.694: cmd: matched \"Are you sure you want to log out?\" = \", testuser! You're authenticated.\\r\\n\u003e Are you sure you want to log out?\"\n"} -{"Time":"2022-12-07T09:15:34.694374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" logout_test.go:45: 2022-12-07 08:15:34.694: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:34.694376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" t.go:81: 2022-12-07 08:15:34.694 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57042\", \"path\": \"/api/v2/users/logout\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"21.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c29cb67b-c871-427b-9e8a-0578befb353f\"}\n"} -{"Time":"2022-12-07T09:15:34.694457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.694459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.694461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" ptytest.go:103: 2022-12-07 08:15:34.694: cmd: stdout: \"yes\"\n"} -{"Time":"2022-12-07T09:15:34.694463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout"} -{"Time":"2022-12-07T09:15:34.694464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":"=== CONT TestLogout/Logout\n"} -{"Time":"2022-12-07T09:15:34.694465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.694: cmd: stdout: \"\u003e Are you sure you want to log out? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:34.694882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:103: 2022-12-07 08:15:34.694: cmd: stdout: \"\u003e You are no longer logged in. You can log in using 'coder login \u003curl\u003e'.\"\n"} -{"Time":"2022-12-07T09:15:34.695159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" logout_test.go:46: 2022-12-07 08:15:34.695: cmd: matched \"You are no longer logged in. You can log in using 'coder login \u003curl\u003e'.\" = \" (\\x1b[1myes\\x1b[0m/no) yes\\r\\n\u003e You are no longer logged in. You can log in using 'coder login \u003curl\u003e'.\"\n"} -{"Time":"2022-12-07T09:15:34.69565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.695656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" ptytest.go:80: 2022-12-07 08:15:34.695: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.695731+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.695737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.698453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"96.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"79db3a05-43a8-4941-a32a-3333f99fe141\"}\n"} -{"Time":"2022-12-07T09:15:34.698789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"66.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a675cb4f-503b-4d62-8080-628702e3bdcc\"}\n"} -{"Time":"2022-12-07T09:15:34.699196+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.699219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.699256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/organizations/857b3f85-c201-4d20-a9ba-1292089fc2d6/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.919375ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"4a6a73e7-ad43-4fad-8ab2-731b2509df57\"}\n"} -{"Time":"2022-12-07T09:15:34.699605+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.699618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.699624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"710.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"12acdca4-306e-48f0-bb4b-2d9e3dcd9e59\"}\n"} -{"Time":"2022-12-07T09:15:34.699633+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.699636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.69964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templates/f3f1fd0d-fb88-4625-8a44-f79ede2e6ce9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6c1277b5-cda9-42b1-bac4-37ef841fe826\"}\n"} -{"Time":"2022-12-07T09:15:34.699873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" ptytest.go:103: 2022-12-07 08:15:34.699: cmd: stdout: \"\u003e Delete these templates: \\x1b[;mstupefied-lehmann5\\x1b[0m ? (yes/\\x1b[1mno\\x1b[0m) Deleted template \\x1b[;mstupefied-lehmann5\\x1b[0m at Dec 7 09:15:34!\"\n"} -{"Time":"2022-12-07T09:15:34.700565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.700 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56926\", \"path\": \"/api/v2/templates/f3f1fd0d-fb88-4625-8a44-f79ede2e6ce9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"79.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"c328a721-43df-4cc9-8862-3adc6432cbef\"}\n"} -{"Time":"2022-12-07T09:15:34.700644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" ptytest.go:80: 2022-12-07 08:15:34.700: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.700726+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.70073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.700732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.700 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/organizations/d4ed2fd0-4c94-4a6d-bcb4-d9ad01e33236/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"762.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b1ee1873-212a-4c30-881d-d21c64d241db\"}\n"} -{"Time":"2022-12-07T09:15:34.700896+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.70091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.700913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" t.go:81: 2022-12-07 08:15:34.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:34.700917+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.700919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.70092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" list_test.go:22: waiting for template version job bbef5105-99fb-4b3a-b490-d96b4e864bb7\n"} -{"Time":"2022-12-07T09:15:34.701661+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.701669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.701672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.701 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:34.701675+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector"} -{"Time":"2022-12-07T09:15:34.701676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":"=== CONT TestTemplateDelete/Selector\n"} -{"Time":"2022-12-07T09:15:34.701678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.70168+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.701681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.704239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.703 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"118.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4cfc703f-1914-4607-8dc4-9ade77f921c0\"}\n"} -{"Time":"2022-12-07T09:15:34.704747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.704 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"45.084µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0ba44092-217a-49f7-a192-ea29d2a03c7c\"}\n"} -{"Time":"2022-12-07T09:15:34.705985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"535.041µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2e209c67-03d9-418f-b073-90e2840c7ff9\"}\n"} -{"Time":"2022-12-07T09:15:34.705991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.705993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.705995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"08686cc3-041e-4283-b77e-8952924d0f8f\"}\n"} -{"Time":"2022-12-07T09:15:34.706682+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.706685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.706687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/organizations/3b442a7e-a114-455a-a591-66a2768744ea/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"692.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e2b14213-93f0-41f6-88f4-114c19146764\"}\n"} -{"Time":"2022-12-07T09:15:34.706689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ssh_test.go:208: waiting for template version job 5da438a1-ba8e-455c-a00b-8c526c61b39b\n"} -{"Time":"2022-12-07T09:15:34.706691+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:34.706692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:34.706694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.706696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.706777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.70678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.706782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.706784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:34.706841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:34.706844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:34.706846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.706847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:34.706982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:34.706986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\", \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:34.707492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.707: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:34.707495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.707: cmd: stdout: \"✔ Detecting persistent resources [0ms]\"\n"} -{"Time":"2022-12-07T09:15:34.707497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.707: cmd: stdout: \"⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.707498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.707: cmd: stdout: \"\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\"\n"} -{"Time":"2022-12-07T09:15:34.707505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.707: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.708429+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.708432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.708434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.708 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.75µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:34.709744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.709 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.709749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.709 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.71317+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.713176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.713177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.712 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"556.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aa301531-c11a-452f-9fa8-00de067579e2\"}\n"} -{"Time":"2022-12-07T09:15:34.713463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.713467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.71347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.713 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"499.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7584f9b0-2d4d-42ce-89dd-d0faf5603f3a\"}\n"} -{"Time":"2022-12-07T09:15:34.715093+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.715097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.715099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.715101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.715103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.715107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.715109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.715111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.715113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.715115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.715117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.714 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.717423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.717 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"512.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12469d00-aea4-4d22-bf51-5bcaa57da466\"}\n"} -{"Time":"2022-12-07T09:15:34.725325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.725336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.725338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.725 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.725341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.725 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.725343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.725 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.725344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.725 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.727562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.727573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.727575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.727 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3392cfa5-de6e-4b1e-a41d-d4b414b5839d\"}\n"} -{"Time":"2022-12-07T09:15:34.729883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.729889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.729891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.729 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a32661d6-ad54-4a6d-9750-675fd9b2ea2e\"}\n"} -{"Time":"2022-12-07T09:15:34.733079+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.733085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.733092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.731 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"306.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"08567f5a-1e6c-458d-8181-4f85f2fd5b47\"}\n"} -{"Time":"2022-12-07T09:15:34.735903+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.735908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.735909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.735 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"47bf9880-03d6-49aa-9b17-d8e2c9cd835d\"}\n"} -{"Time":"2022-12-07T09:15:34.736937+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.736941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.736974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"564.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58550243-7a09-459c-a719-e0728fc461c5\"}\n"} -{"Time":"2022-12-07T09:15:34.741608+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.741614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.741616+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.741 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"251.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3aa494cd-cfd0-4e5e-b9d3-aa9048c5997a\"}\n"} -{"Time":"2022-12-07T09:15:34.751213+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.751244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.751246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.751 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96e60fbb-cb07-4a92-8251-f57304b07764\"}\n"} -{"Time":"2022-12-07T09:15:34.751737+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.75174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.751741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.75185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.751854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:34.751945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHImmediateExit334889163/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.751948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"size_bytes\": 112, \"path\": \"/tmp/TestSSHImmediateExit334889163/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.751951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHImmediateExit334889163/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.751952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.751986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.751 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:34.754177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62405a50-ebe9-4354-9028-52bb50a89ee4\"}\n"} -{"Time":"2022-12-07T09:15:34.756835+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.756839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.756841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.756 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"247.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16fb4faf-011c-49a0-8ce0-8d11bf7165cf\"}\n"} -{"Time":"2022-12-07T09:15:34.756932+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:34.756935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:34.756938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.756 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.756981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.756 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.757018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.756 [DEBUG]\t(provisionerd-sad_williams0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.757063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.75708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.757 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.757119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"470627be-3bf2-4755-9a81-32653bcc7976\"}\n"} -{"Time":"2022-12-07T09:15:34.757246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/a4d483d1-cdc5-4198-959a-64d91fb00351/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"989.39725ms\", \"status_code\": 101, \"latency_ms\": 989, \"request_id\": \"dbb89217-ae38-469b-82be-b63bc86970b2\"}\n"} -{"Time":"2022-12-07T09:15:34.758916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/a4d483d1-cdc5-4198-959a-64d91fb00351\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.053417ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"67af2c19-af43-42c8-bb00-8e56630c66f5\"}\n"} -{"Time":"2022-12-07T09:15:34.759024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.759: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [101ms]\"\n"} -{"Time":"2022-12-07T09:15:34.759383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/a4d483d1-cdc5-4198-959a-64d91fb00351\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"340µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58d850b5-a168-498b-8491-247ea59de3ef\"}\n"} -{"Time":"2022-12-07T09:15:34.759759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/a4d483d1-cdc5-4198-959a-64d91fb00351/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"242.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0d07abf1-0393-4164-b60d-09de9bb76b7d\"}\n"} -{"Time":"2022-12-07T09:15:34.75999+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.759993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.759995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.759 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.760032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.760081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.760131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:34.760134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:34.760136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/a4d483d1-cdc5-4198-959a-64d91fb00351/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"270.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e619ec74-106d-4535-9c2d-14d7e965c6c8\"}\n"} -{"Time":"2022-12-07T09:15:34.760151+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.760153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.76016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.760198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.760226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.760253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.760332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.760356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.760522+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.760525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.760527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e38c3f3-bb36-4fe0-8455-cee6855463c3\"}\n"} -{"Time":"2022-12-07T09:15:34.760655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:34.760663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:34.760665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/templateversions/a4d483d1-cdc5-4198-959a-64d91fb00351/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"301.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4803552-5a9c-4d18-a028-f885876ae91a\"}\n"} -{"Time":"2022-12-07T09:15:34.760762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.760: cmd: stdout: \"┌──────────┐\"\n"} -{"Time":"2022-12-07T09:15:34.760774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.760: cmd: stdout: \"│ Template │\"\n"} -{"Time":"2022-12-07T09:15:34.760776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.760: cmd: stdout: \"│ Preview │\"\n"} -{"Time":"2022-12-07T09:15:34.760778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.760: cmd: stdout: \"├──────────┤\"\n"} -{"Time":"2022-12-07T09:15:34.76078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.760: cmd: stdout: \"│ RESOURCE │\"\n"} -{"Time":"2022-12-07T09:15:34.760781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.760: cmd: stdout: \"├──────────┤\"\n"} -{"Time":"2022-12-07T09:15:34.760783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.760: cmd: stdout: \"└──────────┘\"\n"} -{"Time":"2022-12-07T09:15:34.761012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" templatecreate_test.go:116: 2022-12-07 08:15:34.760: cmd: matched \"Confirm create?\" = \"\\x1b[0m bananas\\r\\n\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [787ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [0ms]\\r\\n⧗ \\x1b[;mParsing template parameters\\x1b[0m \\r\\n\\x1b[1A\\r✔ Parsing template parameters [51ms]\\r\\n⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \\r\\n \\r\\n✔ Detecting persistent resources [0ms]\\r\\n⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \\r\\n\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Cleaning Up [101ms]\\r\\n┌──────────┐\\r\\n│ Template │\\r\\n│ Preview │\\r\\n├──────────┤\\r\\n│ RESOURCE │\\r\\n├──────────┤\\r\\n└──────────┘\\r\\n\u003e Confirm create?\"\n"} -{"Time":"2022-12-07T09:15:34.761025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" templatecreate_test.go:117: 2022-12-07 08:15:34.760: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:34.761112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.761: cmd: stdout: \"\u003e Confirm create? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:34.761553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.761 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56858\", \"path\": \"/api/v2/organizations/e91b6d6a-25e4-4153-863f-a156e345bea7/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3f19b632-d868-46e0-bf32-21c1517bb226\"}\n"} -{"Time":"2022-12-07T09:15:34.761673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.761: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.761677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.761: cmd: stdout: \"The my-template template has been created at Dec 7 09:15:34! Developers can \"\n"} -{"Time":"2022-12-07T09:15:34.76168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.761: cmd: stdout: \"provision a workspace with this template using: \"\n"} -{"Time":"2022-12-07T09:15:34.761681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.761: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.761685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.761: cmd: stdout: \" \\x1b[;mcoder create --template=\\\"my-template\\\" [workspace name]\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:34.761687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:34.761: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.761747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" ptytest.go:80: 2022-12-07 08:15:34.761: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.76177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.761 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:34.761791+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.761796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.761797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.761 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f7b2fc2f-3822-402a-9c31-44047d904a93\"}\n"} -{"Time":"2022-12-07T09:15:34.76267+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter"} -{"Time":"2022-12-07T09:15:34.762673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":"=== CONT TestTemplateCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:34.762675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.762696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate","Output":"--- PASS: TestTemplateCreate (0.00s)\n"} -{"Time":"2022-12-07T09:15:34.762698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Output":" --- PASS: TestTemplateCreate/Create (0.36s)\n"} -{"Time":"2022-12-07T09:15:34.7627+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Create","Elapsed":0.36} -{"Time":"2022-12-07T09:15:34.762704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Output":" --- PASS: TestTemplateCreate/WithParameterExceedingCharLimit (0.01s)\n"} -{"Time":"2022-12-07T09:15:34.762706+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterExceedingCharLimit","Elapsed":0.01} -{"Time":"2022-12-07T09:15:34.762708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Output":" --- PASS: TestTemplateCreate/WithParameterFileNotContainingTheValue (0.31s)\n"} -{"Time":"2022-12-07T09:15:34.762714+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileNotContainingTheValue","Elapsed":0.31} -{"Time":"2022-12-07T09:15:34.762717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Output":" --- PASS: TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create) (1.06s)\n"} -{"Time":"2022-12-07T09:15:34.762719+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/Recreate_template_with_same_name_(create,_delete,_create)","Elapsed":1.06} -{"Time":"2022-12-07T09:15:34.762721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Output":" --- PASS: TestTemplateCreate/WithParameterFileContainingTheValue (1.02s)\n"} -{"Time":"2022-12-07T09:15:34.762722+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameterFileContainingTheValue","Elapsed":1.02} -{"Time":"2022-12-07T09:15:34.762723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Output":" --- PASS: TestTemplateCreate/WithParameter (1.31s)\n"} -{"Time":"2022-12-07T09:15:34.762725+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate/WithParameter","Elapsed":1.31} -{"Time":"2022-12-07T09:15:34.762726+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateCreate","Elapsed":0} -{"Time":"2022-12-07T09:15:34.76273+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:34.762731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:34.765351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"93.416µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"24568cc9-6e82-46ce-84b6-0ec15773570b\"}\n"} -{"Time":"2022-12-07T09:15:34.765622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"48.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cda74782-73d4-44b1-94f3-2c662f79c9d8\"}\n"} -{"Time":"2022-12-07T09:15:34.765682+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.765689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.765692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.765697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.765699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.765703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.76575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.765757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.765 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.766286+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:34.766294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:34.766296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.766 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"359.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cc18e998-768f-41f0-883b-432c392a8d12\"}\n"} -{"Time":"2022-12-07T09:15:34.766989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.766 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/organizations/acc171fe-c98b-476b-a97f-08e3bc001cb2/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"568.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1beffc99-da0c-4c42-90fa-30dd7a9b0494\"}\n"} -{"Time":"2022-12-07T09:15:34.767069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" ssh_test.go:139: waiting for template version job c00597f4-4112-4187-b8f7-456d58d88f25\n"} -{"Time":"2022-12-07T09:15:34.769005+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.76901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.769012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.768 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"571.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b11c70d5-34d0-4b0f-9f7d-e20086031e7e\"}\n"} -{"Time":"2022-12-07T09:15:34.775375+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.775382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.775424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.775 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.775553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.775 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.775624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.775 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.777119+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.777122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.777161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.777 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"436.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a6453aa7-7c00-4ab8-8a4d-ddf8c052ecf8\"}\n"} -{"Time":"2022-12-07T09:15:34.779915+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.779926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.779929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.779 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"420.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"71220809-e040-4b39-96a6-fa40ab6ef9f8\"}\n"} -{"Time":"2022-12-07T09:15:34.78251+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.782517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.782519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.782 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"478.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7d0d23c4-d603-4f39-939a-e5c0b4c34b88\"}\n"} -{"Time":"2022-12-07T09:15:34.786042+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.786054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.786056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.786 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"451.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"56167787-2c31-4083-ba78-0d94450fae2a\"}\n"} -{"Time":"2022-12-07T09:15:34.787223+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.787227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.787229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.787 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"346.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0d4b3335-b161-4496-98f7-0c1e9d7050dc\"}\n"} -{"Time":"2022-12-07T09:15:34.791756+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.79176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.791762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.791 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"745e5880-3be6-4e49-96a6-a5a31bcea71e\"}\n"} -{"Time":"2022-12-07T09:15:34.792564+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:34.792567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:34.792569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.792 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d1e706a6-4e98-4f0d-b36b-d1cb5084ebf8\"}\n"} -{"Time":"2022-12-07T09:15:34.798032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.798051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.798054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.797 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:34.800794+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.8008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.800802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.800 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.916µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:34.802116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.802 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.802341+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.802345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.802346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.802 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"444.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8464e22a-efe9-469f-a0bb-dcb92086f5b8\"}\n"} -{"Time":"2022-12-07T09:15:34.80235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.802351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.802353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.802 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.803603+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.803607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.803609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.803 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:34.804218+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.804221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.804223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"382.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2b40ebf8-47d5-4b80-b509-55063804c6d8\"}\n"} -{"Time":"2022-12-07T09:15:34.806875+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.806879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.806881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.806 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11197f4b-688a-4963-934e-6005dacb4e57\"}\n"} -{"Time":"2022-12-07T09:15:34.810633+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.810638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.81064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.810 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bc2c5ee5-7733-4112-b76a-3e368955b0f5\"}\n"} -{"Time":"2022-12-07T09:15:34.810699+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.810703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.810705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.810 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.810733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.810 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.810751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.810 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.810769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.810 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.810788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.810 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.810824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.810 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.811986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.811 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"498.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"80c5a79b-3a40-456e-a7ce-b085a1c3b0cd\"}\n"} -{"Time":"2022-12-07T09:15:34.815847+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.815859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.815862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.815 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.815866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.815 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.815869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.815 [DEBUG]\t(provisionerd-romantic_hofstadter5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.815906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.815 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"e02aacd3-9f7d-488c-9c46-588f1bf5ad33\"}\n"} -{"Time":"2022-12-07T09:15:34.816738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.816 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templateversions/2c6581e1-f8dc-4e30-a093-59a06f3af961\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4de7b1e7-8a9f-4a4e-98f6-05df8bf01bf0\"}\n"} -{"Time":"2022-12-07T09:15:34.8173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.817 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/organizations/67cd7c26-ca17-4861-9a4a-c9e6ac63feda/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c335e15e-1128-43ff-b9fa-78ced8a2978a\"}\n"} -{"Time":"2022-12-07T09:15:34.817468+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:34.817472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:34.817475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.817 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ee08bad4-838f-4a95-8a1c-41c2d9f0bad2\"}\n"} -{"Time":"2022-12-07T09:15:34.818119+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.818125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.818137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.818 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/organizations/67cd7c26-ca17-4861-9a4a-c9e6ac63feda/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"564.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"24f7019b-6dad-4738-9321-31b32c53906d\"}\n"} -{"Time":"2022-12-07T09:15:34.818724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.818 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/organizations/67cd7c26-ca17-4861-9a4a-c9e6ac63feda/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"451.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b6d0626e-691e-4732-9ea6-1ded1b0bc3d3\"}\n"} -{"Time":"2022-12-07T09:15:34.821439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.821 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18.209µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"2815b60c-dc26-473a-9a41-c924c994ef90\"}\n"} -{"Time":"2022-12-07T09:15:34.821583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.821 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"21.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7b044d18-770f-41e2-b8e5-e75fe80e6b10\"}\n"} -{"Time":"2022-12-07T09:15:34.822149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.822 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"af3ef2d9-cfb4-4c1d-8e4e-3b07d60eafad\"}\n"} -{"Time":"2022-12-07T09:15:34.822785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.822 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/organizations/67cd7c26-ca17-4861-9a4a-c9e6ac63feda/templates/stoic-sanderson6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"250.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ecc14d1a-76e4-4a0a-8dad-733a22e077d4\"}\n"} -{"Time":"2022-12-07T09:15:34.823146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.823 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/organizations/67cd7c26-ca17-4861-9a4a-c9e6ac63feda/templates/gracious-shockley4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"240.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"842b4e6c-1367-49c5-872f-00c337e634e5\"}\n"} -{"Time":"2022-12-07T09:15:34.823554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.823 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/organizations/67cd7c26-ca17-4861-9a4a-c9e6ac63feda/templates/focused-lichterman6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c582d8a-c106-4f76-8366-435d8a62bb4f\"}\n"} -{"Time":"2022-12-07T09:15:34.823875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" templatedelete_test.go:106: 2022-12-07 08:15:34.823: cmd: matched \"Delete these templates: \\x1b[;mstoic-sanderson6, gracious-shockley4, focused-lichterman6\\x1b[0m ?\" = \"\u003e Delete these templates: \\x1b[;mstoic-sanderson6, gracious-shockley4, focused-lichterman6\\x1b[0m ?\"\n"} -{"Time":"2022-12-07T09:15:34.823882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" templatedelete_test.go:107: 2022-12-07 08:15:34.823: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:34.824303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.824 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templates/e068c5ea-e7fd-4533-ae27-df7bcdfa472a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6b96f139-4325-46ef-bfc5-0940376768d8\"}\n"} -{"Time":"2022-12-07T09:15:34.824418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" ptytest.go:103: 2022-12-07 08:15:34.824: cmd: stdout: \"\u003e Delete these templates: \\x1b[;mstoic-sanderson6, gracious-shockley4, focused-lichterman6\\x1b[0m ? (yes/\\x1b[1mno\\x1b[0m) yes\"\n"} -{"Time":"2022-12-07T09:15:34.824425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" ptytest.go:103: 2022-12-07 08:15:34.824: cmd: stdout: \"Deleted template \\x1b[;mstoic-sanderson6\\x1b[0m at Dec 7 09:15:34!\"\n"} -{"Time":"2022-12-07T09:15:34.824731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.824 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templates/9f1c142a-8106-410d-b2d0-e34c8cd0dbbe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"260.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d90256f0-6012-4ab0-b782-88fb6cba4bbd\"}\n"} -{"Time":"2022-12-07T09:15:34.824849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" ptytest.go:103: 2022-12-07 08:15:34.824: cmd: stdout: \"Deleted template \\x1b[;mgracious-shockley4\\x1b[0m at Dec 7 09:15:34!\"\n"} -{"Time":"2022-12-07T09:15:34.825769+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.825774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.825776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.825 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.825778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.825 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.825781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.825 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.825812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.825 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.825841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.825 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.82704+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.827045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.827047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.826 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templates/36770529-2da4-4a4a-b300-73c6103723f6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"979.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"318eee59-12f6-4a1f-88ba-3ee23aec529e\"}\n"} -{"Time":"2022-12-07T09:15:34.827159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" ptytest.go:103: 2022-12-07 08:15:34.827: cmd: stdout: \"Deleted template \\x1b[;mfocused-lichterman6\\x1b[0m at Dec 7 09:15:34!\"\n"} -{"Time":"2022-12-07T09:15:34.827608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templates/e068c5ea-e7fd-4533-ae27-df7bcdfa472a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"32.584µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"5c463e92-b2d8-4abb-8755-056a8f7a2b87\"}\n"} -{"Time":"2022-12-07T09:15:34.827735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templates/9f1c142a-8106-410d-b2d0-e34c8cd0dbbe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.584µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"86360528-8a53-4cc2-9f60-14ead284529d\"}\n"} -{"Time":"2022-12-07T09:15:34.827764+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.827766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.827768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"16b225c7-7274-47ad-aadf-883a2c31d5a2\"}\n"} -{"Time":"2022-12-07T09:15:34.827854+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted"} -{"Time":"2022-12-07T09:15:34.827857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":"=== CONT TestTemplateDelete/Multiple_prompted\n"} -{"Time":"2022-12-07T09:15:34.827861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56937\", \"path\": \"/api/v2/templates/36770529-2da4-4a4a-b300-73c6103723f6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.25µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"bcf81b04-5d06-4d23-8fc2-3808f883f425\"}\n"} -{"Time":"2022-12-07T09:15:34.827951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" ptytest.go:80: 2022-12-07 08:15:34.827: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.828125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" t.go:81: 2022-12-07 08:15:34.827 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:34.828754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.828757+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:34.828759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:34.830847+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.830852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.830855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1977606c-aaf8-4bf5-b0ce-8d09366d2709\"}\n"} -{"Time":"2022-12-07T09:15:34.831035+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:34.83104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:34.831076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"109.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7f4363ab-8792-425d-bd62-72c044326d8b\"}\n"} -{"Time":"2022-12-07T09:15:34.831309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.166µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ed405dd2-4957-492d-a1df-edbc13ae62c0\"}\n"} -{"Time":"2022-12-07T09:15:34.832006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"396.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5a26d3b8-f834-4cee-ab5f-b6c7b78af2cc\"}\n"} -{"Time":"2022-12-07T09:15:34.832555+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.832559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.832561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.832 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2bf7b4e3-4083-4f41-a8ce-00e59a3cc278\"}\n"} -{"Time":"2022-12-07T09:15:34.832684+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:34.832699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:34.832702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.832 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/organizations/e173e15e-89f2-457e-8afb-4ebe49e2f852/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"529.666µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"06e91edb-ddec-4273-bb4f-4d18d7725fdd\"}\n"} -{"Time":"2022-12-07T09:15:34.832742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ssh_test.go:112: waiting for template version job 3fe0459e-25d8-4391-9409-099b250d1f91\n"} -{"Time":"2022-12-07T09:15:34.837527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.837536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.837538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.837 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d8e6c4aa-3601-4a6f-beba-0377cf53a0c8\"}\n"} -{"Time":"2022-12-07T09:15:34.83795+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.837954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.837956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.837 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97b1866a-ebc7-4b2c-a09f-5e26654063e2\"}\n"} -{"Time":"2022-12-07T09:15:34.843432+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:34.843438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:34.84344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.843 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"382.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6ce43d92-7ebc-41b6-89b9-d90bb828fa5e\"}\n"} -{"Time":"2022-12-07T09:15:34.848136+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.848143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.848145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:34.848236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:34.848276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:34.848301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"size_bytes\": 2, \"path\": \"/tmp/TestListSingle358689189/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.848323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"size_bytes\": 2, \"path\": \"/tmp/TestListSingle358689189/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.848335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"size_bytes\": 2, \"path\": \"/tmp/TestListSingle358689189/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.848348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:34.848394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.848 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:34.852302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.852307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.85231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.852329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.852346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.852361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.852376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.852391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.852426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.852509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.852536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.852 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.85307+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.853073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.853074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.853 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"557.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"09d6069f-3e65-4a41-b913-f7419f2cb158\"}\n"} -{"Time":"2022-12-07T09:15:34.85366+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.853663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.853693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.853 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:34.853758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.853 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:34.853817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.853 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:34.853868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHForwardAgent3998299952/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.853909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"size_bytes\": 112, \"path\": \"/tmp/TestSSHForwardAgent3998299952/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.853957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHForwardAgent3998299952/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.853987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:34.854067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.854 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:34.854222+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.854224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.854226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.854 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a0e4cf6-623d-4842-8692-6ddf11d67d34\"}\n"} -{"Time":"2022-12-07T09:15:34.856855+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.856865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.856867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.856 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4034485e-0333-4875-947e-ae3cf1efe31c\"}\n"} -{"Time":"2022-12-07T09:15:34.858099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:34.858102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:34.858105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.858 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"460487ac-04ff-4616-a1bd-b2b1554db31f\"}\n"} -{"Time":"2022-12-07T09:15:34.860583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.860587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.86059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.860 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"330.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e51cb4c-13a4-449e-977d-30db92ec5ca0\"}\n"} -{"Time":"2022-12-07T09:15:34.861242+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.861245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.861247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.860 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.861249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.860 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.861251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.861 [DEBUG]\t(provisionerd-fervent_ptolemy6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.861252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.861 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"4d22fce6-8c81-4d89-af9f-2672b69c0cbe\"}\n"} -{"Time":"2022-12-07T09:15:34.863299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.863 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templateversions/d87f7cc8-f554-44b6-b398-d3f6a0fae749\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"300.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"30bb515f-1bb6-4a9c-8843-aa6de31fcb41\"}\n"} -{"Time":"2022-12-07T09:15:34.863703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.863 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/organizations/0852c7d3-23d9-4f36-8570-e8db4e37311f/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"28e4bff1-d454-4170-8728-ede36ebf8d01\"}\n"} -{"Time":"2022-12-07T09:15:34.864265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.864 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/organizations/0852c7d3-23d9-4f36-8570-e8db4e37311f/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"372.083µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"32b17bd2-25d4-40e9-8afb-906fa107984d\"}\n"} -{"Time":"2022-12-07T09:15:34.864713+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:34.864717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:34.864719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.864 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:34.864834+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.864861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.864869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.864 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/organizations/0852c7d3-23d9-4f36-8570-e8db4e37311f/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"322.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d588f809-073a-4fb3-9b87-1a33940abe47\"}\n"} -{"Time":"2022-12-07T09:15:34.86692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.866 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.291µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"36735a41-f663-455a-9e09-610227f6accd\"}\n"} -{"Time":"2022-12-07T09:15:34.867239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.867 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"047e56c6-3442-48d0-93bf-3cc0c485a83d\"}\n"} -{"Time":"2022-12-07T09:15:34.867663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.867 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"291.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"77887c94-550b-49ed-87f7-05943e5761a7\"}\n"} -{"Time":"2022-12-07T09:15:34.8681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.868 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/organizations/0852c7d3-23d9-4f36-8570-e8db4e37311f/templates/jolly-zhukovsky3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"264.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cc4c4700-a27e-4140-a645-a4b8be952776\"}\n"} -{"Time":"2022-12-07T09:15:34.868478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.868 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/organizations/0852c7d3-23d9-4f36-8570-e8db4e37311f/templates/jolly-shockley6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f2fe2a4f-bd28-4f1c-9ae5-720fc98d413a\"}\n"} -{"Time":"2022-12-07T09:15:34.868816+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:34.868823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:34.868825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.868 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"349eb829-de40-481a-8eff-a43cecb869f8\"}\n"} -{"Time":"2022-12-07T09:15:34.869099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes"} -{"Time":"2022-12-07T09:15:34.869103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":"=== CONT TestTemplateDelete/Multiple_--yes\n"} -{"Time":"2022-12-07T09:15:34.869104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.869 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/organizations/0852c7d3-23d9-4f36-8570-e8db4e37311f/templates/elated-mclaren2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"71f16960-d20b-4749-86bb-7ed3db20ba17\"}\n"} -{"Time":"2022-12-07T09:15:34.869697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.869 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templates/02b5a899-2f16-4f68-b10e-ee5fed1be54a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"236.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"75026d7d-167e-4237-b2e2-7d604bbdda68\"}\n"} -{"Time":"2022-12-07T09:15:34.871111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.871 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templates/43627d34-c08a-4c9d-b55d-f6371f2d9a26\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"420.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8e405838-7167-47e1-814d-9da089d9ccb2\"}\n"} -{"Time":"2022-12-07T09:15:34.872076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tDELETE\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templates/04d59ecd-d15b-40ee-9039-f07031592f9b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8daf6e83-c2c5-42f0-9839-965538be0321\"}\n"} -{"Time":"2022-12-07T09:15:34.872811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templates/02b5a899-2f16-4f68-b10e-ee5fed1be54a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"41.834µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"4d22b9ef-c48b-4d90-84a6-3d0bfc63f69d\"}\n"} -{"Time":"2022-12-07T09:15:34.872821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templates/43627d34-c08a-4c9d-b55d-f6371f2d9a26\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"24.792µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"e3405391-3ef9-4626-b90d-77409170c281\"}\n"} -{"Time":"2022-12-07T09:15:34.873606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.873 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56950\", \"path\": \"/api/v2/templates/04d59ecd-d15b-40ee-9039-f07031592f9b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"e73afee5-5115-49cb-9d72-4e3c5febe004\"}\n"} -{"Time":"2022-12-07T09:15:34.873611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" t.go:81: 2022-12-07 08:15:34.873 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:34.874318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.874334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete","Output":"--- PASS: TestTemplateDelete (0.00s)\n"} -{"Time":"2022-12-07T09:15:34.874337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Output":" --- PASS: TestTemplateDelete/Ok (0.36s)\n"} -{"Time":"2022-12-07T09:15:34.874339+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Ok","Elapsed":0.36} -{"Time":"2022-12-07T09:15:34.874343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Output":" --- PASS: TestTemplateDelete/Selector (0.37s)\n"} -{"Time":"2022-12-07T09:15:34.874345+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Selector","Elapsed":0.37} -{"Time":"2022-12-07T09:15:34.874346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Output":" --- PASS: TestTemplateDelete/Multiple_prompted (0.37s)\n"} -{"Time":"2022-12-07T09:15:34.874348+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_prompted","Elapsed":0.37} -{"Time":"2022-12-07T09:15:34.874349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Output":" --- PASS: TestTemplateDelete/Multiple_--yes (0.37s)\n"} -{"Time":"2022-12-07T09:15:34.874361+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete/Multiple_--yes","Elapsed":0.37} -{"Time":"2022-12-07T09:15:34.874363+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateDelete","Elapsed":0} -{"Time":"2022-12-07T09:15:34.874364+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles"} -{"Time":"2022-12-07T09:15:34.874365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":"=== CONT TestLogout/CannotDeleteFiles\n"} -{"Time":"2022-12-07T09:15:34.877153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.876 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"89.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"156b4807-ddb1-47ee-8cec-3abc16484d36\"}\n"} -{"Time":"2022-12-07T09:15:34.877215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.877 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"72.584µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d7c9dd29-b8d5-4f9f-8836-040878ece6cd\"}\n"} -{"Time":"2022-12-07T09:15:34.877218+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.87722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.877221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.877 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"346.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12235c15-a434-4db9-acb2-a619f73265e0\"}\n"} -{"Time":"2022-12-07T09:15:34.878281+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.878284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.878286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.878 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.878357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.878 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.878361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.878 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.878363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.878 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.878411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.878 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.878706+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles"} -{"Time":"2022-12-07T09:15:34.878709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":"=== CONT TestLogout/CannotDeleteFiles\n"} -{"Time":"2022-12-07T09:15:34.87871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.878 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1df3b41c-9f40-4370-a2d1-e7ce8a036699\"}\n"} -{"Time":"2022-12-07T09:15:34.878854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.878 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d0deea65-0473-444a-8c09-9cfc4c9e06df\"}\n"} -{"Time":"2022-12-07T09:15:34.879371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:103: 2022-12-07 08:15:34.879: cmd: stdout: \"Open the following in your browser:\"\n"} -{"Time":"2022-12-07T09:15:34.879375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:103: 2022-12-07 08:15:34.879: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.879377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:103: 2022-12-07 08:15:34.879: cmd: stdout: \"\\thttp://localhost:57120/cli-auth\"\n"} -{"Time":"2022-12-07T09:15:34.879378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:103: 2022-12-07 08:15:34.879: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.879379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" logout_test.go:133: 2022-12-07 08:15:34.879: cmd: matched \"Paste your token here:\" = \"Open the following in your browser:\\r\\n\\r\\n\\thttp://localhost:57120/cli-auth\\r\\n\\r\\n\u003e Paste your token here:\"\n"} -{"Time":"2022-12-07T09:15:34.879381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" logout_test.go:133: 2022-12-07 08:15:34.879: cmd: stdin: \"gNdFx5NfZF-0XlOFZEPe8lmicL4tJ63nY\\r\"\n"} -{"Time":"2022-12-07T09:15:34.879507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:103: 2022-12-07 08:15:34.879: cmd: stdout: \"\u003e Paste your token here: gNdFx5NfZF-0XlOFZEPe8lmicL4tJ63nY\"\n"} -{"Time":"2022-12-07T09:15:34.880242+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.880245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.880247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"580.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"153e6154-cf37-4415-8289-29a9bd366806\"}\n"} -{"Time":"2022-12-07T09:15:34.8813+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles"} -{"Time":"2022-12-07T09:15:34.881305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":"=== CONT TestLogout/CannotDeleteFiles\n"} -{"Time":"2022-12-07T09:15:34.881306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.881 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"47aa95ee-8b91-424f-bf46-a0457d9a9e24\"}\n"} -{"Time":"2022-12-07T09:15:34.881705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.881 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"309.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"013d227f-8cfc-456f-8f30-db9514422119\"}\n"} -{"Time":"2022-12-07T09:15:34.882063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:103: 2022-12-07 08:15:34.882: cmd: stdout: \"\u003e Welcome to Coder, testuser! You're authenticated.\"\n"} -{"Time":"2022-12-07T09:15:34.882081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" logout_test.go:133: 2022-12-07 08:15:34.882: cmd: matched \"Welcome to Coder\" = \" gNdFx5NfZF-0XlOFZEPe8lmicL4tJ63nY\\r\\n\u003e Welcome to Coder\"\n"} -{"Time":"2022-12-07T09:15:34.882322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.882324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.882326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.882 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"417.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b2851d87-5c27-40e4-9d14-b80677c44443\"}\n"} -{"Time":"2022-12-07T09:15:34.883609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:34.883631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:34.883636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.883 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"327.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"54a4392b-91a3-4892-b16f-6793d5117af7\"}\n"} -{"Time":"2022-12-07T09:15:34.88404+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles"} -{"Time":"2022-12-07T09:15:34.884045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":"=== CONT TestLogout/CannotDeleteFiles\n"} -{"Time":"2022-12-07T09:15:34.884047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.883 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.25µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"1aea18fb-306b-4655-9529-c0a336c354e4\"}\n"} -{"Time":"2022-12-07T09:15:34.884196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.884 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c143ca21-bd6c-4183-a348-ee1f968a96db\"}\n"} -{"Time":"2022-12-07T09:15:34.884341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" logout_test.go:189: 2022-12-07 08:15:34.884: cmd: matched \"Are you sure you want to log out?\" = \", testuser! You're authenticated.\\r\\n\u003e Are you sure you want to log out?\"\n"} -{"Time":"2022-12-07T09:15:34.884349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" logout_test.go:190: 2022-12-07 08:15:34.884: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:34.884352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:103: 2022-12-07 08:15:34.884: cmd: stdout: \"\u003e Are you sure you want to log out? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:34.884576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" t.go:81: 2022-12-07 08:15:34.884 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57120\", \"path\": \"/api/v2/users/logout\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6e876573-81d8-40ca-8387-6945b0e22e4e\"}\n"} -{"Time":"2022-12-07T09:15:34.885295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.885301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" ptytest.go:80: 2022-12-07 08:15:34.885: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.88536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile"} -{"Time":"2022-12-07T09:15:34.885368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":"=== CONT TestLogout/NoSessionFile\n"} -{"Time":"2022-12-07T09:15:34.886296+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.886301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.886303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"525.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"877ba17c-cfb5-42d2-9d5b-e39dbb867d0e\"}\n"} -{"Time":"2022-12-07T09:15:34.887698+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile"} -{"Time":"2022-12-07T09:15:34.887709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":"=== CONT TestLogout/NoSessionFile\n"} -{"Time":"2022-12-07T09:15:34.887711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" t.go:81: 2022-12-07 08:15:34.887 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57137\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"79.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"58b6a384-7997-494d-a8d9-2b51fb7bedaa\"}\n"} -{"Time":"2022-12-07T09:15:34.887852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" t.go:81: 2022-12-07 08:15:34.887 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57137\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"799a2cda-4255-4768-97ec-46503fe9e1d6\"}\n"} -{"Time":"2022-12-07T09:15:34.889415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" t.go:81: 2022-12-07 08:15:34.889 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57137\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7cfb8d47-78e9-48e0-b8f1-1852ee502f7e\"}\n"} -{"Time":"2022-12-07T09:15:34.88956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" t.go:81: 2022-12-07 08:15:34.889 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57137\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f971786f-1878-49b7-8417-6e880584394d\"}\n"} -{"Time":"2022-12-07T09:15:34.889639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.889: cmd: stdout: \"Open the following in your browser:\"\n"} -{"Time":"2022-12-07T09:15:34.889642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.889: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.889645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.889: cmd: stdout: \"\\thttp://localhost:57137/cli-auth\"\n"} -{"Time":"2022-12-07T09:15:34.889647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.889: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.889655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" logout_test.go:106: 2022-12-07 08:15:34.889: cmd: matched \"Paste your token here:\" = \"Open the following in your browser:\\r\\n\\r\\n\\thttp://localhost:57137/cli-auth\\r\\n\\r\\n\u003e Paste your token here:\"\n"} -{"Time":"2022-12-07T09:15:34.889661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" logout_test.go:106: 2022-12-07 08:15:34.889: cmd: stdin: \"0fJKx0IAG4-W4PS2sPnRofK9WCcaVfIQI\\r\"\n"} -{"Time":"2022-12-07T09:15:34.889684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.889: cmd: stdout: \"\u003e Paste your token here: 0fJKx0IAG4-W4PS2sPnRofK9WCcaVfIQI\"\n"} -{"Time":"2022-12-07T09:15:34.890687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" t.go:81: 2022-12-07 08:15:34.890 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57137\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"427.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5e502d9a-a2b8-482c-a3dc-05be6b773afe\"}\n"} -{"Time":"2022-12-07T09:15:34.891035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" t.go:81: 2022-12-07 08:15:34.891 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57137\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"92ea6d62-ef3e-4dcd-8975-50ddd57ddd6f\"}\n"} -{"Time":"2022-12-07T09:15:34.891299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.891: cmd: stdout: \"\u003e Welcome to Coder, testuser! You're authenticated.\"\n"} -{"Time":"2022-12-07T09:15:34.891323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" logout_test.go:106: 2022-12-07 08:15:34.891: cmd: matched \"Welcome to Coder\" = \" 0fJKx0IAG4-W4PS2sPnRofK9WCcaVfIQI\\r\\n\u003e Welcome to Coder\"\n"} -{"Time":"2022-12-07T09:15:34.893036+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:34.893041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:34.893043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.892 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f24cfe51-065d-4092-a01e-f09205b440ca\"}\n"} -{"Time":"2022-12-07T09:15:34.893433+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile"} -{"Time":"2022-12-07T09:15:34.893439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":"=== CONT TestLogout/NoSessionFile\n"} -{"Time":"2022-12-07T09:15:34.893442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.893443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" ptytest.go:80: 2022-12-07 08:15:34.893: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.893488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile"} -{"Time":"2022-12-07T09:15:34.893497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":"=== CONT TestLogout/NoURLFile\n"} -{"Time":"2022-12-07T09:15:34.896349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" t.go:81: 2022-12-07 08:15:34.896 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57144\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"85µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2dcfe976-bd16-4a0c-865a-9c14154f65b6\"}\n"} -{"Time":"2022-12-07T09:15:34.896359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" t.go:81: 2022-12-07 08:15:34.896 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57144\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"58.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9532fced-2e34-4094-90d7-bf6fd7a072a8\"}\n"} -{"Time":"2022-12-07T09:15:34.898197+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.89821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.898212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.897 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.167µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:34.899459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.898 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:34.899468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.898 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.899471+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile"} -{"Time":"2022-12-07T09:15:34.899473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":"=== CONT TestLogout/NoURLFile\n"} -{"Time":"2022-12-07T09:15:34.899474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" t.go:81: 2022-12-07 08:15:34.898 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57144\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6e96686-d207-402b-8bb8-1a91a7d5a4bd\"}\n"} -{"Time":"2022-12-07T09:15:34.899845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" t.go:81: 2022-12-07 08:15:34.899 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57144\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2a195bfa-e37f-4f1c-95da-590e99c558a5\"}\n"} -{"Time":"2022-12-07T09:15:34.899894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.899: cmd: stdout: \"Open the following in your browser:\"\n"} -{"Time":"2022-12-07T09:15:34.899898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.899: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.8999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.899: cmd: stdout: \"\\thttp://localhost:57144/cli-auth\"\n"} -{"Time":"2022-12-07T09:15:34.899907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.899: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.902052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" logout_test.go:79: 2022-12-07 08:15:34.901: cmd: matched \"Paste your token here:\" = \"Open the following in your browser:\\r\\n\\r\\n\\thttp://localhost:57144/cli-auth\\r\\n\\r\\n\u003e Paste your token here:\"\n"} -{"Time":"2022-12-07T09:15:34.902061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" logout_test.go:79: 2022-12-07 08:15:34.901: cmd: stdin: \"miG65Mkwmc-F2qH2MlXl4ABTUzCO6qmr6\\r\"\n"} -{"Time":"2022-12-07T09:15:34.902114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.902: cmd: stdout: \"\u003e Paste your token here: miG65Mkwmc-F2qH2MlXl4ABTUzCO6qmr6\"\n"} -{"Time":"2022-12-07T09:15:34.902654+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.902658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.902661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.902664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.902712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.902717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.902719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.902749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.902785+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.902789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.902791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"5.125µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:34.902842+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.902844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.902846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.902 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6f6db65-49af-46e6-9588-7cfd10d6e844\"}\n"} -{"Time":"2022-12-07T09:15:34.903476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile"} -{"Time":"2022-12-07T09:15:34.903517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":"=== CONT TestLogout/NoURLFile\n"} -{"Time":"2022-12-07T09:15:34.903525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" t.go:81: 2022-12-07 08:15:34.903 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57144\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"576.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5509539f-2208-454c-820f-2384d34180f7\"}\n"} -{"Time":"2022-12-07T09:15:34.903976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" t.go:81: 2022-12-07 08:15:34.903 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57144\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"379.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aafafb41-55a3-4710-9cbf-4401bfd6cecd\"}\n"} -{"Time":"2022-12-07T09:15:34.904283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" ptytest.go:103: 2022-12-07 08:15:34.904: cmd: stdout: \"\u003e Welcome to Coder, testuser! You're authenticated.\"\n"} -{"Time":"2022-12-07T09:15:34.904384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" logout_test.go:79: 2022-12-07 08:15:34.904: cmd: matched \"Welcome to Coder\" = \" miG65Mkwmc-F2qH2MlXl4ABTUzCO6qmr6\\r\\n\u003e Welcome to Coder\"\n"} -{"Time":"2022-12-07T09:15:34.904453+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.904456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.904458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.904 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:34.904529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.904 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.905518+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.905523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.905526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.905 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7279b241-7a19-466c-8e5e-df3aeb0f8b84\"}\n"} -{"Time":"2022-12-07T09:15:34.90647+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile"} -{"Time":"2022-12-07T09:15:34.906477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":"=== CONT TestLogout/NoURLFile\n"} -{"Time":"2022-12-07T09:15:34.906479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.906548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" ptytest.go:80: 2022-12-07 08:15:34.906: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.906632+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt"} -{"Time":"2022-12-07T09:15:34.906636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":"=== CONT TestLogout/SkipPrompt\n"} -{"Time":"2022-12-07T09:15:34.909021+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.90908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.909088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.908 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"462.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0582a830-6a9f-4ef2-b4a7-48b85453bf43\"}\n"} -{"Time":"2022-12-07T09:15:34.909755+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:34.909762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:34.909765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"566.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6f07972a-498c-4588-b92a-aa4eca6ecd8d\"}\n"} -{"Time":"2022-12-07T09:15:34.909927+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt"} -{"Time":"2022-12-07T09:15:34.909935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":"=== CONT TestLogout/SkipPrompt\n"} -{"Time":"2022-12-07T09:15:34.909938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"119.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"98fb53f0-439b-4165-b68c-3c11aa202261\"}\n"} -{"Time":"2022-12-07T09:15:34.910415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.910 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"193.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"186e590a-1578-4e25-809c-fe6f9622b146\"}\n"} -{"Time":"2022-12-07T09:15:34.912509+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.912705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.912713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.912 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.024291ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c1487757-774e-448d-a285-099b11d2219d\"}\n"} -{"Time":"2022-12-07T09:15:34.913488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt"} -{"Time":"2022-12-07T09:15:34.913498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":"=== CONT TestLogout/SkipPrompt\n"} -{"Time":"2022-12-07T09:15:34.913501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"73.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c78f548e-a985-4743-8631-676bb2dce5e0\"}\n"} -{"Time":"2022-12-07T09:15:34.913844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"40.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1bc2f47d-7280-419e-93cd-81e612e82e83\"}\n"} -{"Time":"2022-12-07T09:15:34.913903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.913: cmd: stdout: \"Open the following in your browser:\"\n"} -{"Time":"2022-12-07T09:15:34.913907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.913: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.913947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.913: cmd: stdout: \"\\thttp://localhost:57154/cli-auth\"\n"} -{"Time":"2022-12-07T09:15:34.913964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.913: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:34.91459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" logout_test.go:53: 2022-12-07 08:15:34.914: cmd: matched \"Paste your token here:\" = \"Open the following in your browser:\\r\\n\\r\\n\\thttp://localhost:57154/cli-auth\\r\\n\\r\\n\u003e Paste your token here:\"\n"} -{"Time":"2022-12-07T09:15:34.914594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" logout_test.go:53: 2022-12-07 08:15:34.914: cmd: stdin: \"cHTfVKrTnR-befIiEzHfynUBVK64eoWSs\\r\"\n"} -{"Time":"2022-12-07T09:15:34.914595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.914: cmd: stdout: \"\u003e Paste your token here: cHTfVKrTnR-befIiEzHfynUBVK64eoWSs\"\n"} -{"Time":"2022-12-07T09:15:34.916243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.916 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"597.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ccf0b8f8-61ff-4965-95a9-b1409db63fed\"}\n"} -{"Time":"2022-12-07T09:15:34.91727+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:34.917274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:34.917278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.916 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:34.917281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.916 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:34.917283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.917 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:34.917285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHStdio3967758857/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.917287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"size_bytes\": 112, \"path\": \"/tmp/TestSSHStdio3967758857/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.917289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHStdio3967758857/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.917291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:34.917293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.917 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:34.917668+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt"} -{"Time":"2022-12-07T09:15:34.917679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":"=== CONT TestLogout/SkipPrompt\n"} -{"Time":"2022-12-07T09:15:34.917681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.917 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"542.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9ce1d85d-0198-4d01-8495-4f900398f758\"}\n"} -{"Time":"2022-12-07T09:15:34.918621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.918: cmd: stdout: \"\u003e Welcome to Coder, testuser! You're authenticated.\"\n"} -{"Time":"2022-12-07T09:15:34.918888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:34.918893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:34.918896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.918 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8096a980-b8d0-47ec-8c0f-fae2cb8c4af5\"}\n"} -{"Time":"2022-12-07T09:15:34.920068+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt"} -{"Time":"2022-12-07T09:15:34.920072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":"=== CONT TestLogout/SkipPrompt\n"} -{"Time":"2022-12-07T09:15:34.920074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" logout_test.go:53: 2022-12-07 08:15:34.919: cmd: matched \"Welcome to Coder\" = \" cHTfVKrTnR-befIiEzHfynUBVK64eoWSs\\r\\n\u003e Welcome to Coder\"\n"} -{"Time":"2022-12-07T09:15:34.921799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.921 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18.959µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"6975cefc-62b7-4cdc-ba7c-f658fbb7efc9\"}\n"} -{"Time":"2022-12-07T09:15:34.921804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.921 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"21.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"414da00b-94cd-4acd-8cea-1f6ddba3082a\"}\n"} -{"Time":"2022-12-07T09:15:34.922206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" t.go:81: 2022-12-07 08:15:34.922 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57154\", \"path\": \"/api/v2/users/logout\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6c76dccb-c2c5-491d-82d8-45ff0504c933\"}\n"} -{"Time":"2022-12-07T09:15:34.92253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:103: 2022-12-07 08:15:34.922: cmd: stdout: \"\u003e You are no longer logged in. You can log in using 'coder login \u003curl\u003e'.\"\n"} -{"Time":"2022-12-07T09:15:34.923932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" logout_test.go:72: 2022-12-07 08:15:34.923: cmd: matched \"You are no longer logged in. You can log in using 'coder login \u003curl\u003e'.\" = \", testuser! You're authenticated.\\r\\n\u003e You are no longer logged in. You can log in using 'coder login \u003curl\u003e'.\"\n"} -{"Time":"2022-12-07T09:15:34.924442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.924486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" ptytest.go:80: 2022-12-07 08:15:34.924: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.924525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout","Output":"--- PASS: TestLogout (0.00s)\n"} -{"Time":"2022-12-07T09:15:34.924543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Output":" --- PASS: TestLogout/Logout (0.02s)\n"} -{"Time":"2022-12-07T09:15:34.924546+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogout/Logout","Elapsed":0.02} -{"Time":"2022-12-07T09:15:34.924549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Output":" --- PASS: TestLogout/CannotDeleteFiles (0.01s)\n"} -{"Time":"2022-12-07T09:15:34.924552+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogout/CannotDeleteFiles","Elapsed":0.01} -{"Time":"2022-12-07T09:15:34.924556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Output":" --- PASS: TestLogout/NoSessionFile (0.01s)\n"} -{"Time":"2022-12-07T09:15:34.924557+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoSessionFile","Elapsed":0.01} -{"Time":"2022-12-07T09:15:34.924559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Output":" --- PASS: TestLogout/NoURLFile (0.01s)\n"} -{"Time":"2022-12-07T09:15:34.924561+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogout/NoURLFile","Elapsed":0.01} -{"Time":"2022-12-07T09:15:34.924562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Output":" --- PASS: TestLogout/SkipPrompt (0.02s)\n"} -{"Time":"2022-12-07T09:15:34.924564+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogout/SkipPrompt","Elapsed":0.02} -{"Time":"2022-12-07T09:15:34.924565+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestLogout","Elapsed":0} -{"Time":"2022-12-07T09:15:34.924567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs"} -{"Time":"2022-12-07T09:15:34.924568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs","Output":"=== CONT TestUpdate/NoArgs\n"} -{"Time":"2022-12-07T09:15:34.926155+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts"} -{"Time":"2022-12-07T09:15:34.926159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":"=== CONT TestUserCreate/Prompts\n"} -{"Time":"2022-12-07T09:15:34.92742+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.927425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.927426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.927 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"422.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d6be908e-a57a-4880-a855-61af635a3601\"}\n"} -{"Time":"2022-12-07T09:15:34.928618+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts"} -{"Time":"2022-12-07T09:15:34.928627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":"=== CONT TestUserCreate/Prompts\n"} -{"Time":"2022-12-07T09:15:34.92863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" t.go:81: 2022-12-07 08:15:34.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57166\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"93.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"500580e3-4372-4e32-96b9-447c8f23ec58\"}\n"} -{"Time":"2022-12-07T09:15:34.928889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" t.go:81: 2022-12-07 08:15:34.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57166\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"77.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8e67c443-d0c9-4566-b045-6d113db04097\"}\n"} -{"Time":"2022-12-07T09:15:34.929249+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.929274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.929281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.929 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.929289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.929 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:34.929298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.929 [DEBUG]\t(provisionerd-unruffled_austin0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.929328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.929 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"f51e6fb4-2ace-4e59-aa0d-c45d3a122247\"}\n"} -{"Time":"2022-12-07T09:15:34.930085+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.930091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.930093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.930 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"555.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1af4db30-9a80-4047-8d51-8ae43e6d2798\"}\n"} -{"Time":"2022-12-07T09:15:34.930573+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:34.930578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:34.93058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.930 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:34.931161+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts"} -{"Time":"2022-12-07T09:15:34.931165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":"=== CONT TestUserCreate/Prompts\n"} -{"Time":"2022-12-07T09:15:34.931167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" t.go:81: 2022-12-07 08:15:34.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57166\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"70.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f986067b-9993-46c4-ad1e-1fa052a398d7\"}\n"} -{"Time":"2022-12-07T09:15:34.931433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" t.go:81: 2022-12-07 08:15:34.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57166\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.833µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"d84c326a-fc7f-47bf-90dc-4e44988bef12\"}\n"} -{"Time":"2022-12-07T09:15:34.931941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" t.go:81: 2022-12-07 08:15:34.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57166\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"395.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8d92b399-51c7-4538-8990-447542845e52\"}\n"} -{"Time":"2022-12-07T09:15:34.932413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" usercreate_test.go:37: 2022-12-07 08:15:34.932: cmd: matched \"Username\" = \"\u003e Username\"\n"} -{"Time":"2022-12-07T09:15:34.932419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" usercreate_test.go:38: 2022-12-07 08:15:34.932: cmd: stdin: \"dean\\r\"\n"} -{"Time":"2022-12-07T09:15:34.932449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" ptytest.go:103: 2022-12-07 08:15:34.932: cmd: stdout: \"\u003e Username: dean\"\n"} -{"Time":"2022-12-07T09:15:34.932459+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.932462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.932466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a50c002-6823-41ca-aad9-9f3855c20ea5\"}\n"} -{"Time":"2022-12-07T09:15:34.932632+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts"} -{"Time":"2022-12-07T09:15:34.932636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":"=== CONT TestUserCreate/Prompts\n"} -{"Time":"2022-12-07T09:15:34.932637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" usercreate_test.go:37: 2022-12-07 08:15:34.932: cmd: matched \"Email\" = \": dean\\r\\n\u003e Email\"\n"} -{"Time":"2022-12-07T09:15:34.932639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" usercreate_test.go:38: 2022-12-07 08:15:34.932: cmd: stdin: \"dean@coder.com\\r\"\n"} -{"Time":"2022-12-07T09:15:34.93266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" ptytest.go:103: 2022-12-07 08:15:34.932: cmd: stdout: \"\u003e Email: dean@coder.com\"\n"} -{"Time":"2022-12-07T09:15:34.933366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" t.go:81: 2022-12-07 08:15:34.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57166\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"531.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b0426327-3537-4544-8931-2ea89eccfe18\"}\n"} -{"Time":"2022-12-07T09:15:34.933511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" ptytest.go:80: 2022-12-07 08:15:34.933: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.933999+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:34.934015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:34.934017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"434.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"89b50626-9691-479c-ad1d-3bc48d4af261\"}\n"} -{"Time":"2022-12-07T09:15:34.934112+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts"} -{"Time":"2022-12-07T09:15:34.934116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":"=== CONT TestUserCreate/Prompts\n"} -{"Time":"2022-12-07T09:15:34.934117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.93412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate","Output":"--- PASS: TestUserCreate (0.00s)\n"} -{"Time":"2022-12-07T09:15:34.934123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Output":" --- PASS: TestUserCreate/Prompts (0.01s)\n"} -{"Time":"2022-12-07T09:15:34.934124+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserCreate/Prompts","Elapsed":0.01} -{"Time":"2022-12-07T09:15:34.934127+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUserCreate","Elapsed":0} -{"Time":"2022-12-07T09:15:34.934128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s"} -{"Time":"2022-12-07T09:15:34.934129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s","Output":"=== CONT TestDurationDisplay/-1s\n"} -{"Time":"2022-12-07T09:15:34.934131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:34.934132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:34.936794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.936 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"115.084µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"931c294c-b5ee-4a77-a235-e1199301f795\"}\n"} -{"Time":"2022-12-07T09:15:34.936803+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.936805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.936807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.936 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/workspacebuilds/65dc9e0e-4ed9-4a74-a1d6-f119c5dec4c5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"443.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"696b8a77-bb3c-4435-9b62-bec9463437a9\"}\n"} -{"Time":"2022-12-07T09:15:34.93721+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:34.937216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:34.937218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.936 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"44.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"196b6c5f-dd4b-44e4-b639-c66c8e178505\"}\n"} -{"Time":"2022-12-07T09:15:34.937896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"749473d0-1524-4a4b-93a4-f9f380d96dbc\"}\n"} -{"Time":"2022-12-07T09:15:34.938312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.938 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/organizations/e17f925f-0efc-48a4-a74f-ad33fabde2b0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.166µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b1320062-d21d-4690-86b7-67bd755be569\"}\n"} -{"Time":"2022-12-07T09:15:34.938317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" update_test.go:84: waiting for template version job 08c8a662-ad5a-446e-83c1-0db641ef54fd\n"} -{"Time":"2022-12-07T09:15:34.939917+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists"} -{"Time":"2022-12-07T09:15:34.939921+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":"=== CONT TestShow/Exists\n"} -{"Time":"2022-12-07T09:15:34.939923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.939 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.417µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"fe35984b-13ae-48ab-99fa-aca0d092c5f1\"}\n"} -{"Time":"2022-12-07T09:15:34.939925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.939 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"27.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f4f88fc-a428-41f7-9c03-99bd05094714\"}\n"} -{"Time":"2022-12-07T09:15:34.939927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.939 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3aebbde3-02b2-4b03-a465-999d1140b9f9\"}\n"} -{"Time":"2022-12-07T09:15:34.940521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.940 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56899\", \"path\": \"/api/v2/users/me/workspace/suspicious-jackson3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"498.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dcf1a810-e330-4459-84b3-461dedf8cde1\"}\n"} -{"Time":"2022-12-07T09:15:34.940832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" ptytest.go:103: 2022-12-07 08:15:34.940: cmd: stdout: \"┌───────────────────────────────────────────────────────────────────────────────────────┐\"\n"} -{"Time":"2022-12-07T09:15:34.940836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" ptytest.go:103: 2022-12-07 08:15:34.940: cmd: stdout: \"│ RESOURCE STATUS VERSION ACCESS │\"\n"} -{"Time":"2022-12-07T09:15:34.940838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" ptytest.go:103: 2022-12-07 08:15:34.940: cmd: stdout: \"├───────────────────────────────────────────────────────────────────────────────────────┤\"\n"} -{"Time":"2022-12-07T09:15:34.940839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" ptytest.go:103: 2022-12-07 08:15:34.940: cmd: stdout: \"│ \\x1b[1mcompute.main\\x1b[0m │\"\n"} -{"Time":"2022-12-07T09:15:34.940841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" ptytest.go:103: 2022-12-07 08:15:34.940: cmd: stdout: \"│ └─ smith (linux, i386) ⦾ connecting [0s] (unknown) \\x1b[;mcoder ssh suspicious-jackson3\\x1b[0m │\"\n"} -{"Time":"2022-12-07T09:15:34.940843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" ptytest.go:103: 2022-12-07 08:15:34.940: cmd: stdout: \"└───────────────────────────────────────────────────────────────────────────────────────┘\"\n"} -{"Time":"2022-12-07T09:15:34.940844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" show_test.go:54: 2022-12-07 08:15:34.940: cmd: matched \"compute.main\" = \"┌───────────────────────────────────────────────────────────────────────────────────────┐\\r\\n│ RESOURCE STATUS VERSION ACCESS │\\r\\n├───────────────────────────────────────────────────────────────────────────────────────┤\\r\\n│ \\x1b[1mcompute.main\"\n"} -{"Time":"2022-12-07T09:15:34.940848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" show_test.go:54: 2022-12-07 08:15:34.940: cmd: matched \"smith (linux, i386)\" = \"\\x1b[0m │\\r\\n│ └─ smith (linux, i386)\"\n"} -{"Time":"2022-12-07T09:15:34.940859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" show_test.go:54: 2022-12-07 08:15:34.940: cmd: matched \"coder ssh suspicious-jackson3\" = \" ⦾ connecting [0s] (unknown) \\x1b[;mcoder ssh suspicious-jackson3\"\n"} -{"Time":"2022-12-07T09:15:34.940963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" ptytest.go:80: 2022-12-07 08:15:34.940: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:34.941111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" t.go:81: 2022-12-07 08:15:34.940 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:34.941602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:34.941606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow","Output":"--- PASS: TestShow (0.00s)\n"} -{"Time":"2022-12-07T09:15:34.941608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Output":" --- PASS: TestShow/Exists (1.21s)\n"} -{"Time":"2022-12-07T09:15:34.94161+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestShow/Exists","Elapsed":1.21} -{"Time":"2022-12-07T09:15:34.941613+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestShow","Elapsed":0} -{"Time":"2022-12-07T09:15:34.941615+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:34.941616+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:34.943499+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:34.943523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:34.943525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.943 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"564.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"944c1356-89d4-4124-a7e0-2c7dacede991\"}\n"} -{"Time":"2022-12-07T09:15:34.944234+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:34.944237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:34.944239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:34.943 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"117.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5788c580-ca95-44aa-8195-a08962d30d75\"}\n"} -{"Time":"2022-12-07T09:15:34.944242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:34.944 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"56.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"312eaad8-e590-4e25-9c9a-01f5c1951d28\"}\n"} -{"Time":"2022-12-07T09:15:34.945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:34.944 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"448.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"eee8bf71-1ce3-4e5d-b7d0-01e8c5850360\"}\n"} -{"Time":"2022-12-07T09:15:34.945634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:34.945 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/organizations/304f437c-b063-4fa0-ba34-4b1bf46b4a03/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d4749efa-06ce-4c85-953f-ca5e6a086de4\"}\n"} -{"Time":"2022-12-07T09:15:34.94564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" update_test.go:37: waiting for template version job cf22e90c-d579-4ebc-9238-bd32a441f0ac\n"} -{"Time":"2022-12-07T09:15:34.948736+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.948743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.948745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:34.948756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.948759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.948784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.948814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.948817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:34.948875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:34.949025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.948 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.949033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.949 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:34.951975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.951 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"18b65f28-f147-48b8-99a7-b47722c7a19f\"}\n"} -{"Time":"2022-12-07T09:15:34.952898+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.952901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.952903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.952 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.952905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.952 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.952907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.952 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.952909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.952 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"88770ed6-5007-426a-b448-d5aa9a624c21\"}\n"} -{"Time":"2022-12-07T09:15:34.954793+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.954802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.954804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:34.954814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.954816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.954831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.954833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.954835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:34.954836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:34.954838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.95484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.954 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:34.956614+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.956618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.95662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.955 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/templateversions/0096ded6-6047-4251-98cc-094cf59c655c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"533.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c977a23a-cc56-4169-a388-8a1bd0c8c14c\"}\n"} -{"Time":"2022-12-07T09:15:34.956624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.956 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/organizations/be81fecb-a814-4779-9b22-5309e54db0e2/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"380.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3baf33e1-724b-4550-b940-26b3a3dc6eac\"}\n"} -{"Time":"2022-12-07T09:15:34.957707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.957 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/organizations/be81fecb-a814-4779-9b22-5309e54db0e2/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"817µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3715aff4-1fb2-4771-88ab-9cd4279700e4\"}\n"} -{"Time":"2022-12-07T09:15:34.957716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ssh_test.go:77: waiting for workspace build job 00ec0012-62de-4c2f-894f-bf64e3ecaa19\n"} -{"Time":"2022-12-07T09:15:34.960114+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.96012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.960122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"541.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"838de926-8e4a-4d7c-b545-44396aa24302\"}\n"} -{"Time":"2022-12-07T09:15:34.961647+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:34.961652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:34.961654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"742.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fc0aa9e6-b49a-4537-ba44-49a54223b692\"}\n"} -{"Time":"2022-12-07T09:15:34.964104+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:34.964109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:34.964111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.963 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.25µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:34.96564+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:34.965643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:34.965645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.965 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aed9219e-8127-48e9-a9e9-e57925da3c53\"}\n"} -{"Time":"2022-12-07T09:15:34.967866+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:34.96787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:34.967872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.967 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:34.967874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.967 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"70915dea-5567-45e5-8490-9ea49b2eed17\"}\n"} -{"Time":"2022-12-07T09:15:34.967876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.967 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:34.971082+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:34.971086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:34.971088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:34.971 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fe618e70-274c-4c6e-8458-11527706a645\"}\n"} -{"Time":"2022-12-07T09:15:34.976465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.976477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.976479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.976 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f1504faa-720f-4238-835f-b75fc8ab0ff7\"}\n"} -{"Time":"2022-12-07T09:15:34.981182+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:34.981187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:34.981189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.980 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:34.981191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.980 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:34.981193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.980 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:34.981195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.980 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHShowTroubleshootingURLAfterTimeout1634515371/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.981197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.980 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"size_bytes\": 150, \"path\": \"/tmp/TestSSHShowTroubleshootingURLAfterTimeout1634515371/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.981199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.980 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHShowTroubleshootingURLAfterTimeout1634515371/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:34.981201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.981 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:34.981203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.981 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:34.982097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:34.982105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:34.982107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:34.981 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9310bdb8-9258-413e-9cbf-84d5bafc3d85\"}\n"} -{"Time":"2022-12-07T09:15:34.983191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:34.98324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:34.983243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:34.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bfc2da34-0c46-4325-b52c-7ad2adbe0fad\"}\n"} -{"Time":"2022-12-07T09:15:34.983286+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:34.983289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:34.983291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:34.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"357.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dee824a1-d995-4cd2-a034-bbb18214e623\"}\n"} -{"Time":"2022-12-07T09:15:34.98866+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:34.988683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:34.988685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:34.988 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"291.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"76bafe30-1b68-49ee-8823-ab48d02569c3\"}\n"} -{"Time":"2022-12-07T09:15:34.992523+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:34.992529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:34.992532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:34.992 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e890bf0b-9014-4922-a92e-b9b4b606cdde\"}\n"} -{"Time":"2022-12-07T09:15:34.996059+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:34.996067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:34.99607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:34.995 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a630bee6-047e-4756-acb5-8f1ada1291de\"}\n"} -{"Time":"2022-12-07T09:15:34.999185+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:34.999193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:34.999195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.999 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:34.999198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.999 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.999231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.999 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:34.999235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.999 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:34.999311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.999 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:34.999317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:34.999 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:35.001562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.001 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"535.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad771060-0c3a-4ced-ac4c-7601345d903d\"}\n"} -{"Time":"2022-12-07T09:15:35.005202+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.005207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.005209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.004 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:35.005211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.004 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.005213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.004 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.005215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.004 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:35.005217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.005 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:35.005218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.005 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:35.007356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.007 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"554.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3d85ddde-000d-4fb6-ba17-e84edfa9962b\"}\n"} -{"Time":"2022-12-07T09:15:35.009214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.009218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.00922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.008 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9934fe51-388f-49d2-90aa-0168cea6632f\"}\n"} -{"Time":"2022-12-07T09:15:35.009927+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.009931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.009933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"397.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d9ee14d6-e8a5-4c28-9487-d05fc6f16928\"}\n"} -{"Time":"2022-12-07T09:15:35.014683+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.014688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.01469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.013 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"331.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49be91ac-3005-4e86-9765-eefaef1f80d6\"}\n"} -{"Time":"2022-12-07T09:15:35.017526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.01755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.017557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:35.017563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.017573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.017579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.017584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.017589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:35.017596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:35.01766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"289.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53f51c12-5ed3-48e8-a302-89d29d0a970c\"}\n"} -{"Time":"2022-12-07T09:15:35.017715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.017726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.017 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:35.02105+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.021055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.021057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.021 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"322.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61b1aff7-a35f-4571-a04c-c91a0d92fd41\"}\n"} -{"Time":"2022-12-07T09:15:35.026542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.02655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.026552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.026 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bd88e083-5d5a-44df-a8ae-f506b425a595\"}\n"} -{"Time":"2022-12-07T09:15:35.030667+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.030677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.030679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.030 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.375µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:35.031607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.031 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:35.031615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.031 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.032211+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.032216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.032218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a713f64f-ea52-4aca-9eab-fce327934e62\"}\n"} -{"Time":"2022-12-07T09:15:35.033491+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.033495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.033497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.033 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"52251433-5c8b-4ad2-a280-264194e14b05\"}\n"} -{"Time":"2022-12-07T09:15:35.035965+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.035973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.035986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"275µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5158bce5-d51d-46b6-9209-eb302659ca5a\"}\n"} -{"Time":"2022-12-07T09:15:35.035989+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.035991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.035992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.035 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:35.04119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.040 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"376.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"929b067f-bc0f-41e3-a7eb-8eac23943ea5\"}\n"} -{"Time":"2022-12-07T09:15:35.044275+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.04428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.044281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.044 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:35.044769+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.044771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.044773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.044 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6576b4a-2b31-4c93-9247-54fb2e1e44c1\"}\n"} -{"Time":"2022-12-07T09:15:35.046214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.046218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.046219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.046 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3ad6f54-21d8-4e15-a9cf-fec9ee74b5ab\"}\n"} -{"Time":"2022-12-07T09:15:35.049909+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.049915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.049917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.049 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:35.049919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.049 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:35.049921+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.049 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:35.049923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.049 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"ddf60114-f68f-471c-8ab2-02174e9ab4d6\"}\n"} -{"Time":"2022-12-07T09:15:35.052626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.052 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/templateversions/bbef5105-99fb-4b3a-b490-d96b4e864bb7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"267.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ee987d99-dc83-4bca-9613-5f47232475a5\"}\n"} -{"Time":"2022-12-07T09:15:35.053174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.053 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/organizations/d4ed2fd0-4c94-4a6d-bcb4-d9ad01e33236/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"283.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7ffeca8a-a4a8-4a73-aec4-a47bd26c0bf0\"}\n"} -{"Time":"2022-12-07T09:15:35.053995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.053 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/organizations/d4ed2fd0-4c94-4a6d-bcb4-d9ad01e33236/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"649µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e533be05-bc8e-4838-8c10-c1bdcb1b2c4c\"}\n"} -{"Time":"2022-12-07T09:15:35.054214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" list_test.go:25: waiting for workspace build job 69682f55-568c-4954-be9e-3f4370494b62\n"} -{"Time":"2022-12-07T09:15:35.055317+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.055344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.055353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.055 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:35.055368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.055 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:35.055435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.055 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:35.05545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.055 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"2f20aa18-4501-40aa-b8d1-d66251b61b38\"}\n"} -{"Time":"2022-12-07T09:15:35.057621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/templateversions/5da438a1-ba8e-455c-a00b-8c526c61b39b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"346.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cb921ba6-f718-46e0-bb4c-3d7546aa2640\"}\n"} -{"Time":"2022-12-07T09:15:35.058348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/organizations/3b442a7e-a114-455a-a591-66a2768744ea/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"254.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5474f7eb-a4c3-4e81-a27b-1e9d6d4c89fe\"}\n"} -{"Time":"2022-12-07T09:15:35.058357+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.058359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.058361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ac8e313-1bb8-4333-b4af-d6fadb194bcc\"}\n"} -{"Time":"2022-12-07T09:15:35.058655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.05866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.058662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"360.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1601682c-e251-4e1c-b000-c9894ab89c86\"}\n"} -{"Time":"2022-12-07T09:15:35.058979+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.058983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.058985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/organizations/3b442a7e-a114-455a-a591-66a2768744ea/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"761.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"16e2bc50-c828-4efb-a393-25f506fde9f2\"}\n"} -{"Time":"2022-12-07T09:15:35.05905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ssh_test.go:208: waiting for workspace build job 3c19008c-927a-4f34-932d-2521aed4c049\n"} -{"Time":"2022-12-07T09:15:35.064197+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.064206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.064208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.063 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"381.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"66e49f93-e260-49eb-9d82-f10892f62792\"}\n"} -{"Time":"2022-12-07T09:15:35.065131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.065135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.065137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.065139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.065226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:35.06523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHForwardAgent3998299952/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.065232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"size_bytes\": 112, \"path\": \"/tmp/TestSSHForwardAgent3998299952/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.065242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHForwardAgent3998299952/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.06531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"workspace_name\": \"crazy-dubinsky1\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:35.066015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.065 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.066024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.066 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.068154+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.068161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.068164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.067 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"667.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"27358042-b97b-4f37-ad95-b26c28fc5cd5\"}\n"} -{"Time":"2022-12-07T09:15:35.068167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.067 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:35.068169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.067 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.068171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.068 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.068321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.068 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:35.068325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.068 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:35.068428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.068 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:35.073238+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.073252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.073255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.073 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"844.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c926b1cf-157a-49de-9c72-2eb4aebb1299\"}\n"} -{"Time":"2022-12-07T09:15:35.080093+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.080106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.080109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.080 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"645.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e6d6deb-b135-4c28-bfef-8e00d30de04f\"}\n"} -{"Time":"2022-12-07T09:15:35.082639+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.082644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.082646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.081 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:35.082649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.081 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.082651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.081 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.082653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.081 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.082655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.081 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.082671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.081 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:35.082673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.081 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:35.082675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.082 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.082679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.082 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:35.083922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"536.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c279f45-d52a-48ae-b17b-21e8779a6937\"}\n"} -{"Time":"2022-12-07T09:15:35.08393+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.083932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.083934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"437.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0f934c9-e448-4b20-8e66-2236a8054d17\"}\n"} -{"Time":"2022-12-07T09:15:35.084673+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.084677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.084679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.084 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"35cf7e48-d585-4bc0-a43c-87cb9f7bd2e0\"}\n"} -{"Time":"2022-12-07T09:15:35.086431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.086436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.086438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.08644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.086806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:35.08681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.086812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.086814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.086816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.086818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.086 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:35.089011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.088 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"517µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"54dd182e-b972-4091-bc05-c74cc2a9ee67\"}\n"} -{"Time":"2022-12-07T09:15:35.093392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.093399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.093401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.092 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"367.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"92326b5f-de1e-47e2-86b4-94e0176e8f15\"}\n"} -{"Time":"2022-12-07T09:15:35.094612+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.094637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.094644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.094737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.094794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:35.094802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.094836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.09484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.094861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.094913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.094 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:35.096135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.096 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ed50db47-82fc-4a99-a310-b5c7206db88d\"}\n"} -{"Time":"2022-12-07T09:15:35.105653+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.10566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.105662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"406.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e9e3b6b3-7c18-4503-92d3-d9c2d727e743\"}\n"} -{"Time":"2022-12-07T09:15:35.108485+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.10849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.108492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.108 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"440.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"acc267b0-a078-4721-9cd1-47bfcbc38638\"}\n"} -{"Time":"2022-12-07T09:15:35.108969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.108972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.108974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.108 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"608e76cb-5f05-4a10-86b6-f1f630bbcdb3\"}\n"} -{"Time":"2022-12-07T09:15:35.110123+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.110129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.110131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.110 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"36b651e5-19e9-4cf5-9653-4d199f43847f\"}\n"} -{"Time":"2022-12-07T09:15:35.114189+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.114201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.114204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"360.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ba2eb2c5-9762-4e49-88fd-ae696f59993e\"}\n"} -{"Time":"2022-12-07T09:15:35.116187+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.116213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.116219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.116 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.116225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.116 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.116231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.116 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.116238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.116 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.117826+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.117834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.117837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.117 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b580172a-36e3-4b04-b0ef-0be6d42677f0\"}\n"} -{"Time":"2022-12-07T09:15:35.119794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.119 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:35.119879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.119 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:35.119882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.119 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:35.119884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.119 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"38bbf702-45ca-4b53-9279-4e6c8743a06d\"}\n"} -{"Time":"2022-12-07T09:15:35.121126+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.121133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.121147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.121 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6dbe3e02-ff4a-46ec-bb14-cc021602cb31\"}\n"} -{"Time":"2022-12-07T09:15:35.129947+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.129962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.129965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.129 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"467.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ff220493-a0c3-459f-a97c-8e1b13d272a4\"}\n"} -{"Time":"2022-12-07T09:15:35.13349+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.133516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.133518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.133 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"613.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8e509f12-ab77-4b31-aa9f-db6a803cb3aa\"}\n"} -{"Time":"2022-12-07T09:15:35.13403+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.134034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.134036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.133 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:35.134059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.133 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.134067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.133 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.134069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.133 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:35.134071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.133 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:35.134073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.133 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:35.13431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.134 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d16571b5-11a0-4681-8e39-846b5362b94a\"}\n"} -{"Time":"2022-12-07T09:15:35.134705+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.134709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.134711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.134 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4b6e3d36-0128-46f4-ad62-28e0d92fced1\"}\n"} -{"Time":"2022-12-07T09:15:35.135134+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.135137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.135139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.135 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.584µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:35.136802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.136 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.136812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.136 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.140291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.140 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6507fe87-2cd0-46b5-a200-69636df570e0\"}\n"} -{"Time":"2022-12-07T09:15:35.143556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.143563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.143566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.143 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/templateversions/c00597f4-4112-4187-b8f7-456d58d88f25\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"354.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1fa9e890-dcb8-4c65-bb19-889bcc51d70a\"}\n"} -{"Time":"2022-12-07T09:15:35.144897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.143 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/organizations/acc171fe-c98b-476b-a97f-08e3bc001cb2/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"402.041µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"04ea5b94-d9ac-4062-9690-842bd338d43b\"}\n"} -{"Time":"2022-12-07T09:15:35.144908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.144 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/organizations/acc171fe-c98b-476b-a97f-08e3bc001cb2/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"726.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"405b17e1-461a-4c2d-8057-7837248bbecb\"}\n"} -{"Time":"2022-12-07T09:15:35.144911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" ssh_test.go:139: waiting for workspace build job 36f6b7c8-820a-43d5-862a-e1584852940a\n"} -{"Time":"2022-12-07T09:15:35.145211+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.145219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.145221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.145 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.145223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.145 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.145873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.145 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"6.708µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:35.146774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.146 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e2f6afdd-d955-4d1b-b1e1-ba6188c3fa94\"}\n"} -{"Time":"2022-12-07T09:15:35.154963+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.155004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.155007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.154 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a130743e-771a-42ee-b265-dead17ba6c5b\"}\n"} -{"Time":"2022-12-07T09:15:35.158484+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.158489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.158491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"376.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fc17e9bd-ba7f-4886-ab7e-507752c315b0\"}\n"} -{"Time":"2022-12-07T09:15:35.159735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.159766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.15977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1d302db2-09b9-42ac-9e8a-cbb8d9915c96\"}\n"} -{"Time":"2022-12-07T09:15:35.160556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.160561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.160564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.160 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e42385c1-3278-4611-a889-ecfb226035af\"}\n"} -{"Time":"2022-12-07T09:15:35.163846+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.163854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.163856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.163 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49db7064-61fa-4fa3-9d2e-03f6b3d4f94f\"}\n"} -{"Time":"2022-12-07T09:15:35.16652+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.166527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.16653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.166 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.166532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.166 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.166534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.166 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"resource_count\": 1, \"resources\": [{\"name\": \"dev\", \"type\": \"google_compute_instance\", \"agents\": [{\"id\": \"fb50331b-e1e2-4ad0-bac1-486cc3463ddf\", \"Auth\": {\"Token\": \"cdb52084-4c8d-4864-bcb3-b512f41cfb50\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.170899+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.170906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.170908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.170 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"486.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"13f2b03a-fb7c-41f9-8fba-643c8ab94499\"}\n"} -{"Time":"2022-12-07T09:15:35.171322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.171325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.171327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.171 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"376.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"80576acb-3a84-427e-82df-1344f74ac6a0\"}\n"} -{"Time":"2022-12-07T09:15:35.180714+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.180744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.180747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.179 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"444.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a759f310-4f18-4d79-819c-4ae1cd4426da\"}\n"} -{"Time":"2022-12-07T09:15:35.183552+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.183563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.183565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.183 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"446.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"43a41aae-f047-46f7-a184-511350f426f9\"}\n"} -{"Time":"2022-12-07T09:15:35.1838+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.183804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.183806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.183 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7c28c763-d655-46aa-8447-1e299fcdb948\"}\n"} -{"Time":"2022-12-07T09:15:35.184182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.184 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:35.184191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.184 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:35.184193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.184 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:35.184195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.184 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"151d5608-775c-44ff-bfb2-937b18dd1d80\"}\n"} -{"Time":"2022-12-07T09:15:35.184628+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.184631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.184633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d374b080-3e9e-4794-add6-83541ec21fb2\"}\n"} -{"Time":"2022-12-07T09:15:35.188006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.188012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.188014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.188016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.188018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.18802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.188022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.188024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.188026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.188027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.188029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.187 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.189106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.188 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b5baaa4-bfbe-47e6-99e0-0d1dbb5e66bb\"}\n"} -{"Time":"2022-12-07T09:15:35.195307+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.195314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.195317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.195319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.195337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.195342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.195349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.195457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.195465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.195467+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.195468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.19547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"381.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7156f623-c2b1-4e9e-b465-2d2a38a9ed33\"}\n"} -{"Time":"2022-12-07T09:15:35.195473+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.195474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.195475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.195479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.195 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.196496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.196 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"395.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e5b6674-cfd5-47d7-9c5f-609b9f81f429\"}\n"} -{"Time":"2022-12-07T09:15:35.206413+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.206423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.206435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.205 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"641.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"960edca8-b966-43a6-a732-9e54ce1e9518\"}\n"} -{"Time":"2022-12-07T09:15:35.208351+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.208357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.208362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/templateversions/3fe0459e-25d8-4391-9409-099b250d1f91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"479.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3d9998c6-f749-49b1-9e25-924ae6a09c74\"}\n"} -{"Time":"2022-12-07T09:15:35.208964+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.208982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.208984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"329.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d74b3def-3d2a-4c55-9e64-f81d215b3b73\"}\n"} -{"Time":"2022-12-07T09:15:35.208987+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.208988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.20899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/organizations/e173e15e-89f2-457e-8afb-4ebe49e2f852/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"387.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b92e32c7-db72-4eb8-82cf-18eac2639c8f\"}\n"} -{"Time":"2022-12-07T09:15:35.209451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.20946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.209463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3f47931e-c96f-4163-9125-7a2ec5e86a8f\"}\n"} -{"Time":"2022-12-07T09:15:35.209909+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.209913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.209915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/organizations/e173e15e-89f2-457e-8afb-4ebe49e2f852/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"778.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d4944350-83a0-4bea-b353-f97417dfae85\"}\n"} -{"Time":"2022-12-07T09:15:35.209918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ssh_test.go:112: waiting for workspace build job a405f8b5-f302-49c4-8e11-96ba1fed7492\n"} -{"Time":"2022-12-07T09:15:35.214863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.214891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.214895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.214 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d624acf3-c61a-4a93-856d-b373b2aa5ec0\"}\n"} -{"Time":"2022-12-07T09:15:35.216919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.21709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.217093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.216 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.217096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.216 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.217098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.216 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.2171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.216 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.217102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.216 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.221352+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.221357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.221359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.221 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ff835c3a-59ae-4d8b-aa86-da6cc89fce6b\"}\n"} -{"Time":"2022-12-07T09:15:35.221628+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.221637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.221638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.221 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"482.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"73c243f3-1c65-42ec-8f91-b0732e54bade\"}\n"} -{"Time":"2022-12-07T09:15:35.22978+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.22979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.229793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.229 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"657f95fa-236c-4f49-b29e-53f477367760\"}\n"} -{"Time":"2022-12-07T09:15:35.233541+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.233575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.233592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.233 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"465.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fad09b76-557b-406c-9358-34e8ab88f54a\"}\n"} -{"Time":"2022-12-07T09:15:35.234659+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.234664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.234665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.234 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"433µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c8d0948-0b3d-44e1-a747-2ec71dc4429e\"}\n"} -{"Time":"2022-12-07T09:15:35.235351+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.235355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.235357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"266.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"59b956aa-242d-479d-8600-a01a6931d519\"}\n"} -{"Time":"2022-12-07T09:15:35.238691+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.238696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.238698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.238 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.238701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.238 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.238703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.238 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.238719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.238 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.238721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.238 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.238724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.238 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.239346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.239 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"467.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5c5ff033-92ea-4ef3-b3a5-35ff0bbd9b64\"}\n"} -{"Time":"2022-12-07T09:15:35.245708+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.245717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.24572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.245 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.245794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.245 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.2458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.245 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.245802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.245 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.245869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.245 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.245947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.245 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.249517+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.249525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.249545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.249 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"579.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1385f8c-2701-426b-89f3-dd333abd3c22\"}\n"} -{"Time":"2022-12-07T09:15:35.250289+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.250294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.250296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.250 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"827.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dea6fedc-5c87-4bfc-9f13-b0fee747dab3\"}\n"} -{"Time":"2022-12-07T09:15:35.255008+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.255019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.255022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.254 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"627.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eee2630a-ddd1-4e84-8fe0-e20d012865c9\"}\n"} -{"Time":"2022-12-07T09:15:35.258799+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.258807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.258809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.258 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"538µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ff1b579e-5aa1-4f4a-8957-3cf0305b113e\"}\n"} -{"Time":"2022-12-07T09:15:35.260635+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.260643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.260657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"466.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"84432700-77d4-4fa0-a5ac-a5b354787c2b\"}\n"} -{"Time":"2022-12-07T09:15:35.261137+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.261143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.261145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c5d396b8-3222-4bfa-a435-ac8284b36c12\"}\n"} -{"Time":"2022-12-07T09:15:35.263748+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.263753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.263755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.263 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"367.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4909300-298d-448e-bb56-658b9714abd0\"}\n"} -{"Time":"2022-12-07T09:15:35.267299+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.267308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.26731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.267 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.267313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.267 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.267315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.267 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.267317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.267 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.267319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.267 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.271325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.271332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.271334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"81093cbf-60cd-40e8-b4b6-cc197b9dbe2e\"}\n"} -{"Time":"2022-12-07T09:15:35.271337+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.271338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.27134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.270 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"290µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fa17dd7c-916c-4402-9c46-5145d213f680\"}\n"} -{"Time":"2022-12-07T09:15:35.280543+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.280566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.280568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.280 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"382.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ce6970c4-f109-476e-9da5-e89a4b4ad97f\"}\n"} -{"Time":"2022-12-07T09:15:35.283195+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.283199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.283202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.283 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c801ec5b-e322-4718-b90f-22c7634a41dc\"}\n"} -{"Time":"2022-12-07T09:15:35.285559+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.285565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.285567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90a5e7f2-1142-4881-8f0a-cd52dbd9027f\"}\n"} -{"Time":"2022-12-07T09:15:35.285712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.28572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.285723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"601.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"087e0a62-6247-4c39-b536-856590447783\"}\n"} -{"Time":"2022-12-07T09:15:35.288966+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.288973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.288977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.288 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"05e23514-cbaa-4663-b892-c10f77c1e5b6\"}\n"} -{"Time":"2022-12-07T09:15:35.288979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.288 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.288981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.288 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.288988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.288 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.288991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.288 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"70450b8f-e377-4c17-8643-00d0c1a70c6f\"}\n"} -{"Time":"2022-12-07T09:15:35.29588+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.29589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.295892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.295 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"557µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c12f2d2e-7a0f-4276-aec9-232dc20ee0b2\"}\n"} -{"Time":"2022-12-07T09:15:35.296083+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.296088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.29609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.295 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.296092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.296 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.296094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.296 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.296342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.296 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"472bb826-8662-4604-9a58-bc05afd4964f\"}\n"} -{"Time":"2022-12-07T09:15:35.296531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.296 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d9344b91-78ea-4ec8-b345-6e826fa575db\"}\n"} -{"Time":"2022-12-07T09:15:35.29716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.296 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/organizations/304f437c-b063-4fa0-ba34-4b1bf46b4a03/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.666µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a5879859-a331-449b-9393-60eccce042b9\"}\n"} -{"Time":"2022-12-07T09:15:35.299807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.299 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.292µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"647626d4-b220-47e8-a6d4-0ef74a2f584f\"}\n"} -{"Time":"2022-12-07T09:15:35.299939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.299 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3511bbbe-73f0-462d-bb27-dc16d03db20b\"}\n"} -{"Time":"2022-12-07T09:15:35.300516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.300 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f88d8132-2efe-4e50-82a3-22b37afb0ee2\"}\n"} -{"Time":"2022-12-07T09:15:35.300834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.300 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"48.125µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"cfdc8538-4b0b-45c2-ad11-9daf47aba8f3\"}\n"} -{"Time":"2022-12-07T09:15:35.30128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.301 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/organizations/304f437c-b063-4fa0-ba34-4b1bf46b4a03/templates/quizzical-matsumoto3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"938569d8-b627-47d1-9e72-e65f41193336\"}\n"} -{"Time":"2022-12-07T09:15:35.302019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.301 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"579.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a4466ad7-7ebe-4f0d-b538-2a6cab339e64\"}\n"} -{"Time":"2022-12-07T09:15:35.302775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.302 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c267c26a-ab05-4dc0-ae99-c95ed32a1950\"}\n"} -{"Time":"2022-12-07T09:15:35.303803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.303 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"954.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"456c28e4-2413-45ed-bb87-538edfb1fdfa\"}\n"} -{"Time":"2022-12-07T09:15:35.304697+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.304721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.304727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.304 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"00ee2be6-0b8d-4ff6-be69-db638e27dbac\"}\n"} -{"Time":"2022-12-07T09:15:35.304826+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.30483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.304832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.304 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac/dry-run/41ca93bb-8556-4be9-9736-559b3433a2b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"715.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90127d16-d298-4514-9e0b-4cc484a3d2a5\"}\n"} -{"Time":"2022-12-07T09:15:35.308352+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.308357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.30836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.308 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"161308c6-c3ce-4c1e-8369-bf402be69770\"}\n"} -{"Time":"2022-12-07T09:15:35.3099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.309905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.309906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.309 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3bb13c8c-e39f-40b5-88c6-a60e29313005\"}\n"} -{"Time":"2022-12-07T09:15:35.310274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.310336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.310352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"244.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e0043d19-3858-488b-998a-bc63f797df09\"}\n"} -{"Time":"2022-12-07T09:15:35.314363+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.314368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.31437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.314 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bdc22a46-612c-43f2-85f1-ce2dd96e815e\"}\n"} -{"Time":"2022-12-07T09:15:35.314815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.314 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/organizations/e17f925f-0efc-48a4-a74f-ad33fabde2b0/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f1e861e4-dd2f-4c7f-8359-553c67258b98\"}\n"} -{"Time":"2022-12-07T09:15:35.317287+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.317295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.317298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.317 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.317301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.317 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"3c19008c-927a-4f34-932d-2521aed4c049\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:35.317345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.317 [DEBUG]\t(provisionerd-lucid_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.317358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.317 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"7262204f-4df7-4f1c-8b30-35812d48d39d\"}\n"} -{"Time":"2022-12-07T09:15:35.317497+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.317514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.31752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.317 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"54.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5f08d319-d7d1-486b-bc08-3a4f7f23161b\"}\n"} -{"Time":"2022-12-07T09:15:35.31781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.317 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"94df8e6d-3c7d-4101-83b4-1fc4868a4c04\"}\n"} -{"Time":"2022-12-07T09:15:35.318307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0389dc47-cb12-4a3a-bcfe-53aeb3c3e3c7\"}\n"} -{"Time":"2022-12-07T09:15:35.318463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"25.791µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"e4cb5815-b771-427b-ba86-93a0edebfc7f\"}\n"} -{"Time":"2022-12-07T09:15:35.318968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/organizations/e17f925f-0efc-48a4-a74f-ad33fabde2b0/templates/focused-fermat4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e6f7d74-7b78-40d3-baf7-4c8c6eee7ee8\"}\n"} -{"Time":"2022-12-07T09:15:35.319539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.319 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"254.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"43d244b5-d5c3-45f6-8a21-438681f7f5cf\"}\n"} -{"Time":"2022-12-07T09:15:35.319859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.319 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"232.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"665d4d43-5082-4a0a-8627-01c37df9ff7d\"}\n"} -{"Time":"2022-12-07T09:15:35.320309+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.320323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.320325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.320 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"259.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"246b6a11-e922-4133-b0ed-01f4d47567e4\"}\n"} -{"Time":"2022-12-07T09:15:35.320659+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.320662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.320664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.320 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"491.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8c766ab2-de41-4853-afe2-b3769ad5cd11\"}\n"} -{"Time":"2022-12-07T09:15:35.321147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.321 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd/dry-run/23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9ec9da49-72ed-4ff7-be25-aea187853c15\"}\n"} -{"Time":"2022-12-07T09:15:35.329806+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.329814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.329816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.329 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"294.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"13b6603c-2c48-4d53-8009-fe5361bf685b\"}\n"} -{"Time":"2022-12-07T09:15:35.334205+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.33423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.334233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.333 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e541c933-2af8-463b-b2cd-b0a52002f2f1\"}\n"} -{"Time":"2022-12-07T09:15:35.335997+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.336004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.336006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33387ca3-3a7a-410a-856b-36c4adbd0b06\"}\n"} -{"Time":"2022-12-07T09:15:35.337084+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.337092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.337094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.336 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspacebuilds/3c19008c-927a-4f34-932d-2521aed4c049\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"390.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1559794c-5a1b-409a-9c2f-c8b10fb2fedc\"}\n"} -{"Time":"2022-12-07T09:15:35.337096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.336 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:446\u003e\t(*agent).init\tgenerating host key\n"} -{"Time":"2022-12-07T09:15:35.34555+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.345574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.345581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.345 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"360.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0021d319-69a3-40cb-b63d-64a4533f1447\"}\n"} -{"Time":"2022-12-07T09:15:35.356716+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.356726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.356729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.356 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5d9b9290-5738-4e16-9ab0-15f0d6014760\"}\n"} -{"Time":"2022-12-07T09:15:35.361122+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.361131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.361144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.360 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"730c2d02-eb14-47d8-8837-8e1d2fbd6d9d\"}\n"} -{"Time":"2022-12-07T09:15:35.365116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.365125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.365128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:35.36513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHShowTroubleshootingURLAfterTimeout1634515371/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.365132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"size_bytes\": 150, \"path\": \"/tmp/TestSSHShowTroubleshootingURLAfterTimeout1634515371/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.365134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHShowTroubleshootingURLAfterTimeout1634515371/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.365136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"workspace_name\": \"strange-bell3\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:35.365138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.36514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.364 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.365844+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.365849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.365852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.365 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a2bfe37-7868-4193-b38d-2f563a46341c\"}\n"} -{"Time":"2022-12-07T09:15:35.371123+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.371129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.371131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.371 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49143656-3e2d-4a94-8fe4-c862690fee0a\"}\n"} -{"Time":"2022-12-07T09:15:35.379987+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.380018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.38002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.379 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"357.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f0974750-b6cf-49ef-8e79-45c7096a5e01\"}\n"} -{"Time":"2022-12-07T09:15:35.383502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.383508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.38351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.383 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cb554d46-6aa2-4380-9729-8e230820e357\"}\n"} -{"Time":"2022-12-07T09:15:35.387896+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.387905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.387907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.387 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"27d1361b-d2f4-44e9-8ebc-496a103b6277\"}\n"} -{"Time":"2022-12-07T09:15:35.396008+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.396016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.396019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.395 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"429.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"860f5a5a-ec8d-4879-8e22-7307f3dda20e\"}\n"} -{"Time":"2022-12-07T09:15:35.408868+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.408918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.408936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.408 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"791.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e4670c6f-1b37-4732-89c9-6e91e3cfbc3f\"}\n"} -{"Time":"2022-12-07T09:15:35.409669+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.409681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.409684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.409 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"791.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"633b1731-b850-4d0a-9c05-0a711470704d\"}\n"} -{"Time":"2022-12-07T09:15:35.411251+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.411285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.411288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.411 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"758.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e9105107-b798-452e-94f4-cac4aa8ab262\"}\n"} -{"Time":"2022-12-07T09:15:35.416052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.415 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.416061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.415 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.416065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.415 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.416066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.415 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.418555+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.418558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.418562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.418564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.418566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:35.418699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHImmediateExit334889163/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.418708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"size_bytes\": 112, \"path\": \"/tmp/TestSSHImmediateExit334889163/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.418713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHImmediateExit334889163/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.418715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"workspace_name\": \"dazzling-turing9\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:35.419075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.419079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.418 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.420652+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.420661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.420664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.420 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"550.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"99c7d8ec-91d5-4ff2-8320-b35e2e8818eb\"}\n"} -{"Time":"2022-12-07T09:15:35.429817+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.429825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.429827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5f2613fe-967e-451d-8603-ddcdb168d8b5\"}\n"} -{"Time":"2022-12-07T09:15:35.433401+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.433406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.433408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.433 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"65c98671-6f9a-45c7-a421-96405a902937\"}\n"} -{"Time":"2022-12-07T09:15:35.43544+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.435451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.435453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f9b6ca5e-b0e2-4022-a8fd-a4e109b10a7d\"}\n"} -{"Time":"2022-12-07T09:15:35.445341+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.445349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.445351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.445 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"15a7db34-b00e-402d-a1d7-ff42b8c531d9\"}\n"} -{"Time":"2022-12-07T09:15:35.454702+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.454709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.454711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"369.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"03ca38a8-2562-48b6-99d1-390387470d2f\"}\n"} -{"Time":"2022-12-07T09:15:35.457907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.457 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.457997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.457 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.458023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.457 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:35.458026+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.458029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.458031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"308.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6679a9c5-3c5b-477a-953a-62c9b497c725\"}\n"} -{"Time":"2022-12-07T09:15:35.458073+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.458077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.458079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.458 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"size_bytes\": 2, \"path\": \"/tmp/TestListSingle358689189/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.458081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.458 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"size_bytes\": 2, \"path\": \"/tmp/TestListSingle358689189/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.458084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.458 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"size_bytes\": 2, \"path\": \"/tmp/TestListSingle358689189/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.458103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.458 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"workspace_name\": \"laughing-wescoff1\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:35.458166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.458 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.458196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.458 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.460575+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.460579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.460581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5bf8a4c8-21b3-4865-b869-f91b93a69778\"}\n"} -{"Time":"2022-12-07T09:15:35.466104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.466 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.466172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.466 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.466209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.466 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"resource_count\": 1, \"resources\": [{\"name\": \"dev\", \"type\": \"google_compute_instance\", \"agents\": [{\"id\": \"f3c4cd43-c871-49a3-a95e-68f61179e6ba\", \"Auth\": {\"Token\": \"bd3dfff2-8789-4393-844d-fac34d18d55b\"}, \"connection_timeout_seconds\": 1, \"troubleshooting_url\": \"https://example.com/troubleshoot\"}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.468859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.468863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.468865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.468 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.46887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.468 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.468915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.468 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.468918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.468 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.47022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.470229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.470231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.470 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"187325f4-2094-459b-87cf-481bdddea12b\"}\n"} -{"Time":"2022-12-07T09:15:35.479073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.479173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.479176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:35.479212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHStdio3967758857/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.479253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"size_bytes\": 112, \"path\": \"/tmp/TestSSHStdio3967758857/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.479256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"size_bytes\": 2, \"path\": \"/tmp/TestSSHStdio3967758857/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.47927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"workspace_name\": \"jolly-margulis0\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:35.479322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.479326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.479 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.479684+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.479687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.479689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"47b96074-4fc1-43de-b2dd-428a46e0a720\"}\n"} -{"Time":"2022-12-07T09:15:35.483067+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.483076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.483079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.483 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ffc80016-63ba-440f-96e3-d658a335f15b\"}\n"} -{"Time":"2022-12-07T09:15:35.486896+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.486906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.486909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.486 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0b05fe0f-7b74-4e10-a570-973feceda029\"}\n"} -{"Time":"2022-12-07T09:15:35.497109+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.497118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.497121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.497 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"317.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"412b4e11-b24f-462a-91b1-6b3895c52a43\"}\n"} -{"Time":"2022-12-07T09:15:35.505057+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.505072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.505075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.504 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"581.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"752fab40-58bb-4b68-b734-af765da7dbef\"}\n"} -{"Time":"2022-12-07T09:15:35.50813+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.508136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.508139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.508 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"184ad52a-fd44-4272-9e4e-51f51dabf2e8\"}\n"} -{"Time":"2022-12-07T09:15:35.508481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.508486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.508488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.508 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.508541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.508 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.508593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.508 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.508655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.508 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.508726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.508 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/coderd.go:699\u003e\t(*API).CreateInMemoryProvisionerDaemon.func2\tdrpc server error ...\n"} -{"Time":"2022-12-07T09:15:35.50873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" \"error\": connection closed\n"} -{"Time":"2022-12-07T09:15:35.508731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" \tstorj.io/drpc/drpcstream.(*Stream).sendPacket:268\n"} -{"Time":"2022-12-07T09:15:35.508733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" \tstorj.io/drpc/drpcstream.(*Stream).CloseSend:501\n"} -{"Time":"2022-12-07T09:15:35.508735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" \tstorj.io/drpc/drpcserver.(*Server).handleRPC:126\n"} -{"Time":"2022-12-07T09:15:35.508736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" \tstorj.io/drpc/drpcserver.(*Server).ServeOne:66\n"} -{"Time":"2022-12-07T09:15:35.508737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" \tstorj.io/drpc/drpcserver.(*Server).Serve.func2:112\n"} -{"Time":"2022-12-07T09:15:35.508739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" \tstorj.io/drpc/drpcctx.(*Tracker).track:52\n"} -{"Time":"2022-12-07T09:15:35.510557+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.510563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.510639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"481µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"22c036a8-a208-4224-be99-34b642b85aaf\"}\n"} -{"Time":"2022-12-07T09:15:35.517015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.516 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.517305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.517 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.517309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.517 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.517312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.517 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.517338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.517 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.519019+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.519024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.519026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.518 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.519207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.519 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.519297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.519 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"resource_count\": 1, \"resources\": [{\"name\": \"dev\", \"type\": \"google_compute_instance\", \"agents\": [{\"id\": \"6304cceb-ac32-4ea5-bf1c-f8c86a4f9977\", \"Auth\": {\"Token\": \"160b7a1a-3bcd-44a9-9823-02294f9c5d97\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.5205+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.520504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.520507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.520 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"367.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"489e8117-2baf-42a2-964a-7fdea3cb5901\"}\n"} -{"Time":"2022-12-07T09:15:35.529422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.529 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.529431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.529 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.529447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.529 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.529463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.529 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.530367+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.53037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.530372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.530 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"461.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c41cf3d6-114f-471f-a528-7a5e976d04ae\"}\n"} -{"Time":"2022-12-07T09:15:35.53365+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.533657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.53366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.533 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"df1eaef8-4b88-4ef4-b071-df4e75e75b18\"}\n"} -{"Time":"2022-12-07T09:15:35.535778+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.535789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.535792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0fb2fd6a-2cb7-4636-adb3-f55b5f75cbda\"}\n"} -{"Time":"2022-12-07T09:15:35.536692+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.536708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.53671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ssh_test.go:272: 2022-12-07 08:15:35.536: cmd: stdin: \"env\\r\"\n"} -{"Time":"2022-12-07T09:15:35.536968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:35.536: cmd: stdout: \"env\"\n"} -{"Time":"2022-12-07T09:15:35.537626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"db3ad9a6-b727-4247-8b55-16435eff7c69\"}\n"} -{"Time":"2022-12-07T09:15:35.537773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c2ec9b73-9337-4676-b437-724b7849fcb4\"}\n"} -{"Time":"2022-12-07T09:15:35.538332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/users/me/workspace/crazy-dubinsky1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"409.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fb447268-4ce5-4482-9d8c-2f9258e81ce5\"}\n"} -{"Time":"2022-12-07T09:15:35.538895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/3a36b48a-7949-4a41-850d-2539afa4849c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"316.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b768a0d-d30d-4b72-b0c7-acc1c1257ce0\"}\n"} -{"Time":"2022-12-07T09:15:35.545193+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.545202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.545204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.545 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"289.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c7d9975d-8684-4e60-bd87-8efca29d8153\"}\n"} -{"Time":"2022-12-07T09:15:35.55471+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.554718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.554721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.554 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a3c0e5c-6f91-4aa2-8460-aa19924389eb\"}\n"} -{"Time":"2022-12-07T09:15:35.558414+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.558429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.558432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.558 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"619.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ccbb097b-fa7e-439c-8311-f62bab3e259f\"}\n"} -{"Time":"2022-12-07T09:15:35.558893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.558897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.558901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.558 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.558971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.558 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.558 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.561869+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.561874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.561877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.561 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"301µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1f6e046b-a3c0-4465-abbe-c2aaef1094b2\"}\n"} -{"Time":"2022-12-07T09:15:35.567469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.567 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.567475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.567 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.567577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.567 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.56759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.567 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.567634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.567 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.569437+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.569454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.56949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.569 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.569523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.569 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.569577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.569 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.569622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.569 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.569687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.569 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.570644+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.570648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.57065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.570 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"715.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1ba3957-8de8-4e9e-bd43-fb3733a56878\"}\n"} -{"Time":"2022-12-07T09:15:35.579731+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.57974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.579742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.579 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2dbc5e5d-6b60-4278-ac27-a325095dcc51\"}\n"} -{"Time":"2022-12-07T09:15:35.579769+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.579772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.579774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.579 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.57989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.579 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.579894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.579 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"resource_count\": 1, \"resources\": [{\"name\": \"dev\", \"type\": \"google_compute_instance\", \"agents\": [{\"id\": \"966f7ae5-2220-42b9-bbd8-c963534dd88b\", \"Auth\": {\"Token\": \"7945ca92-46da-4419-b426-28a6f717778a\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.583263+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.583268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.58327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.583 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"74683bf0-d5f7-4c32-896c-dbf56ad26ec4\"}\n"} -{"Time":"2022-12-07T09:15:35.585355+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.585358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.585373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f1863064-3336-4a0d-8aa9-ec094c192aca\"}\n"} -{"Time":"2022-12-07T09:15:35.595481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.595489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.595509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.595 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"efd2cc3e-877b-4618-a50f-f63b9551b63f\"}\n"} -{"Time":"2022-12-07T09:15:35.605828+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.605836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.605838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.605 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b171ede8-009f-426c-bece-53d924363442\"}\n"} -{"Time":"2022-12-07T09:15:35.608177+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.608184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.608187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.607 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fefa4ab3-bffa-43fd-b0eb-99dae36b9e6e\"}\n"} -{"Time":"2022-12-07T09:15:35.611891+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.611898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.6119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.611 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.611902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.611 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.611923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.611 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.611927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.611 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.61193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.611 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.612279+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.612282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.612289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.612 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"617.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fb8a2381-b15c-40b8-acdb-d3a1ae149fc7\"}\n"} -{"Time":"2022-12-07T09:15:35.61871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.618 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.618742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.618 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"timeout\": \"1s\"}\n"} -{"Time":"2022-12-07T09:15:35.618802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.618 [DEBUG]\t(provisionerd-angry_khorana8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.618806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.618 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"4c176b34-2120-40a0-9adb-fc5da253eff8\"}\n"} -{"Time":"2022-12-07T09:15:35.620003+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.620008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.620074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.619 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.620081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.620 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.620201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.620 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.620207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.620 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.620342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.620 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.620517+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.620544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.620552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.620 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"493.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"948e3852-795f-4b27-a2ef-3c2e3d48ef6d\"}\n"} -{"Time":"2022-12-07T09:15:35.629934+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.629947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.629949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.629 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e6cbc0f-1b59-4a7e-beef-10505d684057\"}\n"} -{"Time":"2022-12-07T09:15:35.63006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.630069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.630072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.629 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.630075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.630 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.630078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.630 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.630081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.630 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.630144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.633245+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.633252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.633255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.633 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"38973513-66b8-405d-931e-c436e8f2fdb3\"}\n"} -{"Time":"2022-12-07T09:15:35.635977+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:35.635984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:35.635986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspacebuilds/a405f8b5-f302-49c4-8e11-96ba1fed7492\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf255a72-4173-4db8-b395-948cca98f194\"}\n"} -{"Time":"2022-12-07T09:15:35.638046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.333µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"c202b0f3-5280-48e1-a5e9-7a30bc0e1939\"}\n"} -{"Time":"2022-12-07T09:15:35.63819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.638 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"80c3c27f-be16-4e28-8566-d23fe51d0b20\"}\n"} -{"Time":"2022-12-07T09:15:35.638738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.638 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/users/me/workspace/strange-bell3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6ec8bbcf-08b9-4014-8ef8-d9ad314f7602\"}\n"} -{"Time":"2022-12-07T09:15:35.639263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:35.639 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspaceagents/c8964c20-a766-4e53-84d9-e29118746bd0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9df2dce3-638a-4894-aa7c-be37545a2c78\"}\n"} -{"Time":"2022-12-07T09:15:35.645745+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.645753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.645755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.645 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bb4f5f3a-0bfc-4ba6-8a80-1fd891317af3\"}\n"} -{"Time":"2022-12-07T09:15:35.655835+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.655848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.65585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.655 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1afdf3bb-ca96-49ff-8455-e5e385573019\"}\n"} -{"Time":"2022-12-07T09:15:35.659128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.659138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.65914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.658 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"66c7bdb0-eb38-465b-9fa7-12d80a2fbe58\"}\n"} -{"Time":"2022-12-07T09:15:35.66194+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.661945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.661947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.661 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.661949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.661 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.661951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.661 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.661953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.661 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.661954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.661 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.67044+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.670464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.670471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.670 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"016bbad7-5335-4b38-afa7-a611d33bd0a5\"}\n"} -{"Time":"2022-12-07T09:15:35.670999+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.671012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.671015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.670 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.671017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.670 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:35.67102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.670 [DEBUG]\t(provisionerd-charming_wozniak7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.671022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.670 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8528f44e-524f-41f2-b905-b3a065d7709a\"}\n"} -{"Time":"2022-12-07T09:15:35.680883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.680893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.680895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} -{"Time":"2022-12-07T09:15:35.680898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} -{"Time":"2022-12-07T09:15:35.680901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:35.680926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.680943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.680996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.681011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"workspace_name\": \"my-workspace\", \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:35.681024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.681039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.679 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} -{"Time":"2022-12-07T09:15:35.681258+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.68128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.681293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.681 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c458d4b-5246-428b-af24-3daba2520904\"}\n"} -{"Time":"2022-12-07T09:15:35.68138+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.681384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.681387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.681 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.681389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.681 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.681403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.681 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.681419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.681 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.681424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.681 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.683481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.683487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.683489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.683 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspacebuilds/00ec0012-62de-4c2f-894f-bf64e3ecaa19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a475b5e0-0e62-4a3d-8f99-956b1dc59866\"}\n"} -{"Time":"2022-12-07T09:15:35.686486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.686 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"21.958µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"b94baf6a-51d1-472f-94e1-f666d6d770a3\"}\n"} -{"Time":"2022-12-07T09:15:35.686956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.686 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0ae84f86-2164-4a13-aa09-68f5112990d8\"}\n"} -{"Time":"2022-12-07T09:15:35.687224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.687 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/users/me/workspace/dazzling-turing9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d5a98724-78f8-4fd7-a91b-22e0ab0ed25e\"}\n"} -{"Time":"2022-12-07T09:15:35.687719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.687 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/ef5b0161-dec3-4904-9935-88d7045740b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c15b7450-d559-4346-8836-07dea90d6c30\"}\n"} -{"Time":"2022-12-07T09:15:35.688161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ssh_test.go:92: 2022-12-07 08:15:35.688: cmd: matched \"Waiting\" = \"\\x1b[?25l\\r\\x1b[K\\r⠈⠁ Waiting\"\n"} -{"Time":"2022-12-07T09:15:35.688167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.688 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:446\u003e\t(*agent).init\tgenerating host key\n"} -{"Time":"2022-12-07T09:15:35.695609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.695617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.69562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.695 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"459.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eefa210e-849b-463f-8854-fb3b59dc5452\"}\n"} -{"Time":"2022-12-07T09:15:35.705552+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.70556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.705562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.704 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"404.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7a116ae8-e2ec-4551-8366-af313f08ece7\"}\n"} -{"Time":"2022-12-07T09:15:35.712224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.712 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.712473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.712 [DEBUG]\t(provisionerd-condescending_dirac1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.712476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.712 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"9b20227d-d9e9-44a5-b99f-dbf43d4cc35a\"}\n"} -{"Time":"2022-12-07T09:15:35.721675+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.721687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.72169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.721 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"331µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2454593e-1a56-4167-aeb5-35f21e92d843\"}\n"} -{"Time":"2022-12-07T09:15:35.730458+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.730477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.73048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.729 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} -{"Time":"2022-12-07T09:15:35.7305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.729 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.730505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.729 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.730507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.729 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} -{"Time":"2022-12-07T09:15:35.730509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.729 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} -{"Time":"2022-12-07T09:15:35.730511+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.730513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.730514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.729 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspacebuilds/69682f55-568c-4954-be9e-3f4370494b62\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"448µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cf65cc41-5818-4678-a235-bea95af56510\"}\n"} -{"Time":"2022-12-07T09:15:35.730531+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.730532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.730534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:35.730536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.730538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.73054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ssh_test.go:105: 2022-12-07 08:15:35.730: cmd: stdin: \"exit\\r\"\n"} -{"Time":"2022-12-07T09:15:35.730541+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.730542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.730544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:35.730546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"request_id\": \"ceecb5c8-0e76-4492-bb11-b7755a6a8294\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:35.730547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.730 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} -{"Time":"2022-12-07T09:15:35.730549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\", \"request_id\": \"ceecb5c8-0e76-4492-bb11-b7755a6a8294\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:35.730553+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.730554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.730555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ptytest.go:103: 2022-12-07 08:15:35.730: cmd: stdout: \"\\x1b[?25l\\r\\x1b[K\\r⠈⠁ Waiting for connection from \\x1b[;m\\x1b[0m ...exit\"\n"} -{"Time":"2022-12-07T09:15:35.731818+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.73185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.731859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.731 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.731862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.731 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"36f6b7c8-820a-43d5-862a-e1584852940a\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:35.731865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.731 [DEBUG]\t(provisionerd-intelligent_hamilton9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.731867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.731 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"233d9aa4-c551-467e-9acf-8f5a62314d1c\"}\n"} -{"Time":"2022-12-07T09:15:35.735808+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.735818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.73583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"38.708µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"6472077d-cda2-4a71-840a-f7d1a6abf3cc\"}\n"} -{"Time":"2022-12-07T09:15:35.735834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31d6c8bf-c305-4eed-a799-a450b355f2dc\"}\n"} -{"Time":"2022-12-07T09:15:35.737356+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.737361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.737363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"67.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b3118fec-1531-40e4-9d6a-272a9f34b036\"}\n"} -{"Time":"2022-12-07T09:15:35.737658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.737 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:138\u003e\t(*agent).runLoop\trunning loop\n"} -{"Time":"2022-12-07T09:15:35.73814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.737 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"90b80d47-1d88-4869-ac22-86b31793d54d\", \"agent_id\": \"3a36b48a-7949-4a41-850d-2539afa4849c\", \"agent_version\": \"v0.0.0-devel\"}\n"} -{"Time":"2022-12-07T09:15:35.738149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.737 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"134.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90b80d47-1d88-4869-ac22-86b31793d54d\"}\n"} -{"Time":"2022-12-07T09:15:35.738224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.738 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"48484dca-c331-4441-af86-c6538dfc621e\"}\n"} -{"Time":"2022-12-07T09:15:35.738408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.738 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:177\u003e\t(*agent).run\tfetched metadata\n"} -{"Time":"2022-12-07T09:15:35.74035+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestList/Single"} -{"Time":"2022-12-07T09:15:35.740354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":"=== CONT TestList/Single\n"} -{"Time":"2022-12-07T09:15:35.740356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.740 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"6.546334ms\", \"status_code\": 200, \"latency_ms\": 6, \"request_id\": \"bdcff9e0-39d0-4bd7-a426-b02dfeec0303\"}\n"} -{"Time":"2022-12-07T09:15:35.740757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.740 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57057\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b9d380c0-8ee2-44ec-9b38-34f3c3c52d77\"}\n"} -{"Time":"2022-12-07T09:15:35.740994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" ptytest.go:103: 2022-12-07 08:15:35.740: cmd: stdout: \"WORKSPACE TEMPLATE STATUS LAST BUILT OUTDATED STARTS AT STOPS AFTER \"\n"} -{"Time":"2022-12-07T09:15:35.740997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" ptytest.go:103: 2022-12-07 08:15:35.740: cmd: stdout: \"testuser/laughing-wescoff1 eloquent-goodall9 Started 0s false 9:30AM Mon-Fri (US/Central) 8h \"\n"} -{"Time":"2022-12-07T09:15:35.741154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" list_test.go:40: 2022-12-07 08:15:35.741: cmd: matched \"laughing-wescoff1\" = \"WORKSPACE TEMPLATE STATUS LAST BUILT OUTDATED STARTS AT STOPS AFTER \\r\\ntestuser/laughing-wescoff1\"\n"} -{"Time":"2022-12-07T09:15:35.741157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" list_test.go:41: 2022-12-07 08:15:35.741: cmd: matched \"Started\" = \" eloquent-goodall9 Started\"\n"} -{"Time":"2022-12-07T09:15:35.74116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" list_test.go:45: XYZ\n"} -{"Time":"2022-12-07T09:15:35.741162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" ptytest.go:80: 2022-12-07 08:15:35.741: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:35.741275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" t.go:81: 2022-12-07 08:15:35.741 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:35.741877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:35.741932+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:35.741936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:35.742282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:35.742293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:35.742295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.741 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:402\u003e\t(*agent).runCoordinator\tconnected to coordination server\n"} -{"Time":"2022-12-07T09:15:35.742299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:35.741 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"deab664b-c2df-48e1-bb69-5d50acea7f3c\", \"agent\": {\"id\": \"3a36b48a-7949-4a41-850d-2539afa4849c\", \"created_at\": \"2022-12-07T08:15:35.317262Z\", \"updated_at\": \"2022-12-07T08:15:35.317262Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"e6ec6ccd-0e7a-42e4-90a7-44b77d413965\", \"auth_token\": \"cdb52084-4c8d-4864-bcb3-b512f41cfb50\", \"auth_instance_id\": {\"String\": \"\", \"Valid\": false}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"directory\": \"\","} -{"Time":"2022-12-07T09:15:35.742317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} -{"Time":"2022-12-07T09:15:35.743012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList","Output":"--- FAIL: TestList (0.00s)\n"} -{"Time":"2022-12-07T09:15:35.74302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Output":" --- FAIL: TestList/Single (1.05s)\n"} -{"Time":"2022-12-07T09:15:35.746329+01:00","Action":"fail","Package":"github.com/coder/coder/cli","Test":"TestList/Single","Elapsed":1.05} -{"Time":"2022-12-07T09:15:35.746389+01:00","Action":"fail","Package":"github.com/coder/coder/cli","Test":"TestList","Elapsed":0} -{"Time":"2022-12-07T09:15:35.746401+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:35.746403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:35.746406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.745 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"104.166µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c6523619-9d98-408d-92a4-210dcb176d3b\"}\n"} -{"Time":"2022-12-07T09:15:35.746409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.745 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"62.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"280319a8-4774-4d23-b883-547890863690\"}\n"} -{"Time":"2022-12-07T09:15:35.746839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.746 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/users/me/gitsshkey\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"768.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f85f5910-472f-44f8-b565-7ea683d2055a\"}\n"} -{"Time":"2022-12-07T09:15:35.747336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.747 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bb4ff07a-bc1d-4dcc-ba23-8a0bb8127f4e\"}\n"} -{"Time":"2022-12-07T09:15:35.748639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.747 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/organizations/a90498bf-85c7-4a1c-ab53-1b3aaa15ab18/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"654.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"24d7b0fb-a71d-4d8b-a8dd-0f9c7fd570e7\"}\n"} -{"Time":"2022-12-07T09:15:35.748653+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.748655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.74866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.748 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspacebuilds/36f6b7c8-820a-43d5-862a-e1584852940a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"372.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"186119a3-a042-4fa0-aa30-b985a4ad34df\"}\n"} -{"Time":"2022-12-07T09:15:35.749308+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:35.749312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:35.749314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.749 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/organizations/a90498bf-85c7-4a1c-ab53-1b3aaa15ab18/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"107029ca-779c-497a-9fca-6eace72c1e8c\"}\n"} -{"Time":"2022-12-07T09:15:35.749317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" gitssh_test.go:145: waiting for template version job a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\n"} -{"Time":"2022-12-07T09:15:35.749851+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:35.749855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:35.749856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.749 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:446\u003e\t(*agent).init\tgenerating host key\n"} -{"Time":"2022-12-07T09:15:35.750547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.750 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.792µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"ab85a0bf-99fe-49a1-9a83-a370efe4e957\"}\n"} -{"Time":"2022-12-07T09:15:35.750553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.750 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f9abacc2-21d0-4d0f-833b-e18dd185dc4d\"}\n"} -{"Time":"2022-12-07T09:15:35.750993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.750 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/users/me/workspace/jolly-margulis0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd261a96-c63a-49d1-b515-97fb48d477e8\"}\n"} -{"Time":"2022-12-07T09:15:35.751734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:35.751 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/2e131bf7-5057-4975-a9e9-0e5094cdea2b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"260.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"32be0a29-3322-4868-a881-1fd66eb8aa20\"}\n"} -{"Time":"2022-12-07T09:15:35.775908+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:35.775936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:35.775939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.775 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"634.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06f6878d-cdff-48cc-8e3f-8b954dd1a976\"}\n"} -{"Time":"2022-12-07T09:15:35.781219+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:35.781228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:35.781231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.780 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} -{"Time":"2022-12-07T09:15:35.781247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.780 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} -{"Time":"2022-12-07T09:15:35.781249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.780 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} -{"Time":"2022-12-07T09:15:35.781251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.780 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} -{"Time":"2022-12-07T09:15:35.781253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.781 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} -{"Time":"2022-12-07T09:15:35.781255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.781 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"41ca93bb-8556-4be9-9736-559b3433a2b7\"}\n"} -{"Time":"2022-12-07T09:15:35.781257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.781 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac/dry-run/41ca93bb-8556-4be9-9736-559b3433a2b7/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"475.384417ms\", \"status_code\": 101, \"latency_ms\": 475, \"request_id\": \"ceecb5c8-0e76-4492-bb11-b7755a6a8294\"}\n"} -{"Time":"2022-12-07T09:15:35.784045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac/dry-run/41ca93bb-8556-4be9-9736-559b3433a2b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"603.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"43a0bd17-ecf2-4960-a968-15c51caff123\"}\n"} -{"Time":"2022-12-07T09:15:35.785335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.784 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/cf22e90c-d579-4ebc-9238-bd32a441f0ac/dry-run/41ca93bb-8556-4be9-9736-559b3433a2b7/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"623.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f3c83cf8-01df-41de-93a9-dbf34cf84f0b\"}\n"} -{"Time":"2022-12-07T09:15:35.785341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/organizations/304f437c-b063-4fa0-ba34-4b1bf46b4a03/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"496.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"04d373e9-a282-4d2f-b4fc-e42a38b90389\"}\n"} -{"Time":"2022-12-07T09:15:35.785793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:35.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/workspacebuilds/d178c665-892b-42b2-a34b-05cd06833711\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"270.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"def450e1-abaf-4ef1-bda5-1ee69e164daa\"}\n"} -{"Time":"2022-12-07T09:15:35.799966+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:35.799998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:35.800005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.799 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"436.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5c0087f7-9058-4c90-a63f-58cfb0c2a3e9\"}\n"} -{"Time":"2022-12-07T09:15:35.823574+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.823596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.823602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} -{"Time":"2022-12-07T09:15:35.823605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} -{"Time":"2022-12-07T09:15:35.823607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:35.823609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.823611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.823619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.823621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"workspace_name\": \"my-workspace\", \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:35.823623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.823625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.823 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} -{"Time":"2022-12-07T09:15:35.825056+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:35.825063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:35.825065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.824 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"18822767-c3e1-4119-ae46-ae74bb302812\"}\n"} -{"Time":"2022-12-07T09:15:35.844726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.843 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:35.849858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.849 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"406.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ca89d8e0-f18b-440e-91b7-64c6fc75056a\"}\n"} -{"Time":"2022-12-07T09:15:35.875685+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.875698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.875701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} -{"Time":"2022-12-07T09:15:35.875703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.875705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.875708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} -{"Time":"2022-12-07T09:15:35.875709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} -{"Time":"2022-12-07T09:15:35.875711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:35.875727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:35.875729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"request_id\": \"75999e9d-0248-4608-8403-1dcaf8f518a1\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:35.875731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"request_id\": \"75999e9d-0248-4608-8403-1dcaf8f518a1\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:35.875734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} -{"Time":"2022-12-07T09:15:35.875738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:35.87574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:35.875742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.874 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"411.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f4982a0e-b18e-4dc7-a541-b6231205dd0a\"}\n"} -{"Time":"2022-12-07T09:15:35.894408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:35.894446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:35.894513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:35.894527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHDial3930534173/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.894545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"size_bytes\": 68, \"path\": \"/tmp/TestGitSSHDial3930534173/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.894559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHDial3930534173/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:35.894576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:35.894708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.894 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:35.900872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.900 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"469.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0175ebaf-bb99-4507-af52-3f2f454f3a47\"}\n"} -{"Time":"2022-12-07T09:15:35.92538+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.925396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.925399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.924 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} -{"Time":"2022-12-07T09:15:35.925412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.924 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} -{"Time":"2022-12-07T09:15:35.925414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.924 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} -{"Time":"2022-12-07T09:15:35.925416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.925 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} -{"Time":"2022-12-07T09:15:35.925418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.925 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} -{"Time":"2022-12-07T09:15:35.92542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.925 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"23a4edec-7b50-4e15-a89f-a634b50ed31b\"}\n"} -{"Time":"2022-12-07T09:15:35.926427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.925 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd/dry-run/23a4edec-7b50-4e15-a89f-a634b50ed31b/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"603.532791ms\", \"status_code\": 101, \"latency_ms\": 603, \"request_id\": \"75999e9d-0248-4608-8403-1dcaf8f518a1\"}\n"} -{"Time":"2022-12-07T09:15:35.92882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:35.928832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:35.928835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.927 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.65325ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f2d0e691-c3b6-4554-9582-946ba9d2070c\"}\n"} -{"Time":"2022-12-07T09:15:35.928839+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.92884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.928842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd/dry-run/23a4edec-7b50-4e15-a89f-a634b50ed31b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"907.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bb40e4e9-683d-4a49-8e8d-2c8c7426add7\"}\n"} -{"Time":"2022-12-07T09:15:35.930276+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.930287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.93029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.930 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:138\u003e\t(*agent).runLoop\trunning loop\n"} -{"Time":"2022-12-07T09:15:35.930519+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.930526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.930529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.930 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/08c8a662-ad5a-446e-83c1-0db641ef54fd/dry-run/23a4edec-7b50-4e15-a89f-a634b50ed31b/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.108916ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1f2341bb-66be-40d5-b421-0fbf6fabce28\"}\n"} -{"Time":"2022-12-07T09:15:35.932652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/organizations/e17f925f-0efc-48a4-a74f-ad33fabde2b0/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"755.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e7ac99f3-4edb-49c3-9136-71407939698f\"}\n"} -{"Time":"2022-12-07T09:15:35.932658+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.93266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.932662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"143µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e346b55c-e87f-453f-b095-e46aef732976\"}\n"} -{"Time":"2022-12-07T09:15:35.932664+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:35.932665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:35.932677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:35.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/workspacebuilds/fd821e5d-4487-4b33-a927-bcb046ba5675\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"445.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f16c2f18-13e4-4ae8-b227-a633627fecca\"}\n"} -{"Time":"2022-12-07T09:15:35.932679+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:35.93268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:35.932682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.932 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"58c95cc0-456f-4a32-ac53-618379b29192\", \"agent_id\": \"ef5b0161-dec3-4904-9935-88d7045740b8\", \"agent_version\": \"v0.0.0-devel\"}\n"} -{"Time":"2022-12-07T09:15:35.932684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"187.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58c95cc0-456f-4a32-ac53-618379b29192\"}\n"} -{"Time":"2022-12-07T09:15:35.933284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"63.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"047b226d-9d6e-4a9f-bfa8-c83349924668\"}\n"} -{"Time":"2022-12-07T09:15:35.933289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.932 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:177\u003e\t(*agent).run\tfetched metadata\n"} -{"Time":"2022-12-07T09:15:35.936089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.935 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:402\u003e\t(*agent).runCoordinator\tconnected to coordination server\n"} -{"Time":"2022-12-07T09:15:35.9361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:35.935 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"10eeb44f-1472-4d31-bea7-ca6d4eaff18c\", \"agent\": {\"id\": \"ef5b0161-dec3-4904-9935-88d7045740b8\", \"created_at\": \"2022-12-07T08:15:35.67091Z\", \"updated_at\": \"2022-12-07T08:15:35.67091Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"ec09df4f-16f1-4b58-982a-06ff1d8b3018\", \"auth_token\": \"160b7a1a-3bcd-44a9-9823-02294f9c5d97\", \"auth_instance_id\": {\"String\": \"\", \"Valid\": false}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"directory\": \"\", \""} -{"Time":"2022-12-07T09:15:35.936108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} -{"Time":"2022-12-07T09:15:35.945745+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:35.945754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:35.945756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.945 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:35.94576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.945 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.94725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.946 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"14.75µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:35.950128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.949 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"501.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"98253f74-dede-460d-b2bf-a1c896bb9621\"}\n"} -{"Time":"2022-12-07T09:15:35.975341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.975 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"507.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96ca2c69-77e7-4724-b0aa-cdf7939e8e90\"}\n"} -{"Time":"2022-12-07T09:15:35.995735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:35.995753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.995816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.995828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.995831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:35.995835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:35.995858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:35.996061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.995 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:35.996067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:35.996 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:36.001791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.001 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"514.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ba7a0945-b3cb-4f34-9b00-2b36189ffac9\"}\n"} -{"Time":"2022-12-07T09:15:36.027647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.026 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"438.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8bed3665-9e68-494d-b99a-876688e59572\"}\n"} -{"Time":"2022-12-07T09:15:36.042094+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:36.042106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:36.042119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:36.040 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/3a36b48a-7949-4a41-850d-2539afa4849c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"656.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61917702-9703-474c-9ae8-f89e47c2851e\"}\n"} -{"Time":"2022-12-07T09:15:36.042122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:36.041 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/3a36b48a-7949-4a41-850d-2539afa4849c/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"309.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9bcf76ab-e702-4a43-b9e7-1885a71558cf\"}\n"} -{"Time":"2022-12-07T09:15:36.047931+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.047938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.04794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.047 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:36.047942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.047 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.047944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.047 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.047946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.047 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:36.047949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.047 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:36.048055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.047 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:36.050466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.050 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20baad82-be0f-4760-b902-21ba64361f83\"}\n"} -{"Time":"2022-12-07T09:15:36.07519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.075 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c69d7d5-7d67-4072-ace5-f7c9e238ead9\"}\n"} -{"Time":"2022-12-07T09:15:36.098248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.098 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:36.098267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.098 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:36.098284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.098 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:36.098286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.098 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"37136ad9-c28e-497a-99c1-ac3045ca8318\"}\n"} -{"Time":"2022-12-07T09:15:36.100078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/templateversions/a2f3cc29-b1ce-4bf5-84c4-dc36df394c97\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"644µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4cb1c67b-e6d1-4718-bcdf-46c4fcb5d2a1\"}\n"} -{"Time":"2022-12-07T09:15:36.100902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/organizations/a90498bf-85c7-4a1c-ab53-1b3aaa15ab18/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"633.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3e372899-ff7d-4bd9-afe9-d7c8168cc559\"}\n"} -{"Time":"2022-12-07T09:15:36.101022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" gitssh_test.go:145: waiting for workspace build job 9e06827e-ec34-4c85-810b-7c6a2f3eab0a\n"} -{"Time":"2022-12-07T09:15:36.126837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.126 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"416.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"654d1648-1105-4313-844e-36991ee06591\"}\n"} -{"Time":"2022-12-07T09:15:36.142368+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:36.142381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:36.142384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:36.141 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspaceagents/c8964c20-a766-4e53-84d9-e29118746bd0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"609.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"924b9692-e180-40fd-83ab-f8179cc4db0b\"}\n"} -{"Time":"2022-12-07T09:15:36.151619+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.15163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.151633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"81c05bbb-63be-4181-bf7d-546bd5bd3d64\"}\n"} -{"Time":"2022-12-07T09:15:36.17677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.176 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"526.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d417788c-f9f0-48ee-baf0-1297fba5a8f3\"}\n"} -{"Time":"2022-12-07T09:15:36.18055+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:36.180557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:36.18056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.180 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:138\u003e\t(*agent).runLoop\trunning loop\n"} -{"Time":"2022-12-07T09:15:36.180563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.180 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"71.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ff36b238-25e6-4c23-93b1-65ecef67799f\"}\n"} -{"Time":"2022-12-07T09:15:36.180899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.180 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"beba7b71-31a6-40a6-8997-940eef2ab729\", \"agent_id\": \"2e131bf7-5057-4975-a9e9-0e5094cdea2b\", \"agent_version\": \"v0.0.0-devel\"}\n"} -{"Time":"2022-12-07T09:15:36.181638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.180 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"127.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"beba7b71-31a6-40a6-8997-940eef2ab729\"}\n"} -{"Time":"2022-12-07T09:15:36.181644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.181 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"39.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a889e93-bec8-4c3e-b12e-e570549b0c86\"}\n"} -{"Time":"2022-12-07T09:15:36.181646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.181 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:177\u003e\t(*agent).run\tfetched metadata\n"} -{"Time":"2022-12-07T09:15:36.184334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.183 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"33467957-2d55-402d-b749-0e3f38a78dcc\", \"agent\": {\"id\": \"2e131bf7-5057-4975-a9e9-0e5094cdea2b\", \"created_at\": \"2022-12-07T08:15:35.731562Z\", \"updated_at\": \"2022-12-07T08:15:35.731562Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"9446c899-dc0d-4469-80cf-7bf7617cd257\", \"auth_token\": \"7945ca92-46da-4419-b426-28a6f717778a\", \"auth_instance_id\": {\"String\": \"\", \"Valid\": false}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"directory\": \"\","} -{"Time":"2022-12-07T09:15:36.184359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} -{"Time":"2022-12-07T09:15:36.184362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.184 [INFO]\t(agent)\t\u003cgithub.com/coder/coder/agent/agent.go:402\u003e\t(*agent).runCoordinator\tconnected to coordination server\n"} -{"Time":"2022-12-07T09:15:36.189615+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:36.189639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:36.189646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:36.189 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/ef5b0161-dec3-4904-9935-88d7045740b8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.430708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c41a8842-e12c-4398-b5a7-a90d01031020\"}\n"} -{"Time":"2022-12-07T09:15:36.190285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:36.190 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/ef5b0161-dec3-4904-9935-88d7045740b8/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ddcf63e0-0266-4eb4-92a5-21b4d2ce066f\"}\n"} -{"Time":"2022-12-07T09:15:36.203658+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.203673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.203676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.202 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"691.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3f7ed9f8-5d56-414b-8237-66a43b69ae72\"}\n"} -{"Time":"2022-12-07T09:15:36.20446+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:36.204465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:36.204468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:36.204 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaces/0c4b81a9-bef5-43f8-9b8d-03be096cd461\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"615.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a5eb89ee-d256-4242-906a-0685cc479fb7\"}\n"} -{"Time":"2022-12-07T09:15:36.223593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:36.223: cmd: stdout: \"\\x1b[?25l\\r\\x1b[K\\r⠈⠁ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠑ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢀⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\x1b[?25h\\r\\x1b[Kenv\\r\"\n"} -{"Time":"2022-12-07T09:15:36.227021+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.227028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.227031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.226 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"510.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d19c8413-c95d-4322-a228-8df62dd66b5a\"}\n"} -{"Time":"2022-12-07T09:15:36.252042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.251 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"478.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"245ef0cb-54e1-47b9-a93e-d8532ea1002e\"}\n"} -{"Time":"2022-12-07T09:15:36.252733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:36.252738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:36.252741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.252 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/2e131bf7-5057-4975-a9e9-0e5094cdea2b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"610.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"973fee75-d02c-4b46-af88-303c1bcbc60f\"}\n"} -{"Time":"2022-12-07T09:15:36.253198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.252 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/2e131bf7-5057-4975-a9e9-0e5094cdea2b/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"915772a3-eb3e-4080-a98a-9bd785780f2f\"}\n"} -{"Time":"2022-12-07T09:15:36.277974+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.277991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.277994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.277 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"511.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d5360b6-93cf-4a2a-ba09-56bc023d38f5\"}\n"} -{"Time":"2022-12-07T09:15:36.292233+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.29225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.292253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.291 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.292256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.291 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.292258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.292 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:36.29226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.292262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.293864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.293874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:36.293877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.293879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.292 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:36.298572+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:36.298588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:36.298592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:36.297 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaces/3c95a540-2091-4e8f-bb42-354ab74a2947\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"442.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e8e33eba-2b03-4943-bfda-dab853c39345\"}\n"} -{"Time":"2022-12-07T09:15:36.304297+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.304312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.304315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.303 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.501583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"15b5064a-6d06-44d3-b12f-088ac75753df\"}\n"} -{"Time":"2022-12-07T09:15:36.323498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:36.323516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:36.32352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ptytest.go:103: 2022-12-07 08:15:36.323: cmd: stdout: \"\\r\\x1b[K\\r⠈⠑ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢀⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢄⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\x1b[?25h\\r\\x1b[Kexit\\r\"\n"} -{"Time":"2022-12-07T09:15:36.327501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.327525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.32753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.326 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"533.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a4c40066-957b-4c1a-901c-a0fd363e0da1\"}\n"} -{"Time":"2022-12-07T09:15:36.343446+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.343536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.343543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.342 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.343546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.343 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.343548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.343 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.34355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.343 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.343552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.343 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:36.343554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.343 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"request_id\": \"39c54225-7df0-428b-ad05-774c9ea8c673\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:36.353439+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.353456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.353459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.352 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"498.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"81edfe9a-fad2-47b0-aeaf-6410117af9ae\"}\n"} -{"Time":"2022-12-07T09:15:36.376902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.376 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06241b67-cb6c-4108-b5c8-518877d3b026\"}\n"} -{"Time":"2022-12-07T09:15:36.394021+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.394039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.394042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.393 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.394045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.393 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.394047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.393 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:36.402044+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.402062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.402065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.401 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"433.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd5c34d2-b864-461f-9be2-73749a64c65c\"}\n"} -{"Time":"2022-12-07T09:15:36.404368+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:36.404377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:36.40438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.403 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaces/c6173536-bb73-4c6e-8ef2-243d9ff5cbe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"755.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bde294b3-5ca5-4649-9bcf-ffd036d95bba\"}\n"} -{"Time":"2022-12-07T09:15:36.427696+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.427725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.427728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.427 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"739.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"89c262d8-d4a8-4b1b-bc66-5b1e1e9ed789\"}\n"} -{"Time":"2022-12-07T09:15:36.444665+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.44473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.444735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.444738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.44474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.444752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.444754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:36.444756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:36.444834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"request_id\": \"39c54225-7df0-428b-ad05-774c9ea8c673\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:36.444839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"request_id\": \"39c54225-7df0-428b-ad05-774c9ea8c673\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:36.444983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.444 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.446504+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.446515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.446518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.445 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.446521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.446634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:36.446652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.44716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.447165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.447167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:36.447169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.447171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.446 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:36.452822+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.45285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.452856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.452 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"459.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"72407e84-fba6-4d99-9225-e1d2eb49e95d\"}\n"} -{"Time":"2022-12-07T09:15:36.456021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.454 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.456033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.454 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.456036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.454 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:36.456038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.454 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHDial3930534173/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.45604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.454 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"size_bytes\": 68, \"path\": \"/tmp/TestGitSSHDial3930534173/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.456042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.454 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHDial3930534173/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.456044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.454 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"workspace_name\": \"distracted-lumiere2\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:36.456046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.455 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.456049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.455 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:36.467085+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio"} -{"Time":"2022-12-07T09:15:36.467101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":"=== CONT TestSSH/Stdio\n"} -{"Time":"2022-12-07T09:15:36.467105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/2e131bf7-5057-4975-a9e9-0e5094cdea2b/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"109.18925ms\", \"status_code\": 101, \"latency_ms\": 109, \"request_id\": \"2f66b546-68e9-482a-8d9f-b1a89b7448f6\"}\n"} -{"Time":"2022-12-07T09:15:36.467687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.467 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"161.616125ms\", \"status_code\": 0, \"latency_ms\": 161, \"request_id\": \"03504275-e848-473a-838e-471c4e58042e\"}\n"} -{"Time":"2022-12-07T09:15:36.467938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.467 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"230.509334ms\", \"status_code\": 0, \"latency_ms\": 230, \"request_id\": \"55b26ea9-a843-4157-9fbd-0321f31422e9\"}\n"} -{"Time":"2022-12-07T09:15:36.468216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.468 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:36.468686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" t.go:81: 2022-12-07 08:15:36.468 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57077\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.52625ms\", \"status_code\": 101, \"latency_ms\": 284, \"request_id\": \"33467957-2d55-402d-b749-0e3f38a78dcc\"}\n"} -{"Time":"2022-12-07T09:15:36.470472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:36.470486+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.470488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.476624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.475 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"186.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c1fcedd6-1189-41af-a216-04e5bbd397c7\"}\n"} -{"Time":"2022-12-07T09:15:36.476641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.475 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"80.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b46211e6-0bf8-4f6b-9245-d4a8e14dcd2d\"}\n"} -{"Time":"2022-12-07T09:15:36.476984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.476 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"565.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f1928169-3a43-44ec-b829-f5e4472716a5\"}\n"} -{"Time":"2022-12-07T09:15:36.47778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.477 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/organizations/b4c5afe5-5cc5-4cd1-a5ee-24957a1d42e1/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"603.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"69aa15e2-505b-43b2-8187-623528dc4800\"}\n"} -{"Time":"2022-12-07T09:15:36.477793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" create_test.go:33: waiting for template version job fa375284-e6f6-41c8-816f-dd9287935c91\n"} -{"Time":"2022-12-07T09:15:36.479176+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.479181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.479183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.478 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"656.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"82301225-5ec2-4be0-b8c7-1a4751b6c726\"}\n"} -{"Time":"2022-12-07T09:15:36.495444+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.49555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.495554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.495557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.495562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.495564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.495565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:36.495567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:36.495784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"request_id\": \"39c54225-7df0-428b-ad05-774c9ea8c673\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:36.495812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\", \"request_id\": \"39c54225-7df0-428b-ad05-774c9ea8c673\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:36.495818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.495 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.497202+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.497217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.49722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.497 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.497224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.497 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.497228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.497 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.497263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.497 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.497394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.497 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:36.497403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.497 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"request_id\": \"6605dd15-c141-45ae-923b-36bd7bcf458d\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:36.501915+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.50193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.501933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.501 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"450.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4316410b-5aca-4c77-99df-949e48f68105\"}\n"} -{"Time":"2022-12-07T09:15:36.505675+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.505686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.505689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.505 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"940.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a697bbf6-a9b5-490c-86e9-85f537446b5f\"}\n"} -{"Time":"2022-12-07T09:15:36.505692+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.505694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.505695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.505 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.505697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.505 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.505699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.505 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.505701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.505 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.52722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.527 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"528.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0198e9f5-0d1d-4812-84ca-43e4ebb8515f\"}\n"} -{"Time":"2022-12-07T09:15:36.52978+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.529791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.529794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.529 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"464.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b19eb26c-a2b5-4a87-9c18-d181e4e51d10\"}\n"} -{"Time":"2022-12-07T09:15:36.546342+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.54636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.546363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.546 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.546366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.546 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.54637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.546 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.546472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.546 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.546476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.546 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"413f0311-f953-42e3-80b3-fd62af752664\"}\n"} -{"Time":"2022-12-07T09:15:36.546691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.546 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/workspacebuilds/fd821e5d-4487-4b33-a927-bcb046ba5675/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"612.631042ms\", \"status_code\": 101, \"latency_ms\": 612, \"request_id\": \"39c54225-7df0-428b-ad05-774c9ea8c673\"}\n"} -{"Time":"2022-12-07T09:15:36.548816+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.548827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.548832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.548 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.548885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.548 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.548889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.548 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:36.54912+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.549124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.549126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.549 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/workspacebuilds/fd821e5d-4487-4b33-a927-bcb046ba5675\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.21125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9e61481e-74a3-4fc9-92f8-57873016cc41\"}\n"} -{"Time":"2022-12-07T09:15:36.552044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/users/testuser/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8cf4c4f4-c7a5-471a-b4a4-a5fd1fdebcd0\"}\n"} -{"Time":"2022-12-07T09:15:36.552052+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.552054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.552055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"526.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44534e58-521c-46ff-be59-c818b61fc1e6\"}\n"} -{"Time":"2022-12-07T09:15:36.552058+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.552059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.55206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"126adc2c-52b4-4d17-8a41-ea2f0ba95c48\"}\n"} -{"Time":"2022-12-07T09:15:36.552816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.552 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/organizations/e17f925f-0efc-48a4-a74f-ad33fabde2b0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"646.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"253d456b-f7d2-472b-8cb0-69290f61ba70\"}\n"} -{"Time":"2022-12-07T09:15:36.552863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" update_test.go:107: waiting for template version job 3db87ca4-74b1-413e-974c-b30bec6f5470\n"} -{"Time":"2022-12-07T09:15:36.553343+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.553348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.553351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.553 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"28d2c231-b70b-4c0e-b587-138d277c96a9\"}\n"} -{"Time":"2022-12-07T09:15:36.555796+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.555805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.555813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.555 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.555913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.555 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.555946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.555 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"Token\": \"dbe5e65b-96b6-421d-9ec6-07e3727d4ba5\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:36.573433+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.573457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.57346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.573 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:36.57729+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.577299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.577301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.577 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"473.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf998eac-8f3f-4a2e-a44a-61d2432e2bef\"}\n"} -{"Time":"2022-12-07T09:15:36.578174+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.578178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.57818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.578 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"285.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"87aa0984-eeca-49b7-b217-25ed03c1f66a\"}\n"} -{"Time":"2022-12-07T09:15:36.578407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.578433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.57844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.578 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"387.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"789e8b57-2f96-41ee-8e86-45bbb04710d3\"}\n"} -{"Time":"2022-12-07T09:15:36.599052+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.59907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.599073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.598 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.599078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.59908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.5991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.599123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:36.599138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:36.599175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"request_id\": \"6605dd15-c141-45ae-923b-36bd7bcf458d\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:36.599239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"request_id\": \"6605dd15-c141-45ae-923b-36bd7bcf458d\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:36.599247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.599 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.601819+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.601824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.601826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.601 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"453.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d9e18ce8-6c74-436f-b81c-d5bc952b0b70\"}\n"} -{"Time":"2022-12-07T09:15:36.603265+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.60327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.603272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"322.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"26af1ef0-5be7-4d4d-b1bc-c40eb86a5898\"}\n"} -{"Time":"2022-12-07T09:15:36.603642+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.603646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.603648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"331.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9e6b1184-81d3-4ea6-ac8d-0075955ecbfa\"}\n"} -{"Time":"2022-12-07T09:15:36.606212+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.606216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.606218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.606 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.606289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.606 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.606345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.606 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.606416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.606 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.606491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.624372+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.624388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.624391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.624394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.624397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:36.6244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreate467283361/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.624411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"size_bytes\": 41, \"path\": \"/tmp/TestCreateCreate467283361/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.624415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"size_bytes\": 41, \"path\": \"/tmp/TestCreateCreate467283361/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.624511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.624526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.624 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:36.627411+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.627421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.627424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.627 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aca12252-d6c2-4bad-a378-12e0649fb853\"}\n"} -{"Time":"2022-12-07T09:15:36.628503+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.628514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.628517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.628 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ac251893-d972-41f6-8711-0a46205994ed\"}\n"} -{"Time":"2022-12-07T09:15:36.629356+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.629363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.629365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.629 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"576.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f11e6ae7-0ea2-4476-a8c7-9657631845a1\"}\n"} -{"Time":"2022-12-07T09:15:36.642613+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout"} -{"Time":"2022-12-07T09:15:36.642631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":"=== CONT TestSSH/ShowTroubleshootingURLAfterTimeout\n"} -{"Time":"2022-12-07T09:15:36.642634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:36.642 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57098\", \"path\": \"/api/v2/workspaceagents/c8964c20-a766-4e53-84d9-e29118746bd0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"575.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"476d3818-4ec7-4959-9ffb-a7275c4c183f\"}\n"} -{"Time":"2022-12-07T09:15:36.642807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ptytest.go:103: 2022-12-07 08:15:36.642: cmd: stdout: \"\\x1b[?25l\\r\\x1b[K\\r⠈⠁ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠑ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢀⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢄⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢄⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢆⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢎⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢎⡰ Waiting for connection from \\x1b[;m\\x1b[0m ...\\x1b[?25h\\r\\x1b[K\\x1b[2K \"\n"} -{"Time":"2022-12-07T09:15:36.642814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ptytest.go:103: 2022-12-07 08:15:36.642: cmd: stdout: \" \u003e The workspace agent is having trouble connecting. See \"\n"} -{"Time":"2022-12-07T09:15:36.642816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ptytest.go:103: 2022-12-07 08:15:36.642: cmd: stdout: \" troubleshooting instructions at: \"\n"} -{"Time":"2022-12-07T09:15:36.642818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ptytest.go:103: 2022-12-07 08:15:36.642: cmd: stdout: \" https://example.com/troubleshoot \"\n"} -{"Time":"2022-12-07T09:15:36.64282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ptytest.go:103: 2022-12-07 08:15:36.642: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:36.646515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ssh_test.go:133: 2022-12-07 08:15:36.646: cmd: matched \"https://example.com/troubleshoot\" = \"\\x1b[?25l\\r\\x1b[K\\r⠈⠁ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠑ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢀⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢄⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢄⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢆⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢎⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢎⡰ Waiting for connection from \\x1b[;m\\x1b[0m ...\\x1b[?25h\\r\\x1b[K\\x1b[2K \\r\\n \u003e The workspace agent is having trouble connecting. See \\r\\n troubleshooting instructions at: \\r\\n https://example.com/troubleshoot\"\n"} -{"Time":"2022-12-07T09:15:36.647012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ptytest.go:80: 2022-12-07 08:15:36.646: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:36.647026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" ptytest.go:103: 2022-12-07 08:15:36.646: cmd: stdout: \"\\x1b[?25l\\r\\x1b[K\\r⢎⡠ Waiting for connection from \\x1b[;m\\x1b[0m ...\"\n"} -{"Time":"2022-12-07T09:15:36.647031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" t.go:81: 2022-12-07 08:15:36.646 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:36.64879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:36.648821+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h"} -{"Time":"2022-12-07T09:15:36.648823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h","Output":"=== CONT TestDurationDisplay/25h\n"} -{"Time":"2022-12-07T09:15:36.648826+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s"} -{"Time":"2022-12-07T09:15:36.648827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s","Output":"=== CONT TestDurationDisplay/24h1m1s\n"} -{"Time":"2022-12-07T09:15:36.648829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h"} -{"Time":"2022-12-07T09:15:36.64883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h","Output":"=== CONT TestDurationDisplay/24h\n"} -{"Time":"2022-12-07T09:15:36.648831+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h"} -{"Time":"2022-12-07T09:15:36.648832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h","Output":"=== CONT TestDurationDisplay/23h\n"} -{"Time":"2022-12-07T09:15:36.648834+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h"} -{"Time":"2022-12-07T09:15:36.648835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h","Output":"=== CONT TestDurationDisplay/2h\n"} -{"Time":"2022-12-07T09:15:36.648836+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s"} -{"Time":"2022-12-07T09:15:36.648837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s","Output":"=== CONT TestDurationDisplay/1h1m1s\n"} -{"Time":"2022-12-07T09:15:36.648838+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h"} -{"Time":"2022-12-07T09:15:36.64884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h","Output":"=== CONT TestDurationDisplay/1h\n"} -{"Time":"2022-12-07T09:15:36.648842+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m"} -{"Time":"2022-12-07T09:15:36.648843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m","Output":"=== CONT TestDurationDisplay/59m\n"} -{"Time":"2022-12-07T09:15:36.648844+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m"} -{"Time":"2022-12-07T09:15:36.648846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m","Output":"=== CONT TestDurationDisplay/2m\n"} -{"Time":"2022-12-07T09:15:36.648847+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s"} -{"Time":"2022-12-07T09:15:36.648851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s","Output":"=== CONT TestDurationDisplay/1m1s\n"} -{"Time":"2022-12-07T09:15:36.648854+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m"} -{"Time":"2022-12-07T09:15:36.648856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m","Output":"=== CONT TestDurationDisplay/1m\n"} -{"Time":"2022-12-07T09:15:36.648857+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s"} -{"Time":"2022-12-07T09:15:36.648858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s","Output":"=== CONT TestDurationDisplay/59s\n"} -{"Time":"2022-12-07T09:15:36.648859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s"} -{"Time":"2022-12-07T09:15:36.64886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s","Output":"=== CONT TestDurationDisplay/1s\n"} -{"Time":"2022-12-07T09:15:36.648862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s"} -{"Time":"2022-12-07T09:15:36.648863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s","Output":"=== CONT TestDurationDisplay/0s\n"} -{"Time":"2022-12-07T09:15:36.648866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay","Output":"--- PASS: TestDurationDisplay (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s","Output":" --- PASS: TestDurationDisplay/-1s (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648869+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/-1s","Elapsed":0} -{"Time":"2022-12-07T09:15:36.648871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h","Output":" --- PASS: TestDurationDisplay/25h (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648873+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/25h","Elapsed":0} -{"Time":"2022-12-07T09:15:36.648874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s","Output":" --- PASS: TestDurationDisplay/24h1m1s (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648875+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h1m1s","Elapsed":0} -{"Time":"2022-12-07T09:15:36.648877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h","Output":" --- PASS: TestDurationDisplay/24h (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648879+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/24h","Elapsed":0} -{"Time":"2022-12-07T09:15:36.64888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h","Output":" --- PASS: TestDurationDisplay/23h (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648882+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/23h","Elapsed":0} -{"Time":"2022-12-07T09:15:36.648883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h","Output":" --- PASS: TestDurationDisplay/2h (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648884+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2h","Elapsed":0} -{"Time":"2022-12-07T09:15:36.648885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s","Output":" --- PASS: TestDurationDisplay/1h1m1s (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648887+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h1m1s","Elapsed":0} -{"Time":"2022-12-07T09:15:36.648888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h","Output":" --- PASS: TestDurationDisplay/1h (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648889+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1h","Elapsed":0} -{"Time":"2022-12-07T09:15:36.64889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m","Output":" --- PASS: TestDurationDisplay/59m (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648892+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59m","Elapsed":0} -{"Time":"2022-12-07T09:15:36.648893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m","Output":" --- PASS: TestDurationDisplay/2m (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648894+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/2m","Elapsed":0} -{"Time":"2022-12-07T09:15:36.648895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s","Output":" --- PASS: TestDurationDisplay/1m1s (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648897+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m1s","Elapsed":0} -{"Time":"2022-12-07T09:15:36.648898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m","Output":" --- PASS: TestDurationDisplay/1m (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.6489+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1m","Elapsed":0} -{"Time":"2022-12-07T09:15:36.648901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s","Output":" --- PASS: TestDurationDisplay/59s (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648902+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/59s","Elapsed":0} -{"Time":"2022-12-07T09:15:36.648903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s","Output":" --- PASS: TestDurationDisplay/1s (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648905+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/1s","Elapsed":0} -{"Time":"2022-12-07T09:15:36.648906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s","Output":" --- PASS: TestDurationDisplay/0s (0.00s)\n"} -{"Time":"2022-12-07T09:15:36.648907+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay/0s","Elapsed":0} -{"Time":"2022-12-07T09:15:36.648908+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDurationDisplay","Elapsed":0} -{"Time":"2022-12-07T09:15:36.648909+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.64891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.649418+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.649423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.649435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.649439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.649488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.649491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.649599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:36.649604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:36.649606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"request_id\": \"6605dd15-c141-45ae-923b-36bd7bcf458d\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:36.649751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.649755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.649 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\", \"request_id\": \"6605dd15-c141-45ae-923b-36bd7bcf458d\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:36.6528+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.652809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.652812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.652 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"138.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"728086a8-acbc-47aa-91d4-c80ee5c2c9b8\"}\n"} -{"Time":"2022-12-07T09:15:36.652904+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.652929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.652935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.652 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"475.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6bc84c57-aa1d-4a18-8b75-4dfa3dc29098\"}\n"} -{"Time":"2022-12-07T09:15:36.653187+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.653197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.653199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.653 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"42.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f7b481c5-d9e4-47f4-b751-01c51ba40f50\"}\n"} -{"Time":"2022-12-07T09:15:36.655277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"948.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3556be59-b2c6-4da7-8de7-06de04b13195\"}\n"} -{"Time":"2022-12-07T09:15:36.655979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.655 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/organizations/2e444afc-6afa-43c4-83c9-271888596e86/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.461083ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"ebdafed1-58bd-4425-a2dd-f50fc713941c\"}\n"} -{"Time":"2022-12-07T09:15:36.655994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" delete_test.go:24: waiting for template version job 05af0653-d3eb-4679-b856-1f8d4069da40\n"} -{"Time":"2022-12-07T09:15:36.656938+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.656943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.656947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.656 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c336d22-e6c0-4928-be38-83a4b2ea9fc5\"}\n"} -{"Time":"2022-12-07T09:15:36.656953+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.656955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.656956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.656 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.656959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.656 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.656961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.656 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.656963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.656 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.656974+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.656975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.656977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.656 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"481.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"65c454ed-f1b2-488e-91fe-39ef687e5bc0\"}\n"} -{"Time":"2022-12-07T09:15:36.657059+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.657062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.657064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.656 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.672401+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.672441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.672446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.672 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"12.375µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:36.675172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.674 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.675181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.675 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:36.676894+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.676904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.676907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.676 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"504.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e1775478-405b-4a19-8a78-75dcbad38800\"}\n"} -{"Time":"2022-12-07T09:15:36.678701+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.678708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.678711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.678 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06e27de0-c6c7-4448-b6e4-3a737794256d\"}\n"} -{"Time":"2022-12-07T09:15:36.67966+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.679665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.679667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.679 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"807.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"695b79a7-b049-47ac-9e93-bae05a0cb4f3\"}\n"} -{"Time":"2022-12-07T09:15:36.68273+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.682739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.682741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.682 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"316.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ea2d8d31-7100-461d-814a-95c804d64a3c\"}\n"} -{"Time":"2022-12-07T09:15:36.702979+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.702997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.702 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.703003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.702 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.703005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.703007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.703009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.702 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"c8cd27d8-7eb5-4f83-8164-851f90f4934d\"}\n"} -{"Time":"2022-12-07T09:15:36.703011+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.703012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.703014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.059875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"38f12882-84cb-4747-a47b-913fe140d9b7\"}\n"} -{"Time":"2022-12-07T09:15:36.703016+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.703018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.703019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/workspacebuilds/d178c665-892b-42b2-a34b-05cd06833711/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"915.911667ms\", \"status_code\": 101, \"latency_ms\": 915, \"request_id\": \"6605dd15-c141-45ae-923b-36bd7bcf458d\"}\n"} -{"Time":"2022-12-07T09:15:36.703886+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.703895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.703898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.703 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"517.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d54ff39b-5d87-4290-8816-172c406113fb\"}\n"} -{"Time":"2022-12-07T09:15:36.703902+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.703903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.703905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.703 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"300.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0f57952b-6b9e-4a2d-9b63-983f90d0b381\"}\n"} -{"Time":"2022-12-07T09:15:36.704461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.704466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.704468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.704 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/workspacebuilds/d178c665-892b-42b2-a34b-05cd06833711\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"418.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6aad27c6-3e1a-4847-9c20-f1dedd03504e\"}\n"} -{"Time":"2022-12-07T09:15:36.705462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/users/testuser/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"904.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4ccd8b14-a55b-42cb-bd1b-060f494715e1\"}\n"} -{"Time":"2022-12-07T09:15:36.706185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"371.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f99538f2-725f-4467-a557-fdda685b55ec\"}\n"} -{"Time":"2022-12-07T09:15:36.706658+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.706685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.706692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd7b9063-4f31-490c-9a40-ffd505f4b3a1\"}\n"} -{"Time":"2022-12-07T09:15:36.706937+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.706943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.706945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/organizations/304f437c-b063-4fa0-ba34-4b1bf46b4a03/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"555.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e8777708-87ad-4e6d-a698-86d6b36028e1\"}\n"} -{"Time":"2022-12-07T09:15:36.707092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" update_test.go:59: waiting for template version job 96079034-c2e2-4262-aace-baab39c9712b\n"} -{"Time":"2022-12-07T09:15:36.707181+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.707184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.707185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.707 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.707273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.707 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:36.707351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.707 [DEBUG]\t(provisionerd-practical_poincare1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.707431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.707 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"27333a12-2911-4bd8-8710-f56d8836a677\"}\n"} -{"Time":"2022-12-07T09:15:36.725587+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.725603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.725606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.725609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.725611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.725613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.725615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.725617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.725619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.725621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:36.725624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.725 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.726675+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.726687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.72669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.726 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspacebuilds/9e06827e-ec34-4c85-810b-7c6a2f3eab0a\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"385.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c7668d5-11f8-4683-ad82-96e5a29e9b9e\"}\n"} -{"Time":"2022-12-07T09:15:36.7286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" gitssh_test.go:145: waiting for workspace agents (workspace deb079dc-38f6-49cc-9c16-8193a9785feb)\n"} -{"Time":"2022-12-07T09:15:36.728736+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.728742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.728744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.728 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"629.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5549b2e8-13f6-4ba0-9d61-102790dd90ee\"}\n"} -{"Time":"2022-12-07T09:15:36.729057+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.729079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.729082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.728 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2a10aaf3-7c26-429f-8904-8c28cde4ad6c\"}\n"} -{"Time":"2022-12-07T09:15:36.732015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.732023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.732025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.731 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aa86d625-0e34-4025-baee-f9fc78391f40\"}\n"} -{"Time":"2022-12-07T09:15:36.734102+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.734109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.734112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"772.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e1ae0fe-8e40-482c-97f2-fa5880a331c0\"}\n"} -{"Time":"2022-12-07T09:15:36.752099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.75212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.752124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.752 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:36.759144+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.759158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.759162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.334208ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"b8a839db-194a-4a1b-9167-429fbd17df6b\"}\n"} -{"Time":"2022-12-07T09:15:36.759165+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.759167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.759169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"333.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"afbadf43-21db-469a-b196-7fa9d965e231\"}\n"} -{"Time":"2022-12-07T09:15:36.759171+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.759173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.759174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:36.761115+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.761123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.761125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a870b8ae-dc92-43b5-916b-051535519d50\"}\n"} -{"Time":"2022-12-07T09:15:36.761128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.761129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.761131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.042666ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9b3ea02b-fc99-4b71-a65a-83dea127f392\"}\n"} -{"Time":"2022-12-07T09:15:36.764068+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.764087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.764091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.763 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.22025ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"7adaf46a-c0f7-423b-b94e-1b48d315b1ec\"}\n"} -{"Time":"2022-12-07T09:15:36.776009+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.776035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.776047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.775 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.77605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.775 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.776052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.775 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.776054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.775 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.776056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.775 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.776067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.775 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.779065+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.779074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.779077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.778 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"509.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5d43579-1e9a-49f6-9948-fbcad2ae8945\"}\n"} -{"Time":"2022-12-07T09:15:36.779471+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.779477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.779481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.779 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"355.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6696e22f-0051-4e56-841c-296c662f4eb7\"}\n"} -{"Time":"2022-12-07T09:15:36.779485+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.779486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.779488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.779 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"301.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6cb630e9-f572-462e-bf53-9d905bd8e34a\"}\n"} -{"Time":"2022-12-07T09:15:36.779491+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.779492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.779545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:36.78197+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.781982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.781984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.781 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"433.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2112ee42-9f51-4d7a-acc7-645f7831fda9\"}\n"} -{"Time":"2022-12-07T09:15:36.784781+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.78479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.784793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.784 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"422.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61f005bd-c110-4d87-9415-ce66b56a0a90\"}\n"} -{"Time":"2022-12-07T09:15:36.805515+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.805549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.805556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d5017d5f-aa13-4f43-9cec-619b881e7a94\"}\n"} -{"Time":"2022-12-07T09:15:36.805564+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.805567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.805571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.804 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:36.805577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.804 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:36.805582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.804 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:36.805587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.805 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.805593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.805 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.805599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.805 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:36.805604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.805 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:36.805609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.805 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:36.805618+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.805621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.805625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.805 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"69d24eb5-84bb-4335-a410-968c1d3f0be2\"}\n"} -{"Time":"2022-12-07T09:15:36.806016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:36.806024+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.806027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.806031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.805 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"901.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4728065b-9323-46c4-a6b2-db2f90fe6529\"}\n"} -{"Time":"2022-12-07T09:15:36.806615+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.806626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.806629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.806 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0afdfd62-433c-496a-a50e-cbf990b3b5d5\"}\n"} -{"Time":"2022-12-07T09:15:36.808306+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.808314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.808318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.808 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dedb1fc4-91c4-468a-976c-db45845b345a\"}\n"} -{"Time":"2022-12-07T09:15:36.826887+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.826902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.826905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.826 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.826907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.826 [INFO]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:36.82691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.826 [INFO]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\", \"resource_name\": \"main\", \"resource_type\": \"compute\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:36.826912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.826 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.826914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.826 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.826915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.826 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"ca6ca340-a0ab-49a6-93aa-364e9ed2b0dc\"}\n"} -{"Time":"2022-12-07T09:15:36.830967+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.830979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.830982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"30b97a01-5195-48b8-a764-d1a1026e6760\"}\n"} -{"Time":"2022-12-07T09:15:36.830985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.830987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.830988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"282.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"88d2530c-083f-4a5d-93da-b0623fdda23d\"}\n"} -{"Time":"2022-12-07T09:15:36.83141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/organizations/b4c5afe5-5cc5-4cd1-a5ee-24957a1d42e1/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"712.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a28105e0-d20a-4a3c-9ed9-601ce94867d0\"}\n"} -{"Time":"2022-12-07T09:15:36.83175+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.831756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.831758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"abdfd75b-2c84-4101-9f12-3c73691f13f4\"}\n"} -{"Time":"2022-12-07T09:15:36.831761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.831762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.831764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"00fc525d-70cc-4b74-815a-816a5db85f47\"}\n"} -{"Time":"2022-12-07T09:15:36.831766+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.831767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.831769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:36.834965+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.834976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.834978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.25µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"34b7613f-8c78-498d-9586-f15843b4c241\"}\n"} -{"Time":"2022-12-07T09:15:36.834981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"35.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6e164e72-2faa-4dee-b96f-bd1dfc7f0c34\"}\n"} -{"Time":"2022-12-07T09:15:36.835516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.835 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"87e06ab2-a1d7-49c1-8d7a-297d97d18b71\"}\n"} -{"Time":"2022-12-07T09:15:36.835524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.835529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.835533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.835 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53083a1f-85dd-4603-b49c-87e695814bd7\"}\n"} -{"Time":"2022-12-07T09:15:36.835645+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:36.835656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:36.835659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.835 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"52ea206a-c8d9-4368-9243-c3e89d33805c\"}\n"} -{"Time":"2022-12-07T09:15:36.836144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/organizations/b4c5afe5-5cc5-4cd1-a5ee-24957a1d42e1/templates/youthful-roentgen7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"304.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7aca276b-86ec-4148-944b-8df559d339ca\"}\n"} -{"Time":"2022-12-07T09:15:36.836998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"255.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"402db4bb-4cc4-4f6f-8ebb-076c2763224d\"}\n"} -{"Time":"2022-12-07T09:15:36.838204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.837 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"91056658-0d05-4f1f-ae6a-167ad336187c\"}\n"} -{"Time":"2022-12-07T09:15:36.838213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.837 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.416µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9eab2d7c-3003-413c-8292-169c2925bb4f\"}\n"} -{"Time":"2022-12-07T09:15:36.838488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:36.838: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:36.838494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:36.838: cmd: stdout: \"Planning workspace...\"\n"} -{"Time":"2022-12-07T09:15:36.838643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:36.838: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:36.839132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:36.839 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91/dry-run/30c0e230-f593-4723-bc76-02c9ff3f112c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"475.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3a3f9aba-564f-4113-ad6a-2a9a3e8e2c65\"}\n"} -{"Time":"2022-12-07T09:15:36.850636+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.850654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.850657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.850 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"9.959µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:36.854796+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.854809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.854812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.853 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"70e03813-41c7-4514-84c5-33be199280f2\"}\n"} -{"Time":"2022-12-07T09:15:36.854816+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.854818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.854819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.854 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2a2163e2-2fa5-4dcd-bed2-82ca3fa9eee6\"}\n"} -{"Time":"2022-12-07T09:15:36.854822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:36.855973+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.855998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.856004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.855 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:36.856031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.855 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:36.856619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.856 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"255c6ca0-3417-43bf-b610-e5518f4ae463\"}\n"} -{"Time":"2022-12-07T09:15:36.859778+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.859786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.859789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.859 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8cf61a7e-36bb-4e3d-9166-2ee883c689bd\"}\n"} -{"Time":"2022-12-07T09:15:36.879486+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.879505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.879509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.879 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"895.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7869c545-4594-4ee7-b5a1-23a3b24c3f01\"}\n"} -{"Time":"2022-12-07T09:15:36.879531+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.879533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.879535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.879 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ddad9a3-8314-40ce-bca3-ed762869c0fd\"}\n"} -{"Time":"2022-12-07T09:15:36.879612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:36.88205+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.882057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.8821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.881 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"288.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"85342d51-18ae-4c07-b6e0-8c372eaea20b\"}\n"} -{"Time":"2022-12-07T09:15:36.883054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.883063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.883066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.882 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"616.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7685c048-7420-4932-9c5a-c9652eb9908e\"}\n"} -{"Time":"2022-12-07T09:15:36.903524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.903542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.903545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.903 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"359.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"167d7a8c-9a23-4bba-86e7-ffea6f194805\"}\n"} -{"Time":"2022-12-07T09:15:36.905143+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.905167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.905182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9b263500-84fd-47b1-ab6d-131778c86142\"}\n"} -{"Time":"2022-12-07T09:15:36.905341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:36.905894+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.905902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.905905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:36.905907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.905909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.905912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.905917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.905923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:36.905998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.905 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:36.906083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.906 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:36.906108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.906 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:36.90815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.908157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.908173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.908 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"798.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"759bbc40-49bf-47e7-bc93-b26ced0eee32\"}\n"} -{"Time":"2022-12-07T09:15:36.908264+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.908268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.90827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.908 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"935.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"785fd55c-5173-47f1-a7fc-17b40a98e185\"}\n"} -{"Time":"2022-12-07T09:15:36.928809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.928827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.928831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e22e354e-3ae0-4611-ad0e-aabfd518f759\"}\n"} -{"Time":"2022-12-07T09:15:36.931912+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.931939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.931945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1b105b6-3ac9-45fc-8990-2138ed037a86\"}\n"} -{"Time":"2022-12-07T09:15:36.932462+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.932475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.932478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6c3dd1a2-9649-4b99-b5b7-f088ff286603\"}\n"} -{"Time":"2022-12-07T09:15:36.932604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:36.932815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.932819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.932821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d4652d7d-f6f1-4e37-b5c9-6b4288c06f40\"}\n"} -{"Time":"2022-12-07T09:15:36.953541+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.953557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.953561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.953 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"381.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da5748b6-193c-4664-86c1-a7d6725dc633\"}\n"} -{"Time":"2022-12-07T09:15:36.954375+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.954381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.954383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.954 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"330µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d4b6369-d47c-428f-b98f-227b40654e4c\"}\n"} -{"Time":"2022-12-07T09:15:36.954386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:36.956536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.95655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.956553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.956 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:36.956556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.956 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.956558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.956 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:36.95656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.956 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:36.956562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.956 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:36.956564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.956 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:36.957355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.957 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e69100f6-43d8-4be7-a7e0-3251d9cf4a2a\"}\n"} -{"Time":"2022-12-07T09:15:36.957708+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.957721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.957725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.957 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"316.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"68c4ac96-3b5f-444f-85ca-e9e6b8fe32cd\"}\n"} -{"Time":"2022-12-07T09:15:36.979624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:36.979642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.979655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.979 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.121291ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9705a947-b907-4038-a962-18cda491edb0\"}\n"} -{"Time":"2022-12-07T09:15:36.982191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:36.982214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:36.982254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:36.981 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"661.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c026317-9528-418a-aee1-443e1e882828\"}\n"} -{"Time":"2022-12-07T09:15:36.98262+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:36.982625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:36.982658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:36.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.967542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3200ea35-0ced-4d94-9d66-c3a1431b5e87\"}\n"} -{"Time":"2022-12-07T09:15:36.982982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:36.983321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:36.983326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:36.983331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:36.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"889.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"22ea186b-68e1-4d3c-8244-d093ad4bd9a0\"}\n"} -{"Time":"2022-12-07T09:15:37.005366+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.005384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.005387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.004 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.026959ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bb290d62-b714-4211-93ed-e37acd02b4d9\"}\n"} -{"Time":"2022-12-07T09:15:37.00567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:37.005693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:37.005696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.005 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"492.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"27f7c04c-a1a2-4908-8654-9d481823299e\"}\n"} -{"Time":"2022-12-07T09:15:37.005699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:37.007043+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.007054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.007056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.006 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:37.007058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.006 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:37.00706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.006 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:37.007074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.006 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"e247206a-fae3-44bf-9eba-ac1fa7b83059\"}\n"} -{"Time":"2022-12-07T09:15:37.008251+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.008263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.008266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.007 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a8a1f71-4741-46e8-9119-2101c1591884\"}\n"} -{"Time":"2022-12-07T09:15:37.009399+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.009404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.009412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/templateversions/05af0653-d3eb-4679-b856-1f8d4069da40\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b835708-7fb4-455e-bd40-4f0bcf9201f2\"}\n"} -{"Time":"2022-12-07T09:15:37.010564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/organizations/2e444afc-6afa-43c4-83c9-271888596e86/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"957.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"312aee05-846b-457a-9c42-f04029e1740b\"}\n"} -{"Time":"2022-12-07T09:15:37.011399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.011 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/organizations/2e444afc-6afa-43c4-83c9-271888596e86/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"584.084µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"de1859e2-1e2f-4c71-8faa-8c9e82020f81\"}\n"} -{"Time":"2022-12-07T09:15:37.011682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" delete_test.go:27: waiting for workspace build job 50f67471-e5a9-4bde-ae1f-894c81677c78\n"} -{"Time":"2022-12-07T09:15:37.029461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.029477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.02948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.028 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b9cfde4-5125-4200-9a33-b7a345126412\"}\n"} -{"Time":"2022-12-07T09:15:37.029484+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:37.029486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:37.029487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90b4c656-c06c-4bea-9423-0e572c6abf3d\"}\n"} -{"Time":"2022-12-07T09:15:37.02949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:37.033357+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.033368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.033371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"323.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"94c34247-eff2-4de2-a7c3-8a8b6d9664ce\"}\n"} -{"Time":"2022-12-07T09:15:37.035731+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:37.035742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:37.035745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.035 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"9eaa3669-6ac2-4900-b8ca-91278740ec0e\", \"agent_id\": \"4e281d6c-f3d6-46b9-8c34-fd3dc248f959\", \"agent_version\": \"v0.0.0-devel\"}\n"} -{"Time":"2022-12-07T09:15:37.035747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"95.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9eaa3669-6ac2-4900-b8ca-91278740ec0e\"}\n"} -{"Time":"2022-12-07T09:15:37.036416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"58.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e7a839bf-4830-434a-83f8-a5fa2847221a\"}\n"} -{"Time":"2022-12-07T09:15:37.036812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"60.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ffc1ad66-b1f4-4fa6-9cac-219f04bc40df\"}\n"} -{"Time":"2022-12-07T09:15:37.03738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.037386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.037388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.037 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"350.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8774911c-6df6-49d8-9cfc-f80272f55305\"}\n"} -{"Time":"2022-12-07T09:15:37.039117+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:37.039128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:37.039131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.038 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"c61cb385-8fc1-4937-aa48-a26f2b12d426\", \"agent\": {\"id\": \"4e281d6c-f3d6-46b9-8c34-fd3dc248f959\", \"created_at\": \"2022-12-07T08:15:36.707201Z\", \"updated_at\": \"2022-12-07T08:15:36.707201Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"054d5a91-c0b8-4a49-8397-08bd3d88648b\", \"auth_token\": \"dbe5e65b-96b6-421d-9ec6-07e3727d4ba5\", \"auth_instance_id\": {\"String\": \"\", \"Valid\": false}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"directory\": \"\","} -{"Time":"2022-12-07T09:15:37.039136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} -{"Time":"2022-12-07T09:15:37.053275+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:37.053292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:37.053295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} -{"Time":"2022-12-07T09:15:37.053449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} -{"Time":"2022-12-07T09:15:37.053678+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.053691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.053694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.053 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ccec5959-33d2-4880-899f-d3fdf24cf32b\"}\n"} -{"Time":"2022-12-07T09:15:37.053698+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:37.0537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:37.053701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:37.053704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreate467283361/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.053706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"size_bytes\": 41, \"path\": \"/tmp/TestCreateCreate467283361/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.05371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"size_bytes\": 41, \"path\": \"/tmp/TestCreateCreate467283361/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.053712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"workspace_name\": \"my-workspace\", \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:37.053888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.053895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.053 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} -{"Time":"2022-12-07T09:15:37.054058+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:37.054062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:37.054064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.054 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaces/deb079dc-38f6-49cc-9c16-8193a9785feb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e00b0cec-63ad-479a-9aef-699c6a489500\"}\n"} -{"Time":"2022-12-07T09:15:37.066998+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.067017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.06702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.066 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"849µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0b78158f-f66d-40eb-a1c9-590b8eae8e3d\"}\n"} -{"Time":"2022-12-07T09:15:37.067023+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.067025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.067027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.066 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"727.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"03c7eaeb-1459-4811-bda4-65cdc986899b\"}\n"} -{"Time":"2022-12-07T09:15:37.073117+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:37.073129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:37.073133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.072 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaceagents/me/gitsshkey\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"207µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"98bda2f3-c834-456c-acb6-63a780d21ae0\"}\n"} -{"Time":"2022-12-07T09:15:37.073497+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.073524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.073531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.073 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.075617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.073 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.080496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.080 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:37.080511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.080 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.080514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.080 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.080516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.080 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.080525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.080 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.081031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.080 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:37.081199+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.081211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.081214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.081 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"684.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d654903-76dc-475a-a7fb-52c350e54ba1\"}\n"} -{"Time":"2022-12-07T09:15:37.086219+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.086233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.086236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.085 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"924.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db8c9224-14ee-412a-9120-abd08a21d331\"}\n"} -{"Time":"2022-12-07T09:15:37.089098+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.089114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.089117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.088 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"504.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"32d0d174-0501-4aaf-bff0-618a53191122\"}\n"} -{"Time":"2022-12-07T09:15:37.103776+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.103805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.103808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.103 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"448.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0786535a-03c0-492b-b06e-34666df61260\"}\n"} -{"Time":"2022-12-07T09:15:37.105508+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:37.105524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:37.105527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.104 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} -{"Time":"2022-12-07T09:15:37.105529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.104 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.105531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.104 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.105562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.105 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} -{"Time":"2022-12-07T09:15:37.105748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.105 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} -{"Time":"2022-12-07T09:15:37.105781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:37.105787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:37.105793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"request_id\": \"53e84e35-aed6-447c-b4f2-3522acfb9928\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:37.105798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"request_id\": \"53e84e35-aed6-447c-b4f2-3522acfb9928\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:37.105809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.105 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} -{"Time":"2022-12-07T09:15:37.105981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.105: cmd: stdout: \"\\x1b[1A\\r✔ Queued [214ms]\"\n"} -{"Time":"2022-12-07T09:15:37.105987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.105: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:37.105989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.105: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} -{"Time":"2022-12-07T09:15:37.10599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.105: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:37.107823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.107835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.107838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.107 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9bc538a4-e758-4b1b-a2e8-5336c83c3a70\"}\n"} -{"Time":"2022-12-07T09:15:37.113145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.113155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.113158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"572.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c02d3bf-4bce-4559-8feb-2b9ed3dab7e5\"}\n"} -{"Time":"2022-12-07T09:15:37.130014+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.130047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.130054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.129 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"485.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4498c6c7-0b2e-41e6-9c91-19edaef09089\"}\n"} -{"Time":"2022-12-07T09:15:37.13162+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.131637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.13164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.131 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.131643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.131 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.131754+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.131768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.131771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.131775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.13197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:37.131992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"size_bytes\": 81, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.131999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.132005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.132011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.13202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.131 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description 1\", \"default_source\": {\"value\": \"something\"}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}, {\"name\": \"username\", \"description\": \"description 2\", \"default_source\": {}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} -{"Time":"2022-12-07T09:15:37.134029+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.134038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.134041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.133 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"999.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"109fcdad-748e-418c-90e6-e37a52ae2a80\"}\n"} -{"Time":"2022-12-07T09:15:37.137482+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.13749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.137493+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.137 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"635.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"67e5ec9c-2f57-4a83-bef4-a5297c91509d\"}\n"} -{"Time":"2022-12-07T09:15:37.153604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.153682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.153685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.153 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"395.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2300d149-67fd-4511-9fbc-57226909b481\"}\n"} -{"Time":"2022-12-07T09:15:37.157311+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:37.157323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:37.157326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.156 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} -{"Time":"2022-12-07T09:15:37.157328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.156 [INFO]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:787\u003e\t(*Server).CompleteJob\tinserting template dry-run job resource\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\", \"resource_name\": \"main\", \"resource_type\": \"compute\"}\n"} -{"Time":"2022-12-07T09:15:37.15734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.156 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} -{"Time":"2022-12-07T09:15:37.157342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.156 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} -{"Time":"2022-12-07T09:15:37.157344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.156 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} -{"Time":"2022-12-07T09:15:37.157346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.156 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} -{"Time":"2022-12-07T09:15:37.157348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.156 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"30c0e230-f593-4723-bc76-02c9ff3f112c\"}\n"} -{"Time":"2022-12-07T09:15:37.15735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.157 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91/dry-run/30c0e230-f593-4723-bc76-02c9ff3f112c/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"316.863209ms\", \"status_code\": 101, \"latency_ms\": 316, \"request_id\": \"53e84e35-aed6-447c-b4f2-3522acfb9928\"}\n"} -{"Time":"2022-12-07T09:15:37.158359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.157 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91/dry-run/30c0e230-f593-4723-bc76-02c9ff3f112c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"685.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97727f84-f89f-4cdd-be3d-cbb49a105354\"}\n"} -{"Time":"2022-12-07T09:15:37.158722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [103ms]\"\n"} -{"Time":"2022-12-07T09:15:37.158732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/templateversions/fa375284-e6f6-41c8-816f-dd9287935c91/dry-run/30c0e230-f593-4723-bc76-02c9ff3f112c/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"524.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"537e37d1-8bf9-4ab2-a627-a6a06dcf1fbf\"}\n"} -{"Time":"2022-12-07T09:15:37.158738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.15874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.158742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"755.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2acc3dba-6b9b-4269-9039-a9d8e57fcd41\"}\n"} -{"Time":"2022-12-07T09:15:37.158931+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:37.158957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:37.158963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"┌────────────────────────────────────────────────────┐\"\n"} -{"Time":"2022-12-07T09:15:37.158969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"│ Workspace Preview │\"\n"} -{"Time":"2022-12-07T09:15:37.158973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"├────────────────────────────────────────────────────┤\"\n"} -{"Time":"2022-12-07T09:15:37.158977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"│ RESOURCE ACCESS │\"\n"} -{"Time":"2022-12-07T09:15:37.158981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"├────────────────────────────────────────────────────┤\"\n"} -{"Time":"2022-12-07T09:15:37.158986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"│ \\x1b[1mcompute.main\\x1b[0m │\"\n"} -{"Time":"2022-12-07T09:15:37.158993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"│ └─ smith (linux, i386) \\x1b[;mcoder ssh my-workspace\\x1b[0m │\"\n"} -{"Time":"2022-12-07T09:15:37.158997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.158: cmd: stdout: \"└────────────────────────────────────────────────────┘\"\n"} -{"Time":"2022-12-07T09:15:37.159088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" create_test.go:62: 2022-12-07 08:15:37.159: cmd: matched \"compute.main\" = \"\\r\\nPlanning workspace...\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [214ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [0ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Cleaning Up [103ms]\\r\\n┌────────────────────────────────────────────────────┐\\r\\n│ Workspace Preview │\\r\\n├────────────────────────────────────────────────────┤\\r\\n│ RESOURCE ACCESS │\\r\\n├────────────────────────────────────────────────────┤\\r\\n│ \\x1b[1mcompute.main\"\n"} -{"Time":"2022-12-07T09:15:37.159104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" create_test.go:62: 2022-12-07 08:15:37.159: cmd: matched \"smith (linux, i386)\" = \"\\x1b[0m │\\r\\n│ └─ smith (linux, i386)\"\n"} -{"Time":"2022-12-07T09:15:37.159107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" create_test.go:62: 2022-12-07 08:15:37.159: cmd: matched \"Confirm create\" = \" \\x1b[;mcoder ssh my-workspace\\x1b[0m │\\r\\n└────────────────────────────────────────────────────┘\\r\\n\u003e Confirm create\"\n"} -{"Time":"2022-12-07T09:15:37.15911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" create_test.go:64: 2022-12-07 08:15:37.159: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:37.159137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.159: cmd: stdout: \"\u003e Confirm create? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:37.160372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/organizations/b4c5afe5-5cc5-4cd1-a5ee-24957a1d42e1/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"768.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cfc6a358-e82a-45e3-969f-7620799c0a7a\"}\n"} -{"Time":"2022-12-07T09:15:37.161053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.160: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:37.161772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.161 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/workspacebuilds/c8383839-1c48-4ed2-85c8-c0437fde86c3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.018458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4c4be472-ae94-4897-b3d7-89e8d0d7a654\"}\n"} -{"Time":"2022-12-07T09:15:37.164019+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.164027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.164029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.163 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"960.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5f1581f6-3dcc-4361-894f-44d0084d3926\"}\n"} -{"Time":"2022-12-07T09:15:37.179299+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.179391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.179404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.178 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"473.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53247775-e5c3-44c2-88ca-a0a6e6615ffe\"}\n"} -{"Time":"2022-12-07T09:15:37.183567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.183581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.183584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.183586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.183605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.183607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.183615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.183617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.183619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.183621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.182 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.183622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.183 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.183626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.183 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"668.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1189dda4-62c4-40a2-952f-0b9f32b174f3\"}\n"} -{"Time":"2022-12-07T09:15:37.184654+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.18468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.184686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.184 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.184692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.184 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.189258+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.189272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.189275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.188 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.530958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"def2b1f5-f17a-4343-addb-10ff57c53974\"}\n"} -{"Time":"2022-12-07T09:15:37.204616+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.204634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.204637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.204 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"669.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6480f7ae-ac12-4692-bc34-b31d73a901b8\"}\n"} -{"Time":"2022-12-07T09:15:37.208171+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.208181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.208184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"315.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"998a3b8e-da19-4077-af5e-114603392638\"}\n"} -{"Time":"2022-12-07T09:15:37.211865+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:37.211882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:37.211886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.211 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.211889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.211 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.211892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.211 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:37.211895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.211 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreate467283361/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.212237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.211 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"size_bytes\": 41, \"path\": \"/tmp/TestCreateCreate467283361/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.212242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.211 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"size_bytes\": 41, \"path\": \"/tmp/TestCreateCreate467283361/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.212244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.211 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:37.212245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.212 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.212247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.212 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.212481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.212486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.21249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.212 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"480.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"87e574b9-6a63-417e-92b7-d92a41017574\"}\n"} -{"Time":"2022-12-07T09:15:37.228928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.228945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.228949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.228 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"381.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"75a9df65-1d26-4ce7-a78a-89080cc214dc\"}\n"} -{"Time":"2022-12-07T09:15:37.233803+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.233817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.23382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.232 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"df5c220a-92b9-4bc6-adc6-0646682d850f\"}\n"} -{"Time":"2022-12-07T09:15:37.233824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.233 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.233826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.233 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.233828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.233 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.23383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.233 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.233832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.233 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.233842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.233 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.234724+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.234727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.234729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.234731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.234733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.234735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.234737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.234738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.234741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.235313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.235316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.234 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.237688+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.237697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.237699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.237 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"482.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"329f982f-ce92-4fee-b644-b938b5638f5b\"}\n"} -{"Time":"2022-12-07T09:15:37.254399+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.254424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.254428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.254 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"417.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"807d8ba5-cba8-431e-9fcb-4e285707b24e\"}\n"} -{"Time":"2022-12-07T09:15:37.258026+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.258035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.25804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.257 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"788b170c-fccb-43a6-b2d5-789fcdd1b27a\"}\n"} -{"Time":"2022-12-07T09:15:37.262239+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:37.26225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:37.262254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.262 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.262721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.262 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.262728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.262 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.262731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.262 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.262732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:37.262939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"request_id\": \"f5228c63-c43e-4e51-a8b5-e27696873f29\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:37.262953+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.262955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.262957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"543.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"69dbdf7a-d693-40b2-a44a-d041f313d8ee\"}\n"} -{"Time":"2022-12-07T09:15:37.263514+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:37.26352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:37.263523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.263: cmd: stdout: \"\\x1b[1A\\r✔ Queued [50ms]\"\n"} -{"Time":"2022-12-07T09:15:37.263525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.263: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:37.279214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.279231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.279234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.278 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"393.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5918c514-067e-44c3-9247-ea088c8851a3\"}\n"} -{"Time":"2022-12-07T09:15:37.282767+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.282776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.282779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.282 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"342.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7ea6031f-551f-45dc-ab5d-42b21b0d0ddf\"}\n"} -{"Time":"2022-12-07T09:15:37.283707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.283 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.283714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.283 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.283737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.283 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.283748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.283 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"bc1b22a0-5dc2-4b08-a4a6-3c45844ae246\"}\n"} -{"Time":"2022-12-07T09:15:37.285364+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.285376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.285379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.285 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.285382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.285 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.285384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.285 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.285387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.285 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.285388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.285 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.285474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.285 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.28808+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.288106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.288113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.287 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"470.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a03cf4cc-f665-4218-aacf-c8babf951dbf\"}\n"} -{"Time":"2022-12-07T09:15:37.304774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.304791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.304796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.304 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"686.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d9e487b0-0242-4da3-92be-6a116b003b8f\"}\n"} -{"Time":"2022-12-07T09:15:37.307558+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.307565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.307567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.307 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"330.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eca3b2f1-5c80-4a5b-82c7-5481cbb7adc5\"}\n"} -{"Time":"2022-12-07T09:15:37.308112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.307 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templates/eed357ed-515d-4c8d-a88b-d0b086e94d19/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"291.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"692ad575-db6f-4d64-b3ca-17f3731527e9\"}\n"} -{"Time":"2022-12-07T09:15:37.312431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.312442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.312445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.312 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"494.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"879a3861-550e-4d36-b2a5-ed5d34472bfc\"}\n"} -{"Time":"2022-12-07T09:15:37.312587+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.312599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.312602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.312 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"71.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db54c51b-85f5-4011-9d3d-3c4f792e10c8\"}\n"} -{"Time":"2022-12-07T09:15:37.312858+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:37.312864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:37.312867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.312 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.312952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.312 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.312957+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.312959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.312961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.312 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.5µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"eb6d90e6-ae08-4a24-828b-28ebb1309297\"}\n"} -{"Time":"2022-12-07T09:15:37.312976+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:37.312979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:37.312981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.312 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"resource_count\": 1, \"resources\": [{\"name\": \"main\", \"type\": \"compute\", \"agents\": [{\"name\": \"smith\", \"operating_system\": \"linux\", \"architecture\": \"i386\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.313542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.313548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.31355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5af65db0-a5f3-42b7-86b7-5d47c8664bb9\"}\n"} -{"Time":"2022-12-07T09:15:37.31434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.314 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templates/eed357ed-515d-4c8d-a88b-d0b086e94d19\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a16811b-be9f-465a-b6b7-b5c851349a26\"}\n"} -{"Time":"2022-12-07T09:15:37.31464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.314 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/parameters/workspace/34767030-b9eb-47fe-9010-e0d2c608a798\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"313.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f204ac04-782c-47fd-9dbe-30febad2a55e\"}\n"} -{"Time":"2022-12-07T09:15:37.315042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.314 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"901a1936-a8e7-47c5-bfee-0813b1518884\"}\n"} -{"Time":"2022-12-07T09:15:37.31552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.315 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"68a81080-7243-41fc-91ac-d78c5cf6d027\"}\n"} -{"Time":"2022-12-07T09:15:37.316227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.316 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"551.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3cf5cb2d-c80c-4766-a789-9b4a6984cfff\"}\n"} -{"Time":"2022-12-07T09:15:37.317142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.317 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b/dry-run/d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"719µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9cbe2b46-83d9-45a6-9f61-80a1e0c7ee7e\"}\n"} -{"Time":"2022-12-07T09:15:37.330507+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.330524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.330527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.330 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b3747bef-ea49-48f8-81ef-593f2b1eefaf\"}\n"} -{"Time":"2022-12-07T09:15:37.338384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.338 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.338398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.338 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.338402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.338 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.338453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.338 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"4446aa40-98c3-4c5e-913c-0486156d0756\"}\n"} -{"Time":"2022-12-07T09:15:37.339761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.339774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.339777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.339 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"387.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dbdd9a36-bc04-4f2e-acd5-b9adfccf9b1c\"}\n"} -{"Time":"2022-12-07T09:15:37.354611+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.354628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.354631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.354 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"876.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"407c9f54-6b98-4d96-9552-77b3b370b6bc\"}\n"} -{"Time":"2022-12-07T09:15:37.355739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.355 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templates/c8c45969-f096-42e5-a0f7-839737fd0ee5/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"621.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7844b64b-f0e8-4ff3-94a8-347059234b6b\"}\n"} -{"Time":"2022-12-07T09:15:37.360264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.360 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"178.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6015732b-5883-4a44-8593-6609d425cdf7\"}\n"} -{"Time":"2022-12-07T09:15:37.360411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.360 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"69.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"603e2af2-792a-45f8-8aee-3695d295c9ad\"}\n"} -{"Time":"2022-12-07T09:15:37.361203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"523.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20cf5c14-e1b5-464a-bf39-ed9870b019ef\"}\n"} -{"Time":"2022-12-07T09:15:37.361873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templates/c8c45969-f096-42e5-a0f7-839737fd0ee5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2a8497df-444f-4145-a403-09ca8ea2c196\"}\n"} -{"Time":"2022-12-07T09:15:37.362467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/parameters/workspace/6659ddd9-73cf-448a-be3d-569447fceeae\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b9203645-42cd-4661-86cc-54e1edd03047\"}\n"} -{"Time":"2022-12-07T09:15:37.363398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"327.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da06194b-5988-4a43-a820-26aa5b2ffdac\"}\n"} -{"Time":"2022-12-07T09:15:37.363404+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:37.363406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:37.363408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.36341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.363413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.363414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.363416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:37.363418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:37.36342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"request_id\": \"f5228c63-c43e-4e51-a8b5-e27696873f29\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:37.363513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"request_id\": \"f5228c63-c43e-4e51-a8b5-e27696873f29\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:37.36355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.363804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.363: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:37.363809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.363: cmd: stdout: \"✔ Setting up [101ms]\"\n"} -{"Time":"2022-12-07T09:15:37.363813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.363: cmd: stdout: \"⧗ \\x1b[;mStarting workspace\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:37.363815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.363817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.363818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.363 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"675.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"409463d8-a2f1-4e95-b8d7-43e8f4b4d72e\"}\n"} -{"Time":"2022-12-07T09:15:37.364437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:37.364459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \" This template has customizable parameters. Values can be \"\n"} -{"Time":"2022-12-07T09:15:37.364461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \" changed after create, but may have unintended side effects\"\n"} -{"Time":"2022-12-07T09:15:37.364463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \" (like data loss). \\r\"\n"} -{"Time":"2022-12-07T09:15:37.364464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:37.364466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \"\\x1b[1mvar.region\\x1b[0m\"\n"} -{"Time":"2022-12-07T09:15:37.364468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \" description 1\"\n"} -{"Time":"2022-12-07T09:15:37.36447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.364: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:37.367351+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.367359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.367361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.367 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aae56d57-6804-4124-bc02-cf618d6607b8\"}\n"} -{"Time":"2022-12-07T09:15:37.370177+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.370199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.370202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" update_test.go:135: 2022-12-07 08:15:37.369: cmd: matched \"Enter a value (default: \\\"something\\\"):\" = \" \\r\\n This template has customizable parameters. Values can be \\r\\n changed after create, but may have unintended side effects\\r\\n (like data loss). \\r\\r\\n\\r\\n\\x1b[1mvar.region\\x1b[0m\\r\\n description 1\\r\\n\\r\\n\u003e \\x1b[1mEnter a value (default: \\\"something\\\"):\"\n"} -{"Time":"2022-12-07T09:15:37.370205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" update_test.go:136: 2022-12-07 08:15:37.369: cmd: stdin: \"bingo\\r\"\n"} -{"Time":"2022-12-07T09:15:37.370631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.370: cmd: stdout: \"\u003e \\x1b[1mEnter a value (default: \\\"something\\\"):\\x1b[0m bingo\"\n"} -{"Time":"2022-12-07T09:15:37.370635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.370: cmd: stdout: \"\\x1b[1mvar.username\\x1b[0m\"\n"} -{"Time":"2022-12-07T09:15:37.370636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.370: cmd: stdout: \" description 2\"\n"} -{"Time":"2022-12-07T09:15:37.370638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.370: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:37.376565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" update_test.go:135: 2022-12-07 08:15:37.375: cmd: matched \"Enter a value:\" = \"\\x1b[0m bingo\\r\\n\\x1b[1mvar.username\\x1b[0m\\r\\n description 2\\r\\n\\r\\n\u003e \\x1b[1mEnter a value:\"\n"} -{"Time":"2022-12-07T09:15:37.376583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" update_test.go:136: 2022-12-07 08:15:37.375: cmd: stdin: \"boingo\\r\"\n"} -{"Time":"2022-12-07T09:15:37.377515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.376: cmd: stdout: \"\u003e \\x1b[1mEnter a value:\\x1b[0m boingo\"\n"} -{"Time":"2022-12-07T09:15:37.377529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.376: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:37.378248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.458209ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"99d2185b-bb5b-48f4-813a-58e93dc7cd18\"}\n"} -{"Time":"2022-12-07T09:15:37.379012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.378: cmd: stdout: \"Planning workspace...\"\n"} -{"Time":"2022-12-07T09:15:37.379017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.378: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:37.379433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.379 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470/dry-run/f41fff73-c850-48a7-a397-053ca676c68b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"786.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a7f39029-095a-44dd-ab90-57d10e0ab886\"}\n"} -{"Time":"2022-12-07T09:15:37.388372+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.388453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.388465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.387 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"534.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"15bff1e5-3ab9-4664-925c-25d7ee876a75\"}\n"} -{"Time":"2022-12-07T09:15:37.414834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.414 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.100708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d1481cff-fd60-4cfa-ae98-76b30225c363\"}\n"} -{"Time":"2022-12-07T09:15:37.415314+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:37.415319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:37.415327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.415331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.415333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.415337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.415962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:37.415965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:37.415968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.41597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"request_id\": \"f5228c63-c43e-4e51-a8b5-e27696873f29\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:37.415972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\", \"request_id\": \"f5228c63-c43e-4e51-a8b5-e27696873f29\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:37.416531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.416: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:37.416536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.416: cmd: stdout: \"✔ Starting workspace [51ms]\"\n"} -{"Time":"2022-12-07T09:15:37.416538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:103: 2022-12-07 08:15:37.416: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:37.439098+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.439114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.439117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.437 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f379a62f-55ec-44a0-a3d1-ad81f813916d\"}\n"} -{"Time":"2022-12-07T09:15:37.464657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.464 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"684.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"89f6fae0-e31a-4009-9b96-5caa9bd0e797\"}\n"} -{"Time":"2022-12-07T09:15:37.466057+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create"} -{"Time":"2022-12-07T09:15:37.466069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":"=== CONT TestCreate/Create\n"} -{"Time":"2022-12-07T09:15:37.466072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.465 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.466076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.466 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"c8383839-1c48-4ed2-85c8-c0437fde86c3\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:37.466252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.466 [DEBUG]\t(provisionerd-amazing_tharp8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.466257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.46627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.466272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.466 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"9496ff67-7734-4b9d-a159-df8a64cc110d\"}\n"} -{"Time":"2022-12-07T09:15:37.466346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/workspacebuilds/c8383839-1c48-4ed2-85c8-c0437fde86c3/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"300.421125ms\", \"status_code\": 101, \"latency_ms\": 300, \"request_id\": \"f5228c63-c43e-4e51-a8b5-e27696873f29\"}\n"} -{"Time":"2022-12-07T09:15:37.470431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.467 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/workspacebuilds/c8383839-1c48-4ed2-85c8-c0437fde86c3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"587.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b3240911-acc6-4a8f-acdc-33b6adbecae3\"}\n"} -{"Time":"2022-12-07T09:15:37.470442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.468 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57252\", \"path\": \"/api/v2/users/testuser/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"948.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"911b1fef-84f8-4c19-b9ce-1e0cc633ca06\"}\n"} -{"Time":"2022-12-07T09:15:37.470445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" ptytest.go:80: 2022-12-07 08:15:37.468: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:37.470591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" t.go:81: 2022-12-07 08:15:37.470 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:37.471654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:37.471665+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.471667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.476147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.475 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"116.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2fb95c21-1fb2-4916-b9b9-c4bf49d22e85\"}\n"} -{"Time":"2022-12-07T09:15:37.477206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.476 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"47.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7f7293d1-3bb7-429a-8f6c-e9d8db999e7f\"}\n"} -{"Time":"2022-12-07T09:15:37.478857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.477 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/users/me/gitsshkey\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"684.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97207d71-e5ca-4396-b253-05952fa4c3bb\"}\n"} -{"Time":"2022-12-07T09:15:37.48206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.478 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"405.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"22c275c7-c50a-4e82-9c95-cb2974b64668\"}\n"} -{"Time":"2022-12-07T09:15:37.482071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/organizations/4a014ca8-2b92-4fb8-b14d-3c289c413d0e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"599.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"48b98d7d-cd6a-4e39-9146-41aab62e074c\"}\n"} -{"Time":"2022-12-07T09:15:37.482073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.480 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/organizations/4a014ca8-2b92-4fb8-b14d-3c289c413d0e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"884.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3e7485da-2c8c-4cef-b7fe-49ac39367631\"}\n"} -{"Time":"2022-12-07T09:15:37.482076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" gitssh_test.go:195: waiting for template version job 010c9261-dc71-49ee-a7dc-db23100f9c86\n"} -{"Time":"2022-12-07T09:15:37.492638+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.492653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.492672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.492 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"473.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"09989aaa-3d3d-4ebd-a57f-47963ccf092a\"}\n"} -{"Time":"2022-12-07T09:15:37.501936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.501 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.501952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.501 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.50262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.501 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:37.502624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.502 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.502627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.502 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.502629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.502 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.502634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.502 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"workspace_name\": \"suspicious-sutherland4\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:37.502637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.502 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.502679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.502 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.507634+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.507654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.50766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.507 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"925f0046-f95a-4a31-b209-48ad6a52fd3f\"}\n"} -{"Time":"2022-12-07T09:15:37.516938+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.516953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.516956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.516 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"422.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ee1fbb49-54c8-41d5-89cb-46cf333da6bd\"}\n"} -{"Time":"2022-12-07T09:15:37.534483+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.534502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.534506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.534 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.36725ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"70ac38f9-ce89-454e-a49c-9f85c4cf9be3\"}\n"} -{"Time":"2022-12-07T09:15:37.538627+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.538643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.538646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"335.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e525c6a0-88fb-4d14-96f7-d52264c2ed1e\"}\n"} -{"Time":"2022-12-07T09:15:37.553766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.553 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.553786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.553 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.553789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.553 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.553791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.553 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.55841+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.558418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.558421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"427.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7f901d04-1bcc-4e1a-a40b-ef7e0acfcb40\"}\n"} -{"Time":"2022-12-07T09:15:37.564923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.56504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.565049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.563 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"edd1c7e1-2e38-443d-bed7-cb937101ebe8\"}\n"} -{"Time":"2022-12-07T09:15:37.570281+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:37.570292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:37.570294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" gitssh_test.go:150: got authenticated session\n"} -{"Time":"2022-12-07T09:15:37.575585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.574 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"480.538667ms\", \"status_code\": 0, \"latency_ms\": 480, \"request_id\": \"540ca691-2fb2-4d1b-a077-1da67008b193\"}\n"} -{"Time":"2022-12-07T09:15:37.575599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.574 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57207\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"536.144291ms\", \"status_code\": 101, \"latency_ms\": 536, \"request_id\": \"c61cb385-8fc1-4937-aa48-a26f2b12d426\"}\n"} -{"Time":"2022-12-07T09:15:37.575603+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.575604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.575606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.575 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:37.576189+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial"} -{"Time":"2022-12-07T09:15:37.576192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":"=== CONT TestGitSSH/Dial\n"} -{"Time":"2022-12-07T09:15:37.576194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" t.go:81: 2022-12-07 08:15:37.575 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:37.577022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:37.577051+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.577055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.585598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.585613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.585616+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.584 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"499.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"910272fd-221a-4b67-955b-88418652127e\"}\n"} -{"Time":"2022-12-07T09:15:37.58562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.585622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.585624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.584 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"264.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"751258dd-9cb5-4593-bbb4-fbfd8b581b42\"}\n"} -{"Time":"2022-12-07T09:15:37.585626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"74.083µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3b82496a-c153-4465-b968-f459fba7a6fa\"}\n"} -{"Time":"2022-12-07T09:15:37.586466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"404.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0bf91356-a33d-48e5-8530-7b3abd6ef81b\"}\n"} -{"Time":"2022-12-07T09:15:37.587026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/organizations/917b7d72-8e95-4d5d-8167-471e9718c46c/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"779.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"40166f34-cb07-42da-90ee-a08ab99decb5\"}\n"} -{"Time":"2022-12-07T09:15:37.587363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" configssh_test.go:669: waiting for template version job c53feb1c-f7e8-4b24-83b7-9217b74882c7\n"} -{"Time":"2022-12-07T09:15:37.590548+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.590557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.59056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.781208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3b01b852-3861-4559-8806-2a1dee78c655\"}\n"} -{"Time":"2022-12-07T09:15:37.609149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.608 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.609168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.608 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.609171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.608 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.61005+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.610075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.610081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.609 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"606.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c0631c70-5034-4d92-9320-a8edab489535\"}\n"} -{"Time":"2022-12-07T09:15:37.613554+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.613584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.613592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.613 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"574.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d527a97f-9348-4c40-9d02-fd394bb2d428\"}\n"} -{"Time":"2022-12-07T09:15:37.614495+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.614517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.614524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.613 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"482.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"00a21a6b-5f70-4943-be69-1371e46135c1\"}\n"} -{"Time":"2022-12-07T09:15:37.627191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.62721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.627213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.627216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.627218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:37.62722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHLocal_SSH_Keys814253385/003/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.627222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"size_bytes\": 68, \"path\": \"/tmp/TestGitSSHLocal_SSH_Keys814253385/003/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.627224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHLocal_SSH_Keys814253385/003/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.627226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.627228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.626 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:37.632044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.631 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"430.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39aa04ea-333c-47c0-b01a-5d546dd2f488\"}\n"} -{"Time":"2022-12-07T09:15:37.63762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.637631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.637634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"393.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d5fa34be-7fdf-4ec2-8579-e4cd61a83ada\"}\n"} -{"Time":"2022-12-07T09:15:37.638502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.638518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.638521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.638 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20e1f120-8806-4747-b858-da1501e36037\"}\n"} -{"Time":"2022-12-07T09:15:37.656714+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.656739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.656744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.656 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"355.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3873fbd4-b995-4792-9f5c-330666936405\"}\n"} -{"Time":"2022-12-07T09:15:37.659569+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.659577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.65958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.659 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.659583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.659 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.659585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.659 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.659587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.659 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.659645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.659 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.662926+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.662937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.662939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.662 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b1d7a945-cc67-4572-81db-7c7275fe9d6a\"}\n"} -{"Time":"2022-12-07T09:15:37.663306+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.663323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.663329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.663 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.468458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b9963fc0-cc7f-4968-9ef3-4659fa521225\"}\n"} -{"Time":"2022-12-07T09:15:37.673545+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.673573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.673578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.673 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"16.042µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:37.677274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.676 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.677285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.677 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.681244+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.681254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.681256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.680 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:37.681882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.681887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.68189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.681 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"363.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9aa6ce2c-215a-42c0-927c-e48e7af4559f\"}\n"} -{"Time":"2022-12-07T09:15:37.687872+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.687884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.687886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.687 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"960.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f3969c70-25e3-4293-90fd-ff52e92bc29c\"}\n"} -{"Time":"2022-12-07T09:15:37.688774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.688778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.68878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.688 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"653.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62e90721-6b9f-4805-8885-35f0005979fd\"}\n"} -{"Time":"2022-12-07T09:15:37.70723+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.707256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.707259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.707 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"533.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6cbc3178-f8c4-4855-9bf6-72ddecb366cd\"}\n"} -{"Time":"2022-12-07T09:15:37.711503+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.711514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.711517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.711 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.71152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.711 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.711522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.711 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.711524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.711 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.711526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.711 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.71232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.712 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6fbf528d-a3ba-401c-a7b4-639848576288\"}\n"} -{"Time":"2022-12-07T09:15:37.713097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.713101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.713103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.713 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"312.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"700e1800-aca3-404f-b1a5-60efa7ccc5a9\"}\n"} -{"Time":"2022-12-07T09:15:37.728388+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.72841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.728414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.728421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.72843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.728433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.728435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.728436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.728502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.728551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.728561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.728 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.730994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.731001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.731003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.730 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.731073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.731 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.731126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.731 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:37.731198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.731 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.731212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.731 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"size_bytes\": 71, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.731217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.731 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"size_bytes\": 71, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.731272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.731 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.731481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.731 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:37.73285+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.732863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.732868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.732 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d04ad3a3-c879-4b39-a1fd-fc2bffd9be4b\"}\n"} -{"Time":"2022-12-07T09:15:37.738097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.738108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.738111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.738 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"307.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"76b1ef83-5273-457a-8e20-a9c5c530494b\"}\n"} -{"Time":"2022-12-07T09:15:37.739278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.739306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.739315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.739 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"359.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c2db6198-3616-4d32-bb6d-e16f69b52959\"}\n"} -{"Time":"2022-12-07T09:15:37.756985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.75701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.757013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.756 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"495µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d61b9d94-ab89-474a-a8c1-341058d6a193\"}\n"} -{"Time":"2022-12-07T09:15:37.761755+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.761765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.761792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.761 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.761894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.761 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.761933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.761 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"7d38856d-f7ed-42a1-913b-00d1262fb6ea\"}\n"} -{"Time":"2022-12-07T09:15:37.762268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.762 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/50f67471-e5a9-4bde-ae1f-894c81677c78\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"405.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b359d0b-27d3-4bac-bad6-a772f813e626\"}\n"} -{"Time":"2022-12-07T09:15:37.762801+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.762805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.762807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.762 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"681f1230-384d-483d-9bf9-818880828059\"}\n"} -{"Time":"2022-12-07T09:15:37.76454+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:37.764546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.764548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.764 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.709µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"0cbc2016-5f40-4b80-90af-2ad37bea92a8\"}\n"} -{"Time":"2022-12-07T09:15:37.764766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.764 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"35.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7b418345-30a6-4d41-a464-78468dcb0b5d\"}\n"} -{"Time":"2022-12-07T09:15:37.765356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/users/me/workspace/suspicious-sutherland4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a947bde5-bb28-45c7-b067-eebbc6d1f228\"}\n"} -{"Time":"2022-12-07T09:15:37.765936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspaces/45a68c83-70ba-484d-9fa1-9552e91371ff/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b6810f21-1ea3-4540-b8cf-d6892728afc5\"}\n"} -{"Time":"2022-12-07T09:15:37.766036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.766: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:37.76651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.766 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/38bff926-db52-43c9-b706-b39da94a4d02\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"388.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a0345034-daf6-46a7-9d68-153f8e9c8af4\"}\n"} -{"Time":"2022-12-07T09:15:37.779094+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.779111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.779114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.778 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.779225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.779 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.779325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.779 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.779364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.779 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.779367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.779 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.779414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.779 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.780248+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.780261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.780264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.780 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.917µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:37.782821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.782 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.782938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.782 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"92433b54-528d-4ede-bbf7-2ef9194ddc5d\", \"name\": \"agent1\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.784431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.784442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.784445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.784 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b5828227-8851-4597-9304-3cf9bce101d0\"}\n"} -{"Time":"2022-12-07T09:15:37.788793+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.788809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.788813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.788 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8cf43ef5-e2fd-4590-8cab-5bc1257fc887\"}\n"} -{"Time":"2022-12-07T09:15:37.806684+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.806703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.806706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.806 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"359.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c8d7cfb7-527d-40de-8601-beecdccb7e35\"}\n"} -{"Time":"2022-12-07T09:15:37.812982+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.812995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.812998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.812 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"372.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a972f669-16a5-4ad2-bcf4-0935266d1794\"}\n"} -{"Time":"2022-12-07T09:15:37.82958+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.829613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.829619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.829 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.829625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.829 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.829627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.829 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.830797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.830 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d6599919-f82b-4767-9314-07dd0ac9b02c\"}\n"} -{"Time":"2022-12-07T09:15:37.833411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.833 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/templateversions/010c9261-dc71-49ee-a7dc-db23100f9c86\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.333708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d0cadfbc-5000-4150-870d-99e6e9f40236\"}\n"} -{"Time":"2022-12-07T09:15:37.835238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/organizations/4a014ca8-2b92-4fb8-b14d-3c289c413d0e/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.1605ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"d7c4e5ce-d294-4a61-be21-69b3a8a9ebe9\"}\n"} -{"Time":"2022-12-07T09:15:37.835257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" gitssh_test.go:195: waiting for workspace build job 9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\n"} -{"Time":"2022-12-07T09:15:37.835837+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.835864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.835871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.835 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.835878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.835 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.835887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.835 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.835898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.835 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.835906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.835 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.836164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.835 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.83617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.836 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.836241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.836 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"92433b54-528d-4ede-bbf7-2ef9194ddc5d\", \"name\": \"agent1\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.836264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.836 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.840419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.840 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"928.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db568649-d1c5-4838-a46a-11c6e9792114\"}\n"} -{"Time":"2022-12-07T09:15:37.860935+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.860951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.860954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.860 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"424.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"38c37514-926f-416b-9a6c-a5dbaddc8251\"}\n"} -{"Time":"2022-12-07T09:15:37.863485+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.863497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.8635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.863 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"834.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"afe31ea1-5528-4e7f-b1bf-7ebe7c4a243a\"}\n"} -{"Time":"2022-12-07T09:15:37.886031+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.886049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.886052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.885 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f632276-f79a-4a1b-a128-bfde998e56ff\"}\n"} -{"Time":"2022-12-07T09:15:37.886358+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.886363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.886366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.886 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.88641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.886 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.886451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.886 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.886484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.886 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.886529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.886 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.8866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.886 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.887713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.887 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b34f294-a21b-438c-b47e-7b2f994672ab\"}\n"} -{"Time":"2022-12-07T09:15:37.91209+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.912106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.91218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.912 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"760.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c017383e-d9aa-4d4a-9475-b269daefa048\"}\n"} -{"Time":"2022-12-07T09:15:37.913975+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.913984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.913986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"503.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a25e6da-d513-40e6-bd62-8bc52857a9f3\"}\n"} -{"Time":"2022-12-07T09:15:37.92818+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.9282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.928203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} -{"Time":"2022-12-07T09:15:37.928212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} -{"Time":"2022-12-07T09:15:37.928218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:37.928527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"size_bytes\": 81, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.928542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.928545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.928547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"workspace_name\": \"my-workspace\", \"parameters\": [{\"destination_scheme\": 1, \"name\": \"region\", \"value\": \"bingo\"}, {\"destination_scheme\": 1, \"name\": \"username\", \"value\": \"boingo\"}]}\n"} -{"Time":"2022-12-07T09:15:37.92855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.928553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.928 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} -{"Time":"2022-12-07T09:15:37.936635+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.936653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.936657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.936 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"775.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"651895ba-ea99-4e4b-a053-2a941cac6097\"}\n"} -{"Time":"2022-12-07T09:15:37.937969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.937982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.937985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.937 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.938202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.937 [INFO]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:37.938222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.938 [INFO]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:37.938345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.938349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.938351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"79cd05fc-4cc3-4f21-9b1a-369ceb381fdc\"}\n"} -{"Time":"2022-12-07T09:15:37.938425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.938452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.93846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} -{"Time":"2022-12-07T09:15:37.938468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} -{"Time":"2022-12-07T09:15:37.938475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.938478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.938483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.938 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"1273a705-3939-4073-bb5a-41d6d3af3427\"}\n"} -{"Time":"2022-12-07T09:15:37.93849+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.938493+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.938497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:37.938533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.938542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.938569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:37.938574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"workspace_name\": \"my-workspace\", \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:37.938671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:37.938677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.938 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} -{"Time":"2022-12-07T09:15:37.961103+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.961135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.96114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"621.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7d9f4ffa-91c7-436f-b8d1-7043e0d8d906\"}\n"} -{"Time":"2022-12-07T09:15:37.964498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.96451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.964684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.964 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"388.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39dee7cd-c4f1-4f9b-9ed4-afe424223ab6\"}\n"} -{"Time":"2022-12-07T09:15:37.96552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.965 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/organizations/917b7d72-8e95-4d5d-8167-471e9718c46c/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"30fdf6cd-b331-43e2-91d1-8dd12e0cfadb\"}\n"} -{"Time":"2022-12-07T09:15:37.966316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.966 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/organizations/917b7d72-8e95-4d5d-8167-471e9718c46c/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"623.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e0b90e2d-a3e0-4ba4-86d5-485ac7ef503b\"}\n"} -{"Time":"2022-12-07T09:15:37.966437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" configssh_test.go:672: waiting for workspace build job 1044911b-3084-4587-b913-51c5f1e98cab\n"} -{"Time":"2022-12-07T09:15:37.978874+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:37.978894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:37.978897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} -{"Time":"2022-12-07T09:15:37.9789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.978911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.978914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} -{"Time":"2022-12-07T09:15:37.978919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} -{"Time":"2022-12-07T09:15:37.97892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:37.97899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:37.979023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"request_id\": \"9c7d4887-49d1-4a97-ac29-c96981393b7d\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:37.979027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.979 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\", \"request_id\": \"9c7d4887-49d1-4a97-ac29-c96981393b7d\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:37.979053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:37.978 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} -{"Time":"2022-12-07T09:15:37.979119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.979: cmd: stdout: \"\\x1b[1A\\r✔ Queued [549ms]\"\n"} -{"Time":"2022-12-07T09:15:37.979124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.979: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:37.979127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.979: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} -{"Time":"2022-12-07T09:15:37.979129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:37.979: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:37.98777+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:37.987819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:37.987838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:37.987 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"822.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8ec8f1a8-76d8-42c7-93a4-c06ec84d3a56\"}\n"} -{"Time":"2022-12-07T09:15:37.989593+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:37.989618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:37.989641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.989 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} -{"Time":"2022-12-07T09:15:37.989647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.989 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.989656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.989 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:37.989661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.989 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} -{"Time":"2022-12-07T09:15:37.990019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.989 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} -{"Time":"2022-12-07T09:15:37.990034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.989 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} -{"Time":"2022-12-07T09:15:37.99027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.990 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:37.990285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.990 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:37.990297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.990 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"request_id\": \"58cca5a8-811f-4cf9-8578-7bbed8e3a7b4\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:37.9903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:37.990 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"request_id\": \"58cca5a8-811f-4cf9-8578-7bbed8e3a7b4\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:37.99272+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:37.992733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:37.992736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:37.992 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"411.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7f01a02e-c4ef-4512-8cc6-53f7f3c68304\"}\n"} -{"Time":"2022-12-07T09:15:38.011982+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.012002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.012005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.011 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"402.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"45890707-785e-4b68-a0bf-f3add35e1faa\"}\n"} -{"Time":"2022-12-07T09:15:38.018033+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.01805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.018053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.017 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"765.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"51312386-4364-47f8-9c97-31862d9280a7\"}\n"} -{"Time":"2022-12-07T09:15:38.029509+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.02953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.029533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.029 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} -{"Time":"2022-12-07T09:15:38.029535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.029 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} -{"Time":"2022-12-07T09:15:38.029537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.029 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} -{"Time":"2022-12-07T09:15:38.029539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} -{"Time":"2022-12-07T09:15:38.029541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} -{"Time":"2022-12-07T09:15:38.029542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.029 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"f41fff73-c850-48a7-a397-053ca676c68b\"}\n"} -{"Time":"2022-12-07T09:15:38.029757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470/dry-run/f41fff73-c850-48a7-a397-053ca676c68b/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"649.022917ms\", \"status_code\": 101, \"latency_ms\": 649, \"request_id\": \"9c7d4887-49d1-4a97-ac29-c96981393b7d\"}\n"} -{"Time":"2022-12-07T09:15:38.033377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.033 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470/dry-run/f41fff73-c850-48a7-a397-053ca676c68b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.954875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b5d87940-b7c8-417a-a39c-22ee0da6afa3\"}\n"} -{"Time":"2022-12-07T09:15:38.034528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.033: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [101ms]\"\n"} -{"Time":"2022-12-07T09:15:38.034544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.034 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/templateversions/3db87ca4-74b1-413e-974c-b30bec6f5470/dry-run/f41fff73-c850-48a7-a397-053ca676c68b/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"727.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4abec79a-8080-4bd8-ad3c-daf73e3483be\"}\n"} -{"Time":"2022-12-07T09:15:38.035357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.034: cmd: stdout: \"┌──────────────────┐\"\n"} -{"Time":"2022-12-07T09:15:38.035365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.034: cmd: stdout: \"│ Workspace Previe │\"\n"} -{"Time":"2022-12-07T09:15:38.035368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.034: cmd: stdout: \"│ w │\"\n"} -{"Time":"2022-12-07T09:15:38.035369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.034: cmd: stdout: \"├──────────────────┤\"\n"} -{"Time":"2022-12-07T09:15:38.03537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.034: cmd: stdout: \"│ RESOURCE ACCESS │\"\n"} -{"Time":"2022-12-07T09:15:38.035372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.034: cmd: stdout: \"├──────────────────┤\"\n"} -{"Time":"2022-12-07T09:15:38.035373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.034: cmd: stdout: \"└──────────────────┘\"\n"} -{"Time":"2022-12-07T09:15:38.035822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/workspaces/6659ddd9-73cf-448a-be3d-569447fceeae/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"700.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e1ef69af-8daf-4645-bb18-6fa55c750c58\"}\n"} -{"Time":"2022-12-07T09:15:38.036425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.036429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.036432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"21a9fbed-18ab-4751-933f-6159c60c7396\"}\n"} -{"Time":"2022-12-07T09:15:38.0402+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:38.040209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:38.040212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.040 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} -{"Time":"2022-12-07T09:15:38.040215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.040 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} -{"Time":"2022-12-07T09:15:38.040216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.040 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} -{"Time":"2022-12-07T09:15:38.040218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.040 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} -{"Time":"2022-12-07T09:15:38.040566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.040 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} -{"Time":"2022-12-07T09:15:38.040573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.040 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d42f2b1d-8054-477f-9d43-2149842dfc9f\"}\n"} -{"Time":"2022-12-07T09:15:38.040576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.040 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b/dry-run/d42f2b1d-8054-477f-9d43-2149842dfc9f/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"720.017042ms\", \"status_code\": 101, \"latency_ms\": 720, \"request_id\": \"58cca5a8-811f-4cf9-8578-7bbed8e3a7b4\"}\n"} -{"Time":"2022-12-07T09:15:38.042071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.041 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b/dry-run/d42f2b1d-8054-477f-9d43-2149842dfc9f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"661.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ccf5377-5c22-4fb6-bf3c-817e34b8f00d\"}\n"} -{"Time":"2022-12-07T09:15:38.042461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.042464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.042478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.042 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"17770e12-f6c0-46b7-981c-05c103b94c01\"}\n"} -{"Time":"2022-12-07T09:15:38.044549+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:38.044574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:38.04458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.043 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/templateversions/96079034-c2e2-4262-aace-baab39c9712b/dry-run/d42f2b1d-8054-477f-9d43-2149842dfc9f/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.142167ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c7ad14e0-f76d-4559-9df4-45fb805a66ef\"}\n"} -{"Time":"2022-12-07T09:15:38.044587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.043 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/workspaces/34767030-b9eb-47fe-9010-e0d2c608a798/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"445.416µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c5e3a833-954f-4516-840b-6a0af1760a67\"}\n"} -{"Time":"2022-12-07T09:15:38.062008+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.062031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.062034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"405.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db95acca-0cff-4491-a390-3b204a791fb5\"}\n"} -{"Time":"2022-12-07T09:15:38.067532+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.067549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.067553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.067 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"393.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"84c56d30-72b3-4e9c-8eff-769116b342bf\"}\n"} -{"Time":"2022-12-07T09:15:38.088829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.089255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.089262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.087 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a4ba321c-c8b3-41ad-b07b-c6a80d1608b5\"}\n"} -{"Time":"2022-12-07T09:15:38.100844+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.10087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.100874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.092 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2e510967-600a-43be-b7d3-29617204f6b2\"}\n"} -{"Time":"2022-12-07T09:15:38.102221+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:38.102239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.102242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.102245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.102247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:38.102249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.102251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.102253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteWithParameter862032017/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.102255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"workspace_name\": \"suspicious-sutherland4\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:38.102267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.102268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.101 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.129868+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.12998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.129987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.129 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"6.525125ms\", \"status_code\": 200, \"latency_ms\": 6, \"request_id\": \"a0264cb0-06f4-4762-aa8a-a798088044d0\"}\n"} -{"Time":"2022-12-07T09:15:38.139113+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.139131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.139259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.138 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.1532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.140 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.302375ms\", \"status_code\": 200, \"latency_ms\": 20, \"request_id\": \"0423eb62-6051-4d36-ae08-5c125139073b\"}\n"} -{"Time":"2022-12-07T09:15:38.153222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.140 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.153225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.141 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:38.153227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.141 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.15469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"size_bytes\": 71, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.154702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"size_bytes\": 71, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.154705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.154 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"workspace_name\": \"vigorous-liskov1\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:38.156017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.155 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.156237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.156 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"92433b54-528d-4ede-bbf7-2ef9194ddc5d\", \"name\": \"agent1\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.156323+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:38.156329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.156398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.155 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.156734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.156 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.158658+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.158667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.15873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"624.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"266eec81-d9af-496f-8760-69e112a34be6\"}\n"} -{"Time":"2022-12-07T09:15:38.159137+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.159144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.159147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.404667ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"ec27e70c-19c9-4ad8-8023-0f5ba1710d5e\"}\n"} -{"Time":"2022-12-07T09:15:38.159284+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:38.159288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.15929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.158 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.159294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.159 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.159356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:38.159366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.159 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"request_id\": \"f0791d6c-b44e-4a7d-a69d-f1a7c9a1e3e8\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:38.159658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.159 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.159667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.159 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.159898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.159: cmd: stdout: \"\\x1b[1A\\r✔ Queued [335ms]\"\n"} -{"Time":"2022-12-07T09:15:38.159903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.159: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:38.161538+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.161562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.161569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.161 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"543.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da51a818-4214-4c6b-a24b-308af723f482\"}\n"} -{"Time":"2022-12-07T09:15:38.168957+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.16899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.168994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.168 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a81da908-008b-447c-b4da-401a0276ccb9\"}\n"} -{"Time":"2022-12-07T09:15:38.187141+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.187162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.187165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.186 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.300375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"77d63c84-8090-4d24-a691-870d8e229ccf\"}\n"} -{"Time":"2022-12-07T09:15:38.190949+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:38.190963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:38.190966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"INTERVAL TRANSFER BANDWIDTH \"\n"} -{"Time":"2022-12-07T09:15:38.190969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"0.00-1.01 sec 1107.2963 MBits 1098.7102 Mbits/sec \"\n"} -{"Time":"2022-12-07T09:15:38.19097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"1.01-2.01 sec 1124.0735 MBits 1118.2881 Mbits/sec \"\n"} -{"Time":"2022-12-07T09:15:38.190971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"2.01-3.02 sec 1107.2963 MBits 1104.8458 Mbits/sec \"\n"} -{"Time":"2022-12-07T09:15:38.190973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"3.02-4.02 sec 956.3013 MBits 955.0054 Mbits/sec \"\n"} -{"Time":"2022-12-07T09:15:38.190974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"4.02-5.06 sec 905.9697 MBits 868.1575 Mbits/sec \"\n"} -{"Time":"2022-12-07T09:15:38.190977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"5.06-5.09 sec 16.7772 MBits 667.6558 Mbits/sec \"\n"} -{"Time":"2022-12-07T09:15:38.190978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"-----------------------------------------------------\"\n"} -{"Time":"2022-12-07T09:15:38.190979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:103: 2022-12-07 08:15:38.190: cmd: stdout: \"0.00-5.09 sec 5217.7142 MBits 1026.0495 Mbits/sec \"\n"} -{"Time":"2022-12-07T09:15:38.191274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:38.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaceagents/e10ec02a-e8c3-464a-be15-0d9f6d491e0a/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.14794425s\", \"status_code\": 101, \"latency_ms\": 5147, \"request_id\": \"e2f8810c-e657-433e-a652-e8703c2ca632\"}\n"} -{"Time":"2022-12-07T09:15:38.19148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:38.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.198302541s\", \"status_code\": 0, \"latency_ms\": 5198, \"request_id\": \"ad1cb07e-7815-46cd-96b2-e1d8a0de4e2a\"}\n"} -{"Time":"2022-12-07T09:15:38.191613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:38.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.229148917s\", \"status_code\": 0, \"latency_ms\": 5229, \"request_id\": \"9cfaeb92-600d-4733-9dbc-66bcda530e36\"}\n"} -{"Time":"2022-12-07T09:15:38.191747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:38.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:56555\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.278397584s\", \"status_code\": 101, \"latency_ms\": 5278, \"request_id\": \"b6af8e97-ea4d-407d-be30-82266ade7c98\"}\n"} -{"Time":"2022-12-07T09:15:38.191944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" ptytest.go:80: 2022-12-07 08:15:38.191: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:38.192065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" t.go:81: 2022-12-07 08:15:38.192 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:38.192131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.192137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.192168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.192 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"962a382a-7030-465a-9c3c-fad8ba242b17\"}\n"} -{"Time":"2022-12-07T09:15:38.19289+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest"} -{"Time":"2022-12-07T09:15:38.192895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"=== CONT TestSpeedtest\n"} -{"Time":"2022-12-07T09:15:38.192897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:38.192902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Output":"--- PASS: TestSpeedtest (6.94s)\n"} -{"Time":"2022-12-07T09:15:38.192904+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestSpeedtest","Elapsed":6.94} -{"Time":"2022-12-07T09:15:38.192908+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.192909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.19577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.195 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"129.166µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"91261ac0-8429-4656-9200-90167886d77a\"}\n"} -{"Time":"2022-12-07T09:15:38.195966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.195 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"51.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8c8fd2b0-da5b-44ba-a722-afe5788f1877\"}\n"} -{"Time":"2022-12-07T09:15:38.196821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.196 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"621.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9aaf8f2f-ac50-43bf-b249-f85e369f5205\"}\n"} -{"Time":"2022-12-07T09:15:38.197662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.197 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/organizations/6b1c2cf8-990c-4405-ae1d-3d1583b38128/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"613.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c9c63a01-1167-44dc-bca4-65c401df38ee\"}\n"} -{"Time":"2022-12-07T09:15:38.198047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" create_test.go:284: waiting for template version job ec2be823-036d-4d90-88c8-a39e4bad7408\n"} -{"Time":"2022-12-07T09:15:38.206635+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.206646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.206649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.206 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.206651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.206 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.206655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.206 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.206657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.206 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.210202+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:38.21025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.210263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.210274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Destroying workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.210283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.210307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.21034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:38.210348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Destroying workspace\"}\n"} -{"Time":"2022-12-07T09:15:38.210598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"request_id\": \"f0791d6c-b44e-4a7d-a69d-f1a7c9a1e3e8\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:38.21061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"request_id\": \"f0791d6c-b44e-4a7d-a69d-f1a7c9a1e3e8\", \"stage\": \"Destroying workspace\"}\n"} -{"Time":"2022-12-07T09:15:38.210613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.210 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.210661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.210: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:38.210666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.210: cmd: stdout: \"✔ Setting up [58ms]\"\n"} -{"Time":"2022-12-07T09:15:38.210668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.210: cmd: stdout: \"⧗ \\x1b[;mDestroying workspace\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:38.211837+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.211844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.211848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.211 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"635µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"81553b80-6a55-45ae-963d-bdf046eaf127\"}\n"} -{"Time":"2022-12-07T09:15:38.218801+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.218819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.218823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.218 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"665.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"205ccd9f-6e21-46b2-8858-1be53ea43b18\"}\n"} -{"Time":"2022-12-07T09:15:38.22424+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.224255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.224257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.224 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"442.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"888ce588-99e8-465a-aa8c-8c2141341938\"}\n"} -{"Time":"2022-12-07T09:15:38.236868+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.236888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.236891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.236 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"438.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9a3db6be-ce66-40a9-9bc3-e0131b6a4111\"}\n"} -{"Time":"2022-12-07T09:15:38.242424+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.242437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.242445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.242 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"427.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"769a893a-332c-43a5-86d2-e1f3530a06ea\"}\n"} -{"Time":"2022-12-07T09:15:38.249435+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.249456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.249461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.249 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"444.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5c9c430b-db44-414d-8315-6e2168c805fd\"}\n"} -{"Time":"2022-12-07T09:15:38.257809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.257826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.257829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.257 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.257915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.257 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.257932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.257 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"92433b54-528d-4ede-bbf7-2ef9194ddc5d\", \"name\": \"agent1\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.260888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:38.2609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.260902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.260 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.260906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.260 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.261217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.260 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.261245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.260 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.261252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Destroying workspace\"}\n"} -{"Time":"2022-12-07T09:15:38.261258+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.261262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.261266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"166e0e02-2376-421a-881f-f950042db070\"}\n"} -{"Time":"2022-12-07T09:15:38.261274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:38.261279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.261282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:38.261305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.261 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.261312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"request_id\": \"f0791d6c-b44e-4a7d-a69d-f1a7c9a1e3e8\", \"stage\": \"Destroying workspace\"}\n"} -{"Time":"2022-12-07T09:15:38.261317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\", \"request_id\": \"f0791d6c-b44e-4a7d-a69d-f1a7c9a1e3e8\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:38.262267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.261: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:38.262282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.261: cmd: stdout: \"✔ Destroying workspace [51ms]\"\n"} -{"Time":"2022-12-07T09:15:38.262285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.261: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:38.262287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" delete_test.go:42: 2022-12-07 08:15:38.261: cmd: matched \"Cleaning Up\" = \"⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [335ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n \\r\\n✔ Setting up [58ms]\\r\\n⧗ \\x1b[;mDestroying workspace\\x1b[0m \\r\\n \\r\\n✔ Destroying workspace [51ms]\\r\\n⧗ \\x1b[;mCleaning Up\"\n"} -{"Time":"2022-12-07T09:15:38.267733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.267746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.267749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"379.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b9f50b74-0612-47c4-b72c-b9e10665fb31\"}\n"} -{"Time":"2022-12-07T09:15:38.274339+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.274352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.274356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.274 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"332.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f2b273c-78cc-48cb-8e24-3f0fb8469540\"}\n"} -{"Time":"2022-12-07T09:15:38.286888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.286904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.286907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.286 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"412µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1c78b051-85f9-4c8f-bee9-5d34e967e87a\"}\n"} -{"Time":"2022-12-07T09:15:38.292693+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.292709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.292713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.292 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f37f3c0b-884f-43b2-b96b-f541ba5e2abe\"}\n"} -{"Time":"2022-12-07T09:15:38.295259+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.295294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.295298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.295 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:38.29902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.298 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6887cc3a-7511-48cc-b124-16b26990239f\"}\n"} -{"Time":"2022-12-07T09:15:38.30886+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.308875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.308878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.308 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.308882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.308 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.308886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.308 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.308909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.308 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.308957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.308 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.311043+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.311051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.311068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1414976b-45bf-45dc-8e6d-02cba32fd9ee\"}\n"} -{"Time":"2022-12-07T09:15:38.311184+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter"} -{"Time":"2022-12-07T09:15:38.311195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":"=== CONT TestDelete/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.311198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.311 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.311216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.311 [DEBUG]\t(provisionerd-xenodochial_snyder8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.311245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.311 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.311272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.311 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.311297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.311 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"0c92a231-5f82-4156-b025-2559b52e19fb\"}\n"} -{"Time":"2022-12-07T09:15:38.311438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.311 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/38bff926-db52-43c9-b706-b39da94a4d02/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"543.940167ms\", \"status_code\": 101, \"latency_ms\": 543, \"request_id\": \"f0791d6c-b44e-4a7d-a69d-f1a7c9a1e3e8\"}\n"} -{"Time":"2022-12-07T09:15:38.312795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.312 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57261\", \"path\": \"/api/v2/workspacebuilds/38bff926-db52-43c9-b706-b39da94a4d02\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d9aba017-4aec-4e53-aaa8-c024247d7e86\"}\n"} -{"Time":"2022-12-07T09:15:38.312953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:80: 2022-12-07 08:15:38.312: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:38.312985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.312: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [101ms]\"\n"} -{"Time":"2022-12-07T09:15:38.313011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.312 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:38.313788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:38.313798+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.313801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.316382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.316 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"120.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b3a76491-1666-486e-8dce-4fea3adcbc26\"}\n"} -{"Time":"2022-12-07T09:15:38.316608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.316 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"41.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b8b32441-c9c6-4b88-aff8-55c02037c04c\"}\n"} -{"Time":"2022-12-07T09:15:38.317316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.317 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"483.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"42eff431-4ff1-4655-8bf7-044a00d1de61\"}\n"} -{"Time":"2022-12-07T09:15:38.317666+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.31768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.317684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.317 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"477.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6ca4d242-d28a-4d5d-a1ea-85579f0b4578\"}\n"} -{"Time":"2022-12-07T09:15:38.318074+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.318078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.318093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/organizations/4aaac6c5-017b-4825-bbd6-6f278c5be46f/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"593.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b2e795c9-7f7e-4789-b586-56a03f1fd0fe\"}\n"} -{"Time":"2022-12-07T09:15:38.318225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" create_test.go:235: waiting for template version job 70dca871-c096-4c7f-ad42-777ccd59f81d\n"} -{"Time":"2022-12-07T09:15:38.324907+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.324916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.324918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.324 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"410.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b4379f3-d95c-4e74-b254-38f1b5ee7522\"}\n"} -{"Time":"2022-12-07T09:15:38.337404+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.337419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.337422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.337 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"447.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"161df952-247f-46e6-a206-337e0c52b36c\"}\n"} -{"Time":"2022-12-07T09:15:38.342452+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.342463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.342466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.342 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3309dae9-5e9a-4f10-836d-0683c1de8dbd\"}\n"} -{"Time":"2022-12-07T09:15:38.343783+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.343796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.343799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.343 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"315.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ca862f4f-a3e2-43ce-8e94-b9628d890f8c\"}\n"} -{"Time":"2022-12-07T09:15:38.343897+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:38.343908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:38.343912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.343 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.343979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.343 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.344029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.343 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:38.344048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.344 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.344071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.344 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.344093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.344 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateOK2121445123/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.34411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.344 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:38.344228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.344 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.344234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.344 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.345327+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.345331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.345333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.345 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.345376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.345 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.345445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.345 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"size_bytes\": 2048}\n"} -{"Time":"2022-12-07T09:15:38.345452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.345 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"size_bytes\": 48, \"path\": \"/tmp/TestCreateFailedDryRun950971466/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.345482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.345 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFailedDryRun950971466/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.34552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.345 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.345578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.345 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"parameter_schemas\": [{\"name\": \"echo.exec\", \"description\": \"description 1\", \"default_source\": {\"value\": \"success=\"}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} -{"Time":"2022-12-07T09:15:38.353206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.353 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fb64b019-86d4-44be-98cb-4d6799831143\"}\n"} -{"Time":"2022-12-07T09:15:38.361688+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.361706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.361709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.361 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.361712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.361 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.361714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.361 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.361716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.361 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.361718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.361 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.362835+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.36285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.362854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"418.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"15406ddb-88c4-4fbd-b647-26daa8e445f0\"}\n"} -{"Time":"2022-12-07T09:15:38.367568+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.367597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.367601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.367 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cabcc0da-7eed-4227-9209-21660afa1141\"}\n"} -{"Time":"2022-12-07T09:15:38.368952+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.368961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.368963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.368 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"45d75a10-ebea-4463-b20a-0948f7435705\"}\n"} -{"Time":"2022-12-07T09:15:38.373942+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.373957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.373961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.373 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"379.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"66d55633-977c-42c0-8368-9e7848214adb\"}\n"} -{"Time":"2022-12-07T09:15:38.386878+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.386898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.386902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e3a616ba-1896-44b6-9c51-07ad406bd8d7\"}\n"} -{"Time":"2022-12-07T09:15:38.393025+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.393042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.393045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.392 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"983.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b371977-a253-4bee-958a-9ad52c377ce7\"}\n"} -{"Time":"2022-12-07T09:15:38.393824+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.393831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.393834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.393 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ca4ab56-bd32-455b-8188-f020f72e3cf3\"}\n"} -{"Time":"2022-12-07T09:15:38.39402+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.394023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.394027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.393 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.625µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:38.394969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:38.394994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:38.395001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.394 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.395008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.394 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.395014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.394 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.395019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.394 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.395024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.394 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:38.395029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.394 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"request_id\": \"0ccfc74a-fd75-4a21-aeab-c8631dd08f9f\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:38.395725+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.395736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.395741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.395 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.395845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.395 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.399131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.399 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"381.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e379b45-06e3-4be5-9947-9a86656e3f4a\"}\n"} -{"Time":"2022-12-07T09:15:38.410855+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.410873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.410877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"366.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c19c1f5d-3f16-4da1-aef6-28c8483d60ad\"}\n"} -{"Time":"2022-12-07T09:15:38.411917+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.41193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.411934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.411 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.411941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.411 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"1044911b-3084-4587-b913-51c5f1e98cab\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:38.41198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.411 [DEBUG]\t(provisionerd-wizardly_brown0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.412009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.411 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"7fabd7dc-fb87-4df8-b0ed-c05d363e46e9\"}\n"} -{"Time":"2022-12-07T09:15:38.416099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.416104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.416107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.416 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:38.417113+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.417119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.417122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.417 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspacebuilds/1044911b-3084-4587-b913-51c5f1e98cab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"413.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e1190c55-eded-479d-baa0-d03860c63839\"}\n"} -{"Time":"2022-12-07T09:15:38.41882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.418831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.418834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.418 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"342.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5597494e-8af3-4073-9706-875146322929\"}\n"} -{"Time":"2022-12-07T09:15:38.419089+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.4191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.419102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.419 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18.792µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"e9388a1f-a547-40a3-b5a4-b5e69ba2a09b\"}\n"} -{"Time":"2022-12-07T09:15:38.419328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.419 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"83649a32-c840-4618-bbb7-3a017063110c\"}\n"} -{"Time":"2022-12-07T09:15:38.424027+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.424041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.424044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.423 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b83625b-2b15-44c5-97f1-b363ff6e733a\"}\n"} -{"Time":"2022-12-07T09:15:38.424737+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent"} -{"Time":"2022-12-07T09:15:38.424749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_one_agent\n"} -{"Time":"2022-12-07T09:15:38.424751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.424 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.190042ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"82c20ee1-025c-419f-8599-f4b577dd815e\"}\n"} -{"Time":"2022-12-07T09:15:38.425297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.425 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57303\", \"path\": \"/api/v2/templateversions/c53feb1c-f7e8-4b24-83b7-9217b74882c7/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"427189fc-fdb3-49c7-ae1f-a474a42f6188\"}\n"} -{"Time":"2022-12-07T09:15:38.42545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} -{"Time":"2022-12-07T09:15:38.425457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.42546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:38.425462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.425508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" configssh_test.go:694: 2022-12-07 08:15:38.425: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_Hostnamesone_resource_with_one_agent4137692999/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} -{"Time":"2022-12-07T09:15:38.42552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" configssh_test.go:695: 2022-12-07 08:15:38.425: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:38.425526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:38.425624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.425944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} -{"Time":"2022-12-07T09:15:38.425951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"For example, try running:\"\n"} -{"Time":"2022-12-07T09:15:38.425952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.425954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:38.425: cmd: stdout: \"\\t$ ssh coder.vigorous-liskov1\"\n"} -{"Time":"2022-12-07T09:15:38.425957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" ptytest.go:80: 2022-12-07 08:15:38.425: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:38.426002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:38.425 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:38.42714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:38.427171+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.427176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.4298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"129.666µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b00f2398-1299-4586-9e4a-fa747814d880\"}\n"} -{"Time":"2022-12-07T09:15:38.429991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"46.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"85d6164d-329a-4235-996f-abcc36b36ca1\"}\n"} -{"Time":"2022-12-07T09:15:38.430595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.430 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.334µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7549db42-dafd-4e1b-b842-ce383d708c57\"}\n"} -{"Time":"2022-12-07T09:15:38.431387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.431 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/organizations/0d9eaf0f-21c1-468a-aefe-4d9034f5d152/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"663.083µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1bb01d42-6d38-4aae-9080-c85988d0f221\"}\n"} -{"Time":"2022-12-07T09:15:38.431477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" create_test.go:193: waiting for template version job 91a5294f-6f72-4f6b-93b7-c6875587a98c\n"} -{"Time":"2022-12-07T09:15:38.436575+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.436586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.436588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.436 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8915c560-9249-45a4-ab5f-d97529d7f992\"}\n"} -{"Time":"2022-12-07T09:15:38.444376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.444382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.444392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.444 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"481.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e1540b6-7716-44cc-a1c6-9797f8c776ef\"}\n"} -{"Time":"2022-12-07T09:15:38.4451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:38.445111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:38.445114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.445189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.445213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.445 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.445918+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.445923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.445925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.445929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.445945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.445957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.44597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.445991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.446004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.445 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.446117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.446 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.446122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.446 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.450398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.450 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"610.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e28bcff2-f1be-4e12-8230-2d870e16fefd\"}\n"} -{"Time":"2022-12-07T09:15:38.457251+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.457263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.457266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5c9e387d-4f2e-4086-be37-0aa4d58e43cc\"}\n"} -{"Time":"2022-12-07T09:15:38.461124+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.461239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.461251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.461 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3aa5007b-d76c-463e-9136-f258d107dfef\"}\n"} -{"Time":"2022-12-07T09:15:38.466863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.466878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.466881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.466 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.4669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.466 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.466993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.466 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:38.467022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.466 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"size_bytes\": 81, \"path\": \"/tmp/TestCreateWithParameterFileNotContainingTheValue3759668421/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.467041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.467 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileNotContainingTheValue3759668421/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.467073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.467 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileNotContainingTheValue3759668421/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.46708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.467 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.467209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.467 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description 1\", \"default_source\": {\"value\": \"something\"}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}, {\"name\": \"username\", \"description\": \"description 2\", \"default_source\": {}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} -{"Time":"2022-12-07T09:15:38.468843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.468 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bb437381-d28f-4617-86cb-b130550962ad\"}\n"} -{"Time":"2022-12-07T09:15:38.474015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.474023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.474026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.473 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7176affc-ec6d-4ce8-8116-17865c7f3dc3\"}\n"} -{"Time":"2022-12-07T09:15:38.483176+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.483191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.483194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.483 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"796c9e6d-5deb-4b85-b478-48db146ba9cc\"}\n"} -{"Time":"2022-12-07T09:15:38.485911+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.485925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.485927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.485 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"326.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8f22d98c-8c88-4435-9d87-c669176b1fcf\"}\n"} -{"Time":"2022-12-07T09:15:38.494257+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.494272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.494276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.494 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1061edea-4cbf-4130-9b15-8cffd017ddbc\"}\n"} -{"Time":"2022-12-07T09:15:38.495463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:38.495469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:38.495472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.495482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.495487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.495491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.49555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:38.495585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:38.495632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.495635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"request_id\": \"0ccfc74a-fd75-4a21-aeab-c8631dd08f9f\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:38.495637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.495 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"request_id\": \"0ccfc74a-fd75-4a21-aeab-c8631dd08f9f\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:38.496246+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.496252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.496254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.496 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.49626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.496 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.496281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.496 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.4963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.496 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.496318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.496 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.496361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.496 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.498764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.498 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"82b0d949-ac07-4b10-b2a5-cecc38d8289d\"}\n"} -{"Time":"2022-12-07T09:15:38.507884+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.5079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.507904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.507 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39486518-e225-4829-8c1a-ebde48df7d14\"}\n"} -{"Time":"2022-12-07T09:15:38.510926+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.510938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.510941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"333.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6af34c5e-dcff-4f82-8989-b636f8f31c43\"}\n"} -{"Time":"2022-12-07T09:15:38.515393+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.515404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.515406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.515 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"11.542µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:38.517428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.517 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.517579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.517 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.518847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.518 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"307.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6deab245-5cc5-4351-86f2-c663eeeec67f\"}\n"} -{"Time":"2022-12-07T09:15:38.523899+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.52391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.523913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"294.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9b4448c7-45d7-4964-9d5d-0497a3f6c7ea\"}\n"} -{"Time":"2022-12-07T09:15:38.529101+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.529116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.529119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.529 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:38.5323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"339.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e04bbe93-be93-4c56-a512-4e603b3dccb2\"}\n"} -{"Time":"2022-12-07T09:15:38.536082+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.536096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.536099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"376.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e36055ad-b460-4423-9367-e5fcee52dff0\"}\n"} -{"Time":"2022-12-07T09:15:38.544195+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.544207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.54421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.544 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d97cf29-f993-418c-b509-cb469911e9a9\"}\n"} -{"Time":"2022-12-07T09:15:38.545877+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:38.545883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:38.545893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.545896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.545912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.545975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.545998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:38.546004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.546007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:38.546021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.545 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"request_id\": \"0ccfc74a-fd75-4a21-aeab-c8631dd08f9f\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:38.546087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.546 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\", \"request_id\": \"0ccfc74a-fd75-4a21-aeab-c8631dd08f9f\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:38.54645+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.546455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.546457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.546 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.546469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.546 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.546479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.546 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.546514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.546 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"ec943d09-d722-4fb9-832a-15dae9451fb6\"}\n"} -{"Time":"2022-12-07T09:15:38.54867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.548 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58ff585a-8b0a-4dc4-a544-953e85f41a95\"}\n"} -{"Time":"2022-12-07T09:15:38.54911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.549 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/organizations/6b1c2cf8-990c-4405-ae1d-3d1583b38128/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"310da640-ab2f-46ce-8901-7db33fd1e28b\"}\n"} -{"Time":"2022-12-07T09:15:38.551094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"db8d4978-0dc5-41ff-a9ab-d390eaa37cbf\"}\n"} -{"Time":"2022-12-07T09:15:38.551249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49c99714-869d-4582-a9c8-ccbe3e1afecd\"}\n"} -{"Time":"2022-12-07T09:15:38.551711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"317.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"068962a9-bdcb-408b-b99f-e0e7735fbdb2\"}\n"} -{"Time":"2022-12-07T09:15:38.551862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/users/me/workspace/test\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"25µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"97c7dda5-9261-4ebd-a3a1-fa42e9b3925c\"}\n"} -{"Time":"2022-12-07T09:15:38.551992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.551: cmd: stdout: \"Select a template below to preview the provisioned infrastructure: \"\n"} -{"Time":"2022-12-07T09:15:38.557191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/organizations/6b1c2cf8-990c-4405-ae1d-3d1583b38128/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.124333ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"222f4975-e7d6-44bf-9070-38ba58168d9a\"}\n"} -{"Time":"2022-12-07T09:15:38.557572+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.557586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.557589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24a54e7d-39b8-4ca8-9558-9abfe7f78e96\"}\n"} -{"Time":"2022-12-07T09:15:38.557793+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.5578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.557802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"35068c09-d2e1-4011-9a9a-99c23080d2f4\"}\n"} -{"Time":"2022-12-07T09:15:38.558325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.558 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"adf9ae5a-8f16-450d-9dbd-cf39f67f479d\"}\n"} -{"Time":"2022-12-07T09:15:38.558459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:38.558495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \" Attempting to read the variables from the parameter file. \\r\"\n"} -{"Time":"2022-12-07T09:15:38.558497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.558501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:38.558504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \" This template has customizable parameters. Values can be \"\n"} -{"Time":"2022-12-07T09:15:38.558506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \" changed after create, but may have unintended side effects\"\n"} -{"Time":"2022-12-07T09:15:38.558508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \" (like data loss). \\r\"\n"} -{"Time":"2022-12-07T09:15:38.55851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.558514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.558: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.55912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.559 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"533.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4e17aaa0-b650-4bba-be39-6ad54fc49e60\"}\n"} -{"Time":"2022-12-07T09:15:38.559262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.559: cmd: stdout: \"Planning workspace...\"\n"} -{"Time":"2022-12-07T09:15:38.559267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.559: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:38.55982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.559 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408/dry-run/4def467b-7be9-4b42-984a-c5236507cd43\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"507.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a4c2daa-0f1e-418d-b9cb-a3fb035c7a8f\"}\n"} -{"Time":"2022-12-07T09:15:38.560701+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.560725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.56073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.560 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"331b273c-089c-44c0-8393-fca569229747\"}\n"} -{"Time":"2022-12-07T09:15:38.568382+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.568393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.568396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.5684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.568403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.568498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.568504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.568507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.568509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.568641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.568662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.568943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.568 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"433.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e469f946-4957-43f9-abae-80ec15de5715\"}\n"} -{"Time":"2022-12-07T09:15:38.58022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.58023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.580233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.580282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.580337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:38.580368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"size_bytes\": 81, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.580408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.580412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.580419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.580583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.580 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description 1\", \"default_source\": {\"value\": \"something\"}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}, {\"name\": \"username\", \"description\": \"description 2\", \"default_source\": {}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} -{"Time":"2022-12-07T09:15:38.582184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.582 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"309.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7c36dd4-ef32-414b-ba56-a1826c3ecdf1\"}\n"} -{"Time":"2022-12-07T09:15:38.586097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.58611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.586113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7854ef12-1fc1-4930-bffe-81dae4c43b99\"}\n"} -{"Time":"2022-12-07T09:15:38.593809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.59382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.593823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.593 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"277e8239-0db9-4795-ac4e-4033dad84922\"}\n"} -{"Time":"2022-12-07T09:15:38.596332+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK"} -{"Time":"2022-12-07T09:15:38.596337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":"=== CONT TestUpdate/OK\n"} -{"Time":"2022-12-07T09:15:38.596339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.596 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.596372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.596 [DEBUG]\t(provisionerd-xenodochial_mclaren3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.596411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.596 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.596424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.596 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.596464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.596 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"0ad2dc60-8cf0-4e3c-b5cd-ed9f673e8aae\"}\n"} -{"Time":"2022-12-07T09:15:38.596675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.596 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/workspacebuilds/bb653152-7c81-4998-ac09-e9841c84c464/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"550.727625ms\", \"status_code\": 101, \"latency_ms\": 550, \"request_id\": \"0ccfc74a-fd75-4a21-aeab-c8631dd08f9f\"}\n"} -{"Time":"2022-12-07T09:15:38.597993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.597 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57184\", \"path\": \"/api/v2/users/testuser/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cfcb9f0d-46fe-4ddf-a66e-497f6e0f90a5\"}\n"} -{"Time":"2022-12-07T09:15:38.598115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" t.go:81: 2022-12-07 08:15:38.598 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:38.598996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:38.599031+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.599036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.601787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.601 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"105.709µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"16f17f16-1cc2-4303-a0ad-399a5d4ecc63\"}\n"} -{"Time":"2022-12-07T09:15:38.602096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.602 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"50.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"fae87bb6-8ea7-47b1-814f-5397faceb2b3\"}\n"} -{"Time":"2022-12-07T09:15:38.602677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.602 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8a70af32-8111-4b5a-9ea0-1c2650f0b624\"}\n"} -{"Time":"2022-12-07T09:15:38.603448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/organizations/b342410a-6ffc-46ec-89b1-7a1f653b07c7/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"529.584µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"10946ff9-a6a1-46e3-b53f-5b894cafa529\"}\n"} -{"Time":"2022-12-07T09:15:38.603538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:152: waiting for template version job cd65d9c1-e474-4155-a0a5-8ee3d958bf82\n"} -{"Time":"2022-12-07T09:15:38.608135+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.608147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.60815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.608 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"425.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e9d8befc-6875-448f-a879-1cec9c54ed4b\"}\n"} -{"Time":"2022-12-07T09:15:38.61172+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.611729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.611732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.611 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"475.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d95baec1-a040-4870-8db6-83c883b16472\"}\n"} -{"Time":"2022-12-07T09:15:38.619073+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.619087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.61909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.619 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.619093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.619 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.619099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.619 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.619131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.619 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.619145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.619 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.619238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.619 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.620384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.620 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"434.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9d50e1d8-88a5-4bda-a174-71ff0735746e\"}\n"} -{"Time":"2022-12-07T09:15:38.629295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.629311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.629314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.629 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"9.25µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:38.629696+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.629701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.629703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.629 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"326.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c783ab0e-2cbd-4fd5-8244-dda8f3ecbaed\"}\n"} -{"Time":"2022-12-07T09:15:38.629959+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.629966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.629968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.629 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.630053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.630073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:38.630109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHLocal_SSH_Keys814253385/003/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.630131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"size_bytes\": 68, \"path\": \"/tmp/TestGitSSHLocal_SSH_Keys814253385/003/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.630152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"size_bytes\": 2, \"path\": \"/tmp/TestGitSSHLocal_SSH_Keys814253385/003/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.630176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"workspace_name\": \"gracious-northcutt2\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:38.63026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.630273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.630 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.630679+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.630684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.630687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.630 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.630802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.630 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.632125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2282f50e-6489-4d0d-8fbb-95c3ddd9962c\"}\n"} -{"Time":"2022-12-07T09:15:38.636053+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.636063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.636066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d2df7efc-81aa-4923-b563-d29bde6b4f90\"}\n"} -{"Time":"2022-12-07T09:15:38.64401+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.64402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.644023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.643 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57bf20f6-d970-4cc4-90db-ed9cc955af11\"}\n"} -{"Time":"2022-12-07T09:15:38.655233+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.655248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.655252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.655 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"365.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ef12d38d-b744-437e-9050-321b0fe40228\"}\n"} -{"Time":"2022-12-07T09:15:38.657083+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.657097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.6571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.657 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"41000ede-76ba-4b66-87d3-e439bdcc1790\"}\n"} -{"Time":"2022-12-07T09:15:38.661162+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.661174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.661177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"369.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f76710aa-54c0-4116-9f2a-b75606175f82\"}\n"} -{"Time":"2022-12-07T09:15:38.669387+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue"} -{"Time":"2022-12-07T09:15:38.669397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileNotContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.6694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.669 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.669405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.669 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.669417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.669 [DEBUG]\t(provisionerd-blissful_bhabha9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.669485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.669 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"accc750a-9ceb-4489-98dc-a68dda32808c\"}\n"} -{"Time":"2022-12-07T09:15:38.669626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.669 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49f4365b-b02c-4a2b-83c9-b1ee50b4f641\"}\n"} -{"Time":"2022-12-07T09:15:38.670107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.670 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/organizations/4aaac6c5-017b-4825-bbd6-6f278c5be46f/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"53bbd75c-988e-49b2-b59c-52973f066efd\"}\n"} -{"Time":"2022-12-07T09:15:38.672137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.672 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.708µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"024341b9-49cf-4e9e-8ab6-53f588a4a1a7\"}\n"} -{"Time":"2022-12-07T09:15:38.672329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.672 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d34e5bf7-a0f3-4161-afe0-f0dcf5ae37c3\"}\n"} -{"Time":"2022-12-07T09:15:38.672799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.672 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"02e0faea-4b11-44b4-8988-87bf8d278bd4\"}\n"} -{"Time":"2022-12-07T09:15:38.672974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.672 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.167µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"013da7a8-9451-4805-8453-237813d6ae4d\"}\n"} -{"Time":"2022-12-07T09:15:38.673505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/organizations/4aaac6c5-017b-4825-bbd6-6f278c5be46f/templates/great-jemison2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"08187549-883e-43d1-8c7e-e07afeb2daa2\"}\n"} -{"Time":"2022-12-07T09:15:38.673953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"748e5c4f-7d56-40e3-b157-f57559ad4468\"}\n"} -{"Time":"2022-12-07T09:15:38.674427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.674 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57329\", \"path\": \"/api/v2/templateversions/70dca871-c096-4c7f-ad42-777ccd59f81d/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"269.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ac3e7626-c6d2-4084-be32-cf1985b36f3d\"}\n"} -{"Time":"2022-12-07T09:15:38.674659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:38.67467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \" Attempting to read the variables from the parameter file. \\r\"\n"} -{"Time":"2022-12-07T09:15:38.674672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.674674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:38.674676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \" This template has customizable parameters. Values can be \"\n"} -{"Time":"2022-12-07T09:15:38.674678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \" changed after create, but may have unintended side effects\"\n"} -{"Time":"2022-12-07T09:15:38.674679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \" (like data loss). \\r\"\n"} -{"Time":"2022-12-07T09:15:38.674681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.674: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.674685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" ptytest.go:80: 2022-12-07 08:15:38.674: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:38.674873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.674 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:38.675444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:38.67547+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.675473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.677937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.677 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"95.166µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e7503107-aada-40cd-9420-6b79a9340233\"}\n"} -{"Time":"2022-12-07T09:15:38.678147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.678 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d89808b7-c896-4dbc-868f-1c3882f136c3\"}\n"} -{"Time":"2022-12-07T09:15:38.678733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.678 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"378µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"59a8eced-af4d-4153-8737-c0b451c5ebad\"}\n"} -{"Time":"2022-12-07T09:15:38.679476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.679 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/organizations/11c9282c-985b-41b5-841f-d468db51bba6/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"507.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ca590153-d9e3-436c-b3b4-98ace08cb92a\"}\n"} -{"Time":"2022-12-07T09:15:38.67957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" create_test.go:108: waiting for template version job 67fe052d-d643-4f71-a35b-ee3efde22c3c\n"} -{"Time":"2022-12-07T09:15:38.679633+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.679636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.679638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.679 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61565d8b-34c5-487b-86fd-59ecf91e0970\"}\n"} -{"Time":"2022-12-07T09:15:38.68043+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.680435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.680437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.680441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.680456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.680473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.680833+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.680841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.680844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.680847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.680877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.680885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.680899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.680924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.680941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.680 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.681083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.681 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.681091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.681 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.683241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.683 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"060b2860-8065-4b79-b123-d4b31101b3bb\"}\n"} -{"Time":"2022-12-07T09:15:38.686659+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.68667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.686673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.686 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"487.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8d973586-9fce-44b3-804d-9527f7541f42\"}\n"} -{"Time":"2022-12-07T09:15:38.701956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.70197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.701972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.701 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:38.704316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.704 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"346.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"edfa8c91-1099-46bb-9176-b41f4bf4be62\"}\n"} -{"Time":"2022-12-07T09:15:38.705082+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.70509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.705093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"336.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"94b1543d-7f76-49d9-b4b3-7c0de6e92597\"}\n"} -{"Time":"2022-12-07T09:15:38.707045+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.707051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.707054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.707 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"279.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0f73ef84-7b19-4050-aee9-c421bf3cc0b5\"}\n"} -{"Time":"2022-12-07T09:15:38.711111+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.711122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.711125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.711 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7f6cb94d-7156-45bf-8926-86d2f0e45ed4\"}\n"} -{"Time":"2022-12-07T09:15:38.730389+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.730406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.730409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"329.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4546a161-4e12-4e5d-9819-4e1293c0bcc4\"}\n"} -{"Time":"2022-12-07T09:15:38.730415+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.730416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.730426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3992b3d0-8952-435e-8615-f211478bfe37\"}\n"} -{"Time":"2022-12-07T09:15:38.730585+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.730597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.7306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.730 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.730705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.730 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.730756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.730 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"Token\": \"12bbf2d0-6240-489e-b3b5-9fdb18a10a40\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.731273+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.731278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.731281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.731 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.731285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.731 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.731351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.731 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.731355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.731 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.731357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.731 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.731404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.731 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.732098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.732 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2873ad80-53e1-4962-829b-a450bab055e9\"}\n"} -{"Time":"2022-12-07T09:15:38.736178+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.736188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.736191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"402.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c29b6e1e-d07c-4e0d-b763-f9dfcad8a604\"}\n"} -{"Time":"2022-12-07T09:15:38.753226+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.753283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.753293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.753305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.753341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:38.75335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"size_bytes\": 81, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.753399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.753405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.75342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.753572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.753 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description 1\", \"default_source\": {\"value\": \"something\"}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}, {\"name\": \"username\", \"description\": \"description 2\", \"default_source\": {}, \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} -{"Time":"2022-12-07T09:15:38.754508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c089eef-1219-4d2e-9fd6-1814503b997b\"}\n"} -{"Time":"2022-12-07T09:15:38.755103+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.755112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.755114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.755 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"288.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"108a7daf-0471-4b25-831a-9330472a928d\"}\n"} -{"Time":"2022-12-07T09:15:38.757207+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.757219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.757222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"312.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f69775e6-d81a-4f75-96ba-664333a7f548\"}\n"} -{"Time":"2022-12-07T09:15:38.760926+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.760936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.760941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a576d771-c889-4816-b40b-e4ab86d392f8\"}\n"} -{"Time":"2022-12-07T09:15:38.77829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.778307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.778311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.778 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:38.779318+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.779332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.779335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.779 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"383.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ef1a3151-491a-4c01-9d9e-dba8196678c0\"}\n"} -{"Time":"2022-12-07T09:15:38.780114+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.780122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.780125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.780 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"355.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bdd720bd-08ba-49b6-b1ce-08b93f1f140f\"}\n"} -{"Time":"2022-12-07T09:15:38.780922+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.780929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.780931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.780 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.780936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.780 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.780975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.780 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.780981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.780 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.781024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.780 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.781615+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.781622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.781625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.781 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.78163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.781 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.781632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.781 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.78167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.781 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"00e61b0f-ba4a-463a-880c-6c17e4803e7e\"}\n"} -{"Time":"2022-12-07T09:15:38.781884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.781 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eb07d1c8-138d-4747-9e3a-bf490b39700c\"}\n"} -{"Time":"2022-12-07T09:15:38.782564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.782 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/organizations/0d9eaf0f-21c1-468a-aefe-4d9034f5d152/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bfde44c0-7f3c-4e8b-a3e0-563226be43b0\"}\n"} -{"Time":"2022-12-07T09:15:38.784742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.784 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"19.959µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"78f1ce6a-83eb-47bf-ad0a-19a6dde3f08f\"}\n"} -{"Time":"2022-12-07T09:15:38.784905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.784 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"556c4fd5-bb43-4cbf-a7fd-d466b076874e\"}\n"} -{"Time":"2022-12-07T09:15:38.785466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3c2d41b8-4830-4d4a-9b57-13b93e80db17\"}\n"} -{"Time":"2022-12-07T09:15:38.785596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" create_test.go:218: 2022-12-07 08:15:38.785: cmd: matched \"Specify a name\" = \"\u003e Specify a name\"\n"} -{"Time":"2022-12-07T09:15:38.785604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.785607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.785609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"307.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4aa672ba-5c2e-44e3-9591-d7db3f7d7fed\"}\n"} -{"Time":"2022-12-07T09:15:38.785612+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:38.785613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:38.785628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" create_test.go:219: 2022-12-07 08:15:38.785: cmd: stdin: \"my-workspace\\r\"\n"} -{"Time":"2022-12-07T09:15:38.785699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.785: cmd: stdout: \"\u003e Specify a name for your workspace: my-workspace\"\n"} -{"Time":"2022-12-07T09:15:38.785829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"32.334µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"b3154148-fa19-43af-9b1b-40b63ddba6b5\"}\n"} -{"Time":"2022-12-07T09:15:38.786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"21.708µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"ca14b26a-92e6-405a-a64a-896fc85800f9\"}\n"} -{"Time":"2022-12-07T09:15:38.786091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.786: cmd: stdout: \"Select a template below to preview the provisioned infrastructure: \"\n"} -{"Time":"2022-12-07T09:15:38.791268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.791 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/organizations/0d9eaf0f-21c1-468a-aefe-4d9034f5d152/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.094792ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"1bddbe46-ce6a-4850-bfd8-2bdae067ec45\"}\n"} -{"Time":"2022-12-07T09:15:38.791765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.791 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"307e6386-7fe5-4487-a884-6cf71b6659c2\"}\n"} -{"Time":"2022-12-07T09:15:38.792171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.792 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"250.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"065206b3-63fc-4d35-a046-bf3120558cb2\"}\n"} -{"Time":"2022-12-07T09:15:38.792301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:38.792307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \" Attempting to read the variables from the parameter file. \\r\"\n"} -{"Time":"2022-12-07T09:15:38.792309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.79243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:38.79244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \" This template has customizable parameters. Values can be \"\n"} -{"Time":"2022-12-07T09:15:38.792442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \" changed after create, but may have unintended side effects\"\n"} -{"Time":"2022-12-07T09:15:38.792444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \" (like data loss). \\r\"\n"} -{"Time":"2022-12-07T09:15:38.792446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.792452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.792: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.793091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.793 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6709109c-7182-48e9-afc1-fa3acef9b038\"}\n"} -{"Time":"2022-12-07T09:15:38.793247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.793: cmd: stdout: \"Planning workspace...\"\n"} -{"Time":"2022-12-07T09:15:38.793252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:38.793: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:38.793867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:38.793 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c/dry-run/67a0ee0e-4df0-409b-a655-d096c176405b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"512.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a38c7e3-8695-41a3-a816-f22764e9df01\"}\n"} -{"Time":"2022-12-07T09:15:38.800431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.800445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.800448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.800 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.209µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:38.804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.803 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.804083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.804 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.804519+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:38.804532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:38.804535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ptytest.go:103: 2022-12-07 08:15:38.804: cmd: stdout: \"\\x1b[1m\\x1b[7m%\\x1b[27m\\x1b[1m\\x1b[0m \\r \\rdirenv: unloading\\r\"\n"} -{"Time":"2022-12-07T09:15:38.804538+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.804539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.804541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"341066e7-5979-4969-a953-956cf5ec16ce\"}\n"} -{"Time":"2022-12-07T09:15:38.805056+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.805061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.805064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.805 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"285.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d31fdcf-97c5-478f-becc-33f18f94e5de\"}\n"} -{"Time":"2022-12-07T09:15:38.810967+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.810982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.810985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.810 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"437.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dca3f74a-5dd5-4998-a81c-d41c608091bb\"}\n"} -{"Time":"2022-12-07T09:15:38.819389+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:38.819406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:38.819409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.819: cmd: stdout: \"\\x1b[1m\\x1b[7m%\\x1b[27m\\x1b[1m\\x1b[0m \\r \\rdirenv: unloading\\r\"\n"} -{"Time":"2022-12-07T09:15:38.821648+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.821655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.821657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.821 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} -{"Time":"2022-12-07T09:15:38.821746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.821 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} -{"Time":"2022-12-07T09:15:38.821779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.821 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"size_bytes\": 2048}\n"} -{"Time":"2022-12-07T09:15:38.821831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.821 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"size_bytes\": 48, \"path\": \"/tmp/TestCreateFailedDryRun950971466/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.821837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.821 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFailedDryRun950971466/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.821849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.821 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"workspace_name\": \"test\", \"parameters\": [{\"destination_scheme\": 1, \"name\": \"echo.exec\", \"value\": \"error=fail\"}]}\n"} -{"Time":"2022-12-07T09:15:38.822018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.821 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} -{"Time":"2022-12-07T09:15:38.82232+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:38.822328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:38.822331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ptytest.go:103: 2022-12-07 08:15:38.822: cmd: stdout: \"\\x1b]2;mtojek@Marcin-Coder:~\\a\\x1b]1;~\\a\\r\\x1b[0m\\x1b[27m\\x1b[24m\\x1b[J\\x1b[01;32m➜ \\x1b[36m~\\x1b[00m \\x1b[K\\x1b[?1h\\x1b=\\x1b[?2004he\\bexit\\x1b[?1l\\x1b\u003e\\x1b[?2004l\\r\\r\"\n"} -{"Time":"2022-12-07T09:15:38.828745+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.828751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.828754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.828 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:38.828792+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.828804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.828807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.828 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:38.828865+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.82887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.828873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.828 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:38.828875+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.828877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.828878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.828 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:38.828882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.828883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.828884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.828 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:38.828905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"size_bytes\": 81, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.828964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.829036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"size_bytes\": 2, \"path\": \"/tmp/TestUpdateWithParameter3712764442/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.829041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": [{\"destination_scheme\": 1, \"name\": \"region\", \"value\": \"bingo\"}, {\"destination_scheme\": 1, \"name\": \"username\", \"value\": \"boingo\"}]}\n"} -{"Time":"2022-12-07T09:15:38.829045+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.829046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.829047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.828 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:38.829049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.828 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.829052+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.829053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.829054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.829 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:38.829056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.829 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.82906+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.829061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.829063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.829 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.829084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.829 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.829127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.829 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:38.829151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.829 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:38.829202+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.829204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.829205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"359.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"46e1eea0-dba7-4831-8347-8a0d8a53dc6f\"}\n"} -{"Time":"2022-12-07T09:15:38.82976+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:38.829764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:38.829767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:38.829 [INFO]\t(agent.stdlib)\t\u003cgithub.com/coder/coder/pty/pty_other.go:118\u003e\t(*otherPty).Close\tWill close...\n"} -{"Time":"2022-12-07T09:15:38.829771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:38.829 [INFO]\t(agent.stdlib)\t\u003cgithub.com/coder/coder/pty/pty_other.go:125\u003e\t(*otherPty).Close\tClosing...\n"} -{"Time":"2022-12-07T09:15:38.830086+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.830122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.830126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"290.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d3c64238-5ee5-4b5f-9e84-e3690c0da645\"}\n"} -{"Time":"2022-12-07T09:15:38.830171+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:38.830174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:38.830176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:38.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/ef5b0161-dec3-4904-9935-88d7045740b8/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.535978458s\", \"status_code\": 101, \"latency_ms\": 2535, \"request_id\": \"7f967d68-f8e3-4d29-b675-8d11074b01fe\"}\n"} -{"Time":"2022-12-07T09:15:38.830481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:38.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.587281083s\", \"status_code\": 0, \"latency_ms\": 2587, \"request_id\": \"43c9db66-1047-4f70-87a3-b3feaf76cede\"}\n"} -{"Time":"2022-12-07T09:15:38.830548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:38.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57028\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.894766542s\", \"status_code\": 101, \"latency_ms\": 2894, \"request_id\": \"10eeb44f-1472-4d31-bea7-ca6d4eaff18c\"}\n"} -{"Time":"2022-12-07T09:15:38.83063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:38.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.841497166s\", \"status_code\": 0, \"latency_ms\": 2841, \"request_id\": \"4dc7fe87-2850-4da1-9357-0b677db7b2f9\"}\n"} -{"Time":"2022-12-07T09:15:38.830748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ptytest.go:80: 2022-12-07 08:15:38.830: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:38.830791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" ptytest.go:103: 2022-12-07 08:15:38.830: cmd: stdout: \"\\x1b]2;exit\\a\\x1b]1;exit\\a\"\n"} -{"Time":"2022-12-07T09:15:38.830828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" t.go:81: 2022-12-07 08:15:38.830 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:38.831084+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.831089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.831091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.831 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.831102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.831 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.831141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.831 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.831174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.831 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.831189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.831 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.831631+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit"} -{"Time":"2022-12-07T09:15:38.831639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":"=== CONT TestSSH/ImmediateExit\n"} -{"Time":"2022-12-07T09:15:38.831641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:38.831776+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:38.83178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:38.83451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"110.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1c4cecc3-919b-43d2-8293-96ab7cec7faa\"}\n"} -{"Time":"2022-12-07T09:15:38.834735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"47µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a3e2f415-5254-431d-bc14-d2e2a6aa8a58\"}\n"} -{"Time":"2022-12-07T09:15:38.835355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.835 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"405.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"532837c6-4d40-4e25-9ef2-554a16ae527b\"}\n"} -{"Time":"2022-12-07T09:15:38.836056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/organizations/e5f2fc78-d559-42e5-bc7c-cdb358d9574e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"505.666µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"dd710809-7cf2-4ccf-a148-8946e5492855\"}\n"} -{"Time":"2022-12-07T09:15:38.836147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" create_test.go:86: waiting for template version job 9ef331ec-b2af-4b02-8664-c5e676b5f0bd\n"} -{"Time":"2022-12-07T09:15:38.836389+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.836392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.836394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"454.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e277f0f8-d29c-4f8f-8af4-2791709c4670\"}\n"} -{"Time":"2022-12-07T09:15:38.837484+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:38.837496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:38.837499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.837: cmd: stdout: \"\\x1b]2;mtojek@Marcin-Coder:~\\a\\x1b]1;~\\a\\r\\x1b[0m\\x1b[27m\\x1b[24m\\x1b[J\\x1b[01;32m➜ \\x1b[36m~\\x1b[00m \\x1b[K\\x1b[?1h\\x1b=\\x1b[?2004he\\benv\\x1b[?1l\\x1b\u003e\\x1b[?2004l\\r\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"\\x1b]2;env\\a\\x1b]1;env\\aTERM_SESSION_ID=w0t2p0:B8D487E3-BA33-4813-A469-35B11472F7F2\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"LC_TERMINAL_VERSION=3.4.16\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"COLORFGBG=15;0\\r\"\n"} -{"Time":"2022-12-07T09:15:38.84028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"ITERM_PROFILE=Default\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"XPC_FLAGS=0x0\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"SHELL=/bin/zsh\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"__CFBundleIdentifier=com.googlecode.iterm2\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"SECURITYSESSIONID=186b1\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"LC_CTYPE=UTF-8\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"TERM_PROGRAM_VERSION=3.4.16\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"TERM_PROGRAM=iTerm.app\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"LC_TERMINAL=iTerm2\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"COLORTERM=truecolor\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"COMMAND_MODE=unix2003\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"HOME=/Users/mtojek\\r\"\n"} -{"Time":"2022-12-07T09:15:38.84031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"TMPDIR=/var/folders/82/7tbcycl16pz_7rxv981qdqsh0000gn/T/\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"XPC_SERVICE_NAME=0\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"LOGNAME=mtojek\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"LaunchInstanceID=E0761908-A215-465A-96E1-F613C68107A6\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"ITERM_SESSION_ID=w0t2p0:B8D487E3-BA33-4813-A469-35B11472F7F2\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0\\r\"\n"} -{"Time":"2022-12-07T09:15:38.84037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"SHLVL=2\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"OLDPWD=/Users/mtojek\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"HOMEBREW_PREFIX=/opt/homebrew\\r\"\n"} -{"Time":"2022-12-07T09:15:38.84038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"HOMEBREW_CELLAR=/opt/homebrew/Cellar\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"HOMEBREW_REPOSITORY=/opt/homebrew\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"MANPATH=/Users/mtojek/.nvm/versions/node/v14.21.1/share/man:/opt/homebrew/share/man:/usr/share/man:/usr/local/share/man:/Users/mtojek/.nvm/versions/node/v14.21.1/share/man:/opt/homebrew/share/man:\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"INFOPATH=/opt/homebrew/share/info:/opt/homebrew/share/info:\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"NIX_PROFILES=/nix/var/nix/profiles/default /Users/mtojek/.nix-profile\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"NIX_SSL_CERT_FILE=/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"ZSH=/Users/mtojek/.oh-my-zsh\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"PAGER=less\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"LESS=-R\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"LSCOLORS=Gxfxcxdxbxegedabagacad\\r\"\n"} -{"Time":"2022-12-07T09:15:38.8404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"NVM_DIR=/Users/mtojek/.nvm\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"NVM_CD_FLAGS=-q\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"NVM_BIN=/Users/mtojek/.nvm/versions/node/v14.21.1/bin\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"NVM_INC=/Users/mtojek/.nvm/versions/node/v14.21.1/include/node\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"PATH=/Users/mtojek/.nvm/versions/node/v14.21.1/bin:/Users/mtojek/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/munki:/Users/mtojek/go/bin\\r\"\n"} -{"Time":"2022-12-07T09:15:38.84041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"PWD=/Users/mtojek\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"CODER_DONT_PASS=true\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"CODER=true\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"USER=mtojek\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"GIT_SSH_COMMAND=/tmp/go-build2871666910/b001/cli.test gitssh --\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"CODER_AGENT_TOKEN=\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"SSH_CLIENT=0.0.0.0 0 0\\r\"\n"} -{"Time":"2022-12-07T09:15:38.84043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"SSH_CONNECTION=0.0.0.0 0 0.0.0.0 0\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"VSCODE_PROXY_URI=:57062\\r\"\n"} -{"Time":"2022-12-07T09:15:38.84048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"CS_DISABLE_GETTING_STARTED_OVERRIDE=true\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"SSH_AUTH_SOCK=/tmp/auth-agent153830982/listener.sock\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"TERM=xterm-256color\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"SSH_TTY=/dev/ttys006\\r\"\n"} -{"Time":"2022-12-07T09:15:38.840489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.840: cmd: stdout: \"_=/usr/bin/env\\r\"\n"} -{"Time":"2022-12-07T09:15:38.841287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ssh_test.go:273: 2022-12-07 08:15:38.841: cmd: matched \"SSH_AUTH_SOCK=\" = \"env\\r\\n\\x1b[?25l\\r\\x1b[K\\r⠈⠁ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠑ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⠱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⠈⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\r\\x1b[K\\r⢀⡱ Waiting for connection from \\x1b[;m\\x1b[0m ...\\x1b[?25h\\r\\x1b[Kenv\\r\\r\\n\\x1b[1m\\x1b[7m%\\x1b[27m\\x1b[1m\\x1b[0m \\r \\rdirenv: unloading\\r\\r\\n\\x1b]2;mtojek@Marcin-Coder:~\\a\\x1b]1;~\\a\\r\\x1b[0m\\x1b[27m\\x1b[24m\\x1b[J\\x1b[01;32m➜ \\x1b[36m~\\x1b[00m \\x1b[K\\x1b[?1h\\x1b=\\x1b[?2004he\\benv\\x1b[?1l\\x1b\u003e\\x1b[?2004l\\r\\r\\r\\n\\x1b]2;env\\a\\x1b]1;env\\aTERM_SESSION_ID=w0t2p0:B8D487E3-BA33-4813-A469-35B11472F7F2\\r\\r\\nLC_TERMINAL_VERSION=3.4.16\\r\\r\\nCOLORFGBG=15;0\\r\\r\\nITERM_PROFILE=Default\\r\\r\\nXPC_FLAGS=0x0\\r\\r\\nSHELL=/bin/zsh\\r\\r\\n__CFBundleI"} -{"Time":"2022-12-07T09:15:38.841298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"dentifier=com.googlecode.iterm2\\r\\r\\nSECURITYSESSIONID=186b1\\r\\r\\nLC_CTYPE=UTF-8\\r\\r\\nTERM_PROGRAM_VERSION=3.4.16\\r\\r\\nTERM_PROGRAM=iTerm.app\\r\\r\\nLC_TERMINAL=iTerm2\\r\\r\\nCOLORTERM=truecolor\\r\\r\\nCOMMAND_MODE=unix2003\\r\\r\\nHOME=/Users/mtojek\\r\\r\\nTMPDIR=/var/folders/82/7tbcycl16pz_7rxv981qdqsh0000gn/T/\\r\\r\\nXPC_SERVICE_NAME=0\\r\\r\\nLOGNAME=mtojek\\r\\r\\nLaunchInstanceID=E0761908-A215-465A-96E1-F613C68107A6\\r\\r\\nITERM_SESSION_ID=w0t2p0:B8D487E3-BA33-4813-A469-35B11472F7F2\\r\\r\\n__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0\\r\\r\\nSHLVL=2\\r\\r\\nOLDPWD=/Users/mtojek\\r\\r\\nHOMEBREW_PREFIX=/opt/homebrew\\r\\r\\nHOMEBREW_CELLAR=/opt/homebrew/Cellar\\r\\r\\nHOMEBREW_REPOSITORY=/opt/homebrew\\r\\r\\nMANPATH=/Users/mtojek/.nvm/versions/node/v14.21.1/share/man:/opt/homebrew/share/man:/usr/share/man:/usr/local/share/man:/Users/mtojek/.nvm/versions/node/v14.21.1/share/man:/opt/homebrew/share/man:\\r\\r\\nINFOPATH=/opt/homebrew/share/info:/opt/homebrew/share/info:\\r\\r\\nNIX_PROFILES=/nix/var/nix/profiles/default /Users/mtojek/.nix-profile\\r\\r\\nNIX_SS"} -{"Time":"2022-12-07T09:15:38.841308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"L_CERT_FILE=/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt\\r\\r\\nZSH=/Users/mtojek/.oh-my-zsh\\r\\r\\nPAGER=less\\r\\r\\nLESS=-R\\r\\r\\nLSCOLORS=Gxfxcxdxbxegedabagacad\\r\\r\\nNVM_DIR=/Users/mtojek/.nvm\\r\\r\\nNVM_CD_FLAGS=-q\\r\\r\\nNVM_BIN=/Users/mtojek/.nvm/versions/node/v14.21.1/bin\\r\\r\\nNVM_INC=/Users/mtojek/.nvm/versions/node/v14.21.1/include/node\\r\\r\\nPATH=/Users/mtojek/.nvm/versions/node/v14.21.1/bin:/Users/mtojek/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/munki:/Users/mtojek/go/bin\\r\\r\\nPWD=/Users/mtojek\\r\\r\\nCODER_DONT_PASS=true\\r\\r\\nCODER=true\\r\\r\\nUSER=mtojek\\r\\r\\nGIT_SSH_COMMAND=/tmp/go-build2871666910/b001/cli.test gitssh --\\r\\r\\nCODER_AGENT_TOKEN=\\r\\r\\nSSH_CLIENT=0.0.0.0 0 0\\r\\r\\nSSH_CONNECTION=0.0.0.0 0 0.0.0.0 0\\r\\r\\nVSCODE_PROXY_URI=:57062\\r\\r\\nCS_DISABLE_GETTING_STARTED_OVERRIDE=true\\r\\r\\nSSH_AUTH_SOCK=\"\n"} -{"Time":"2022-12-07T09:15:38.841315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ssh_test.go:275: 2022-12-07 08:15:38.841: cmd: stdin: \"ssh-add -L\\r\"\n"} -{"Time":"2022-12-07T09:15:38.841333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.841: cmd: stdout: \"\\x1b[1m\\x1b[7m%\\x1b[27m\\x1b[1m\\x1b[0m \\r \\rssh-add -L\"\n"} -{"Time":"2022-12-07T09:15:38.841577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.841: cmd: stdout: \"ssh-add -L\\r\"\n"} -{"Time":"2022-12-07T09:15:38.854687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.854703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.854706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.854709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.854711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.854714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.854727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.854743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.854774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.854924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.854932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.854 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.856111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.856 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"441.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e36d1072-9b0d-4594-adaa-404293858817\"}\n"} -{"Time":"2022-12-07T09:15:38.856309+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.856313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.856315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.856 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"638.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9fea0ff8-ac8d-438c-9081-0b31ac91f1ed\"}\n"} -{"Time":"2022-12-07T09:15:38.858623+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:38.858632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:38.858634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.858: cmd: stdout: \"\\x1b]2;mtojek@Marcin-Coder:~\\a\\x1b]1;~\\a\\r\\x1b[0m\\x1b[27m\\x1b[24m\\x1b[J\\x1b[01;32m➜ \\x1b[36m~\\x1b[00m \\x1b[K\\x1b[?1h\\x1b=\\x1b[?2004hs\\bssh-add -L\\x1b[?1l\\x1b\u003e\\x1b[?2004l\\r\\r\"\n"} -{"Time":"2022-12-07T09:15:38.86089+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.860899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.860902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.860 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d86794e2-84a3-41ef-bbfa-6a8bfd93a3bd\"}\n"} -{"Time":"2022-12-07T09:15:38.86156+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:38.861565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:38.86157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.861 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"254.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c79c7ea-8178-48aa-ae8c-ff8f6f3e1d85\"}\n"} -{"Time":"2022-12-07T09:15:38.869581+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:38.869592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:38.869594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.869: cmd: stdout: \"\\x1b]2;ssh-add -L\\a\\x1b]1;ssh-add\\aecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBTE5FW4g90uZ6mSS/6UJxx62ECLKhzSKz1N4Oa1XEJGP010kX3NNWdvAT7c5joojTVlOFsDHK80Q1bfrHYdZ9w= \\r\"\n"} -{"Time":"2022-12-07T09:15:38.869674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ssh_test.go:278: 2022-12-07 08:15:38.869: cmd: matched \"ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBTE5FW4g90uZ6mSS/6UJxx62ECLKhzSKz1N4Oa1XEJGP010kX3NNWdvAT7c5joojTVlOFsDHK80Q1bfrHYdZ9w=\" = \"/tmp/auth-agent153830982/listener.sock\\r\\r\\nTERM=xterm-256color\\r\\r\\nSSH_TTY=/dev/ttys006\\r\\r\\n_=/usr/bin/env\\r\\r\\n\\x1b[1m\\x1b[7m%\\x1b[27m\\x1b[1m\\x1b[0m \\r \\rssh-add -L\\r\\nssh-add -L\\r\\r\\n\\x1b]2;mtojek@Marcin-Coder:~\\a\\x1b]1;~\\a\\r\\x1b[0m\\x1b[27m\\x1b[24m\\x1b[J\\x1b[01;32m➜ \\x1b[36m~\\x1b[00m \\x1b[K\\x1b[?1h\\x1b=\\x1b[?2004hs\\bssh-add -L\\x1b[?1l\\x1b\u003e\\x1b[?2004l\\r\\r\\r\\n\\x1b]2;ssh-add -L\\a\\x1b]1;ssh-add\\aecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBTE5FW4g90uZ6mSS/6UJxx62ECLKhzSKz1N4Oa1XEJGP010kX3NNWdvAT7c5joojTVlOFsDHK80Q1bfrHYdZ9w=\"\n"} -{"Time":"2022-12-07T09:15:38.869686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ssh_test.go:281: 2022-12-07 08:15:38.869: cmd: stdin: \"exit\\r\"\n"} -{"Time":"2022-12-07T09:15:38.86969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.869: cmd: stdout: \"exit\"\n"} -{"Time":"2022-12-07T09:15:38.869945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.869: cmd: stdout: \"\\x1b[1m\\x1b[7m%\\x1b[27m\\x1b[1m\\x1b[0m \\r \\rexit\\r\"\n"} -{"Time":"2022-12-07T09:15:38.872323+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.87233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.872332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} -{"Time":"2022-12-07T09:15:38.872335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.872352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.872367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} -{"Time":"2022-12-07T09:15:38.872394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} -{"Time":"2022-12-07T09:15:38.872438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:38.872449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:186\u003e\t(*Runner).Run\tsending FailedJob\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} -{"Time":"2022-12-07T09:15:38.872457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:38.872475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"request_id\": \"c88549bc-23de-49ca-ae42-7357d09101b2\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:38.872546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\", \"request_id\": \"c88549bc-23de-49ca-ae42-7357d09101b2\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:38.872621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.872: cmd: stdout: \"\\x1b[1A\\r✔ Queued [261ms]\"\n"} -{"Time":"2022-12-07T09:15:38.872626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.872: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:38.872641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.872: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} -{"Time":"2022-12-07T09:15:38.872645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.872: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:38.876786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.876791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.876793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.876 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.167µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:38.879157+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.87916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.879162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:38.879167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.879202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:38.879206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:38.87924+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.879243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.879246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:38.879249+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.87925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.879252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:38.879278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"request_id\": \"10ad1626-1c6d-4a6f-8e43-48f0ddf342b3\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:38.879333+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.879336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.879338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.879 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"333.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5bccecff-6978-4d1d-949e-1b1d65d24765\"}\n"} -{"Time":"2022-12-07T09:15:38.879343+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.879344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.879347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.879 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.879383+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.879394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.879397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.879: cmd: stdout: \"Output: \"\n"} -{"Time":"2022-12-07T09:15:38.880044+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.880049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.880051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"df18bace-16df-40af-9c52-8bde45920862\"}\n"} -{"Time":"2022-12-07T09:15:38.881412+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.881417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.881419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.881 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.881437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.881 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:38.881464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.881 [DEBUG]\t(provisionerd-compassionate_jepsen0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.881513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.881 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"e53db770-bcbc-41bc-bfe0-7518a3b78339\"}\n"} -{"Time":"2022-12-07T09:15:38.886182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspacebuilds/9f1fea4c-498d-4fe5-8746-8f34e13b6fd5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd03a17a-ff8d-4c53-b175-0771efd444d1\"}\n"} -{"Time":"2022-12-07T09:15:38.886687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:38.886692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:38.886695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"267.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ffcabfc5-9672-4c75-85bc-3f4048d68310\"}\n"} -{"Time":"2022-12-07T09:15:38.887811+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:38.887818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:38.88782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.887: cmd: stdout: \"\\x1b]2;mtojek@Marcin-Coder:~\\a\\x1b]1;~\\a\\r\\x1b[0m\\x1b[27m\\x1b[24m\\x1b[J\\x1b[01;32m➜ \\x1b[36m~\\x1b[00m \\x1b[K\\x1b[?1h\\x1b=\\x1b[?2004he\\bexit\\x1b[?1l\\x1b\u003e\\x1b[?2004l\\r\\r\"\n"} -{"Time":"2022-12-07T09:15:38.887927+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.887934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.887942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" gitssh_test.go:195: waiting for workspace agents (workspace e792d320-526b-4f68-a2a4-e4bd1a20fa11)\n"} -{"Time":"2022-12-07T09:15:38.894827+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent"} -{"Time":"2022-12-07T09:15:38.894835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":"=== CONT TestSSH/ForwardAgent\n"} -{"Time":"2022-12-07T09:15:38.894837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:38.894 [INFO]\t(agent.stdlib)\t\u003cgithub.com/coder/coder/pty/pty_other.go:118\u003e\t(*otherPty).Close\tWill close...\n"} -{"Time":"2022-12-07T09:15:38.89484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:38.894 [INFO]\t(agent.stdlib)\t\u003cgithub.com/coder/coder/pty/pty_other.go:125\u003e\t(*otherPty).Close\tClosing...\n"} -{"Time":"2022-12-07T09:15:38.895432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:38.895 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/3a36b48a-7949-4a41-850d-2539afa4849c/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.751718417s\", \"status_code\": 101, \"latency_ms\": 2751, \"request_id\": \"fbfb2137-aa89-4974-b633-216dd52518aa\"}\n"} -{"Time":"2022-12-07T09:15:38.895601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:38.895 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.7973115s\", \"status_code\": 0, \"latency_ms\": 2797, \"request_id\": \"32b48672-fb3e-4680-a978-96b7f5df75e9\"}\n"} -{"Time":"2022-12-07T09:15:38.895712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:80: 2022-12-07 08:15:38.895: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:38.89572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:38.895 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57062\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.153823667s\", \"status_code\": 101, \"latency_ms\": 3153, \"request_id\": \"deab664b-c2df-48e1-bb69-5d50acea7f3c\"}\n"} -{"Time":"2022-12-07T09:15:38.895752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:38.895 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.103880167s\", \"status_code\": 0, \"latency_ms\": 3103, \"request_id\": \"6cc06ccf-23be-42a5-8636-792dcf26c326\"}\n"} -{"Time":"2022-12-07T09:15:38.89576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" ptytest.go:103: 2022-12-07 08:15:38.895: cmd: stdout: \"\\x1b]2;exit\\a\\x1b]1;exit\\a\"\n"} -{"Time":"2022-12-07T09:15:38.895799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" t.go:81: 2022-12-07 08:15:38.895 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:38.89642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:38.896443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH","Output":"--- PASS: TestSSH (0.00s)\n"} -{"Time":"2022-12-07T09:15:38.896447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Output":" --- PASS: TestSSH/Stdio (1.71s)\n"} -{"Time":"2022-12-07T09:15:38.896449+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestSSH/Stdio","Elapsed":1.71} -{"Time":"2022-12-07T09:15:38.896453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Output":" --- PASS: TestSSH/ShowTroubleshootingURLAfterTimeout (1.82s)\n"} -{"Time":"2022-12-07T09:15:38.896455+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestSSH/ShowTroubleshootingURLAfterTimeout","Elapsed":1.82} -{"Time":"2022-12-07T09:15:38.896456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Output":" --- PASS: TestSSH/ImmediateExit (4.23s)\n"} -{"Time":"2022-12-07T09:15:38.896458+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestSSH/ImmediateExit","Elapsed":4.23} -{"Time":"2022-12-07T09:15:38.89646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Output":" --- PASS: TestSSH/ForwardAgent (4.19s)\n"} -{"Time":"2022-12-07T09:15:38.896462+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestSSH/ForwardAgent","Elapsed":4.19} -{"Time":"2022-12-07T09:15:38.896463+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestSSH","Elapsed":0} -{"Time":"2022-12-07T09:15:38.896464+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier"} -{"Time":"2022-12-07T09:15:38.896466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Output":"=== CONT TestDelete/InvalidWorkspaceIdentifier\n"} -{"Time":"2022-12-07T09:15:38.900483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Output":" t.go:81: 2022-12-07 08:15:38.900 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57381\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.125µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"e8b66ed3-1fd4-42fd-bcfd-afbfa7df7971\"}\n"} -{"Time":"2022-12-07T09:15:38.900499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Output":" t.go:81: 2022-12-07 08:15:38.900 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57381\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"24.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"532e0e43-87fa-45e5-87f2-e968db52ba17\"}\n"} -{"Time":"2022-12-07T09:15:38.90105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:38.901059+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:38.901061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:38.90388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.903 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"84.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"beff6c89-44a4-4666-8b22-c60c7f23705a\"}\n"} -{"Time":"2022-12-07T09:15:38.90412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.904 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"47µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0b612221-be1d-4a09-afa6-c319fc2363d2\"}\n"} -{"Time":"2022-12-07T09:15:38.904884+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.90489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.904892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.904 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"434.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c7819d1b-3d16-4534-831a-de9cc32bc91f\"}\n"} -{"Time":"2022-12-07T09:15:38.904946+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:38.904951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:38.904959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.904 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"656.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9a01fe99-8882-4120-a52d-d23b4b229d6e\"}\n"} -{"Time":"2022-12-07T09:15:38.905244+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.905252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.905253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.905 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.905362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.905 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.905366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.905 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.905369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.905 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.90537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.905 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.905373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.905 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.90547+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:38.905476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:38.905478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.905 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"134.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4b0bc87f-9738-41f6-8ebe-4476f98484a1\"}\n"} -{"Time":"2022-12-07T09:15:38.906237+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.906244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.906246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.906 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"546.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8766ccf4-4455-46b3-be55-dafbdcbf10bb\"}\n"} -{"Time":"2022-12-07T09:15:38.906249+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:38.906251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:38.906253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.906 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/users/me\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"464.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3513f880-4fa5-4040-9557-73da8782a529\"}\n"} -{"Time":"2022-12-07T09:15:38.906908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.906 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"be20f311-cc75-4b4d-b37b-1713bfdf679c\"}\n"} -{"Time":"2022-12-07T09:15:38.907784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.907 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/organizations/96028bb4-e824-4dd2-98ef-89bc8d228673/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"708.083µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bf425036-0755-4107-b92d-4e35e5a23d25\"}\n"} -{"Time":"2022-12-07T09:15:38.907912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" delete_test.go:85: waiting for template version job c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\n"} -{"Time":"2022-12-07T09:15:38.913256+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:38.913265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:38.913268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"427.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ff33550-d6ca-4bb0-b507-9c1d59b93241\"}\n"} -{"Time":"2022-12-07T09:15:38.914007+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.914018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.914028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"376.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5fc6e2c8-8495-4bf0-85b9-94ee714b8f26\"}\n"} -{"Time":"2022-12-07T09:15:38.914116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:38.923044+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun"} -{"Time":"2022-12-07T09:15:38.923048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":"=== CONT TestCreate/FailedDryRun\n"} -{"Time":"2022-12-07T09:15:38.92305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.922 [DEBUG]\t(provisionerd-peaceful_tu3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:470\u003e\t(*Server).FailJob\tFailJob starting\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} -{"Time":"2022-12-07T09:15:38.923056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.923 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} -{"Time":"2022-12-07T09:15:38.923084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.923 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} -{"Time":"2022-12-07T09:15:38.923101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.923 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:191\u003e\t(*Runner).Run\tsent FailedJob\t{\"job_id\": \"4def467b-7be9-4b42-984a-c5236507cd43\"}\n"} -{"Time":"2022-12-07T09:15:38.923358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.923 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408/dry-run/4def467b-7be9-4b42-984a-c5236507cd43/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.712292ms\", \"status_code\": 101, \"latency_ms\": 362, \"request_id\": \"c88549bc-23de-49ca-ae42-7357d09101b2\"}\n"} -{"Time":"2022-12-07T09:15:38.92463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.924 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57320\", \"path\": \"/api/v2/templateversions/ec2be823-036d-4d90-88c8-a39e4bad7408/dry-run/4def467b-7be9-4b42-984a-c5236507cd43\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"616.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0f9eb635-5bbb-4096-b262-976b9fbf03b7\"}\n"} -{"Time":"2022-12-07T09:15:38.924769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:103: 2022-12-07 08:15:38.924: cmd: stdout: \"\\x1b[1A\\r✘ Cleaning Up [102ms]\"\n"} -{"Time":"2022-12-07T09:15:38.924823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" ptytest.go:80: 2022-12-07 08:15:38.924: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:38.924884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" t.go:81: 2022-12-07 08:15:38.924 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:38.925544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:38.925562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:38.925565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:38.927775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:38.927 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"84µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"676deef6-da25-4c20-9488-cb8b5cfaa5b5\"}\n"} -{"Time":"2022-12-07T09:15:38.927969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:38.927 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"33.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4cf0708c-99fa-49d5-8f55-fa2cd388f394\"}\n"} -{"Time":"2022-12-07T09:15:38.928527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:38.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c80eb9d7-602a-4e1f-9484-4bee884ab1f7\"}\n"} -{"Time":"2022-12-07T09:15:38.929178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/organizations/89879752-0350-4103-8858-5ceacf36bf8c/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"477.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e25499d6-fec2-456c-9e7c-5e6455c7f92e\"}\n"} -{"Time":"2022-12-07T09:15:38.929293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" delete_test.go:51: waiting for template version job d1e0b52c-22d6-45cb-8b51-7891efed1a0e\n"} -{"Time":"2022-12-07T09:15:38.929332+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.929338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.929339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:38.929341+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.929343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.929344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:38.929347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.929385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.929421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.929435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.929438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:38.92944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:38.929442+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.929443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.929444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:38.929447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.929 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.929519+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.92952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.929522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c047f87f-0dd3-42d3-9ae8-3fbf1281434d\"}\n"} -{"Time":"2022-12-07T09:15:38.929567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.929575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.929579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:38.929582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.929 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:38.93035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.930 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a4945f61-390e-4e52-8a81-d33295b1d0f7\"}\n"} -{"Time":"2022-12-07T09:15:38.933454+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:38.93346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:38.933462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.933 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:38.934046+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:38.934053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:38.934055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.934 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e4fded7-fef5-4757-b7b9-beb58dc70ada\"}\n"} -{"Time":"2022-12-07T09:15:38.937493+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:38.937497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:38.9375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"311µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"52de0ed1-b083-4804-b820-61e30db841d4\"}\n"} -{"Time":"2022-12-07T09:15:38.938992+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.938999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.939001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.938 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5e86e84f-50f8-45f2-99ae-43b250b8e29d\"}\n"} -{"Time":"2022-12-07T09:15:38.939107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:38.955081+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:38.955086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:38.955087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:38.955 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8b361909-1614-43b6-b872-efb9a42d6648\"}\n"} -{"Time":"2022-12-07T09:15:38.955109+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.955111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.955113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.955 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"315.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db509f6c-518d-4d98-ab19-e773069f4f2c\"}\n"} -{"Time":"2022-12-07T09:15:38.955138+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.955154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.955157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.955 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cecedcb9-a39f-4b5a-89cb-ce44ed26f1eb\"}\n"} -{"Time":"2022-12-07T09:15:38.955525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.955 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.955545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.955 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.955553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.955 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.9556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.955 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"5dc6db3f-2756-442e-9a79-fa2474e5eb7c\"}\n"} -{"Time":"2022-12-07T09:15:38.958588+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:38.958592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:38.958594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.958 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e9f3d0f8-ac6c-4c40-a5c8-65b920e0b0f4\"}\n"} -{"Time":"2022-12-07T09:15:38.961881+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:38.961888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:38.96189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"246.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1bbc37eb-da96-4696-b5b7-b87b6c3c4954\"}\n"} -{"Time":"2022-12-07T09:15:38.963523+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.963528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.96353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.963 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"299.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5854cf5a-366a-444f-bd47-0e4eb6bf836b\"}\n"} -{"Time":"2022-12-07T09:15:38.963598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:38.979643+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.97965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.979652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:38.979655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.97968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:38.979687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:38.979759+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.979763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.979766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:38.979768+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.979769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.979771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:38.979773+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.979781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.979783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.979785+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.979786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.979788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:38.979789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:38.979791+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.979792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.979793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:38.979797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:38.979799+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.9798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.979801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"request_id\": \"10ad1626-1c6d-4a6f-8e43-48f0ddf342b3\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:38.979803+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.979804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.979806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:38.979809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.979811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.979812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"request_id\": \"10ad1626-1c6d-4a6f-8e43-48f0ddf342b3\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:38.979814+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.979815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.979817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.979 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:38.979918+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:38.979922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.979924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.979: cmd: stdout: \"Output: \"\n"} -{"Time":"2022-12-07T09:15:38.979926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.979: cmd: stdout: \"Output: \"\n"} -{"Time":"2022-12-07T09:15:38.98007+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:38.980074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:38.980075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:38.980 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"286.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06dfb8e4-d773-4300-b3cc-a426c353f9be\"}\n"} -{"Time":"2022-12-07T09:15:38.980133+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:38.980139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:38.980141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:38.980 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"316.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c12674a-2af6-4638-8da5-76e0d5fcaf30\"}\n"} -{"Time":"2022-12-07T09:15:38.980146+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.980147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.980148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.980 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"264.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"465c054c-6e43-40f5-98f1-5cc28db019e0\"}\n"} -{"Time":"2022-12-07T09:15:38.980614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.980 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/organizations/b342410a-6ffc-46ec-89b1-7a1f653b07c7/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c0d1e2c7-dbc7-4596-9ae7-543f625d67f8\"}\n"} -{"Time":"2022-12-07T09:15:38.982699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.291µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"c190a8f0-0b50-46eb-bd6d-b91efe3b69aa\"}\n"} -{"Time":"2022-12-07T09:15:38.982881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"28ac3e78-4adb-4b55-8c4d-3267382837bf\"}\n"} -{"Time":"2022-12-07T09:15:38.983282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:38.983288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:38.98329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da5e2e36-0070-49d7-9250-e4e85bb8abc2\"}\n"} -{"Time":"2022-12-07T09:15:38.983328+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.983334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.983336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6445d338-fa9e-4286-8a09-018597326d6d\"}\n"} -{"Time":"2022-12-07T09:15:38.983446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:175: 2022-12-07 08:15:38.983: cmd: matched \"Specify a name\" = \"\u003e Specify a name\"\n"} -{"Time":"2022-12-07T09:15:38.983457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:176: 2022-12-07 08:15:38.983: cmd: stdin: \"my-workspace\\r\"\n"} -{"Time":"2022-12-07T09:15:38.983487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.983: cmd: stdout: \"\u003e Specify a name for your workspace: my-workspace\"\n"} -{"Time":"2022-12-07T09:15:38.983584+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:38.983589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:38.983591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:38.983602+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.983607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.983608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"81d1fb99-a7e4-47b4-ad81-0e0cc640ac17\"}\n"} -{"Time":"2022-12-07T09:15:38.983648+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:38.983652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:38.983653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:38.983686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:38.983725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.98375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.983796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:38.983805+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.983807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.983809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.625µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"dd7f8b63-88c4-47b1-8b3e-282bef25f6b9\"}\n"} -{"Time":"2022-12-07T09:15:38.983811+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:38.983813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:38.983815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:38.983865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.983 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:38.983904+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.983907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.983908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.983: cmd: stdout: \"Select a template below to preview the provisioned infrastructure: \"\n"} -{"Time":"2022-12-07T09:15:38.986865+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:38.986869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:38.986874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:38.986 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06b9c088-254b-4c61-944f-aba05e3e1710\"}\n"} -{"Time":"2022-12-07T09:15:38.988476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:38.98848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:38.988482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:38.988 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"304.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8f375808-25d8-437b-a0a7-c5a8e6512571\"}\n"} -{"Time":"2022-12-07T09:15:38.988552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:38.98898+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:38.988984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:38.988986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.988 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/organizations/b342410a-6ffc-46ec-89b1-7a1f653b07c7/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"4.997084ms\", \"status_code\": 200, \"latency_ms\": 4, \"request_id\": \"7dff9b43-9fd1-4e22-bbdb-f84cc4593e72\"}\n"} -{"Time":"2022-12-07T09:15:38.989408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.989 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"256.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e121140-9e60-4cab-8e42-d5d08d068384\"}\n"} -{"Time":"2022-12-07T09:15:38.989853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.989 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"246.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7fd8fc4e-3ab0-4370-bc8c-f12b345eb431\"}\n"} -{"Time":"2022-12-07T09:15:38.989985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.989: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:38.989992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.989: cmd: stdout: \" This template has customizable parameters. Values can be \"\n"} -{"Time":"2022-12-07T09:15:38.989995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.989: cmd: stdout: \" changed after create, but may have unintended side effects\"\n"} -{"Time":"2022-12-07T09:15:38.989996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.989: cmd: stdout: \" (like data loss). \\r\"\n"} -{"Time":"2022-12-07T09:15:38.989999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.989: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.990001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.989: cmd: stdout: \"\\x1b[1mvar.region\\x1b[0m\"\n"} -{"Time":"2022-12-07T09:15:38.990003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \" description 1\"\n"} -{"Time":"2022-12-07T09:15:38.990007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.990072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:175: 2022-12-07 08:15:38.990: cmd: matched \"Enter a value (default: \\\"something\\\"):\" = \" for your workspace: my-workspace\\r\\nSelect a template below to preview the provisioned infrastructure: \\r\\n \\r\\n This template has customizable parameters. Values can be \\r\\n changed after create, but may have unintended side effects\\r\\n (like data loss). \\r\\r\\n\\r\\n\\x1b[1mvar.region\\x1b[0m\\r\\n description 1\\r\\n\\r\\n\u003e \\x1b[1mEnter a value (default: \\\"something\\\"):\"\n"} -{"Time":"2022-12-07T09:15:38.990079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:176: 2022-12-07 08:15:38.990: cmd: stdin: \"bingo\\r\"\n"} -{"Time":"2022-12-07T09:15:38.9901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"\u003e \\x1b[1mEnter a value (default: \\\"something\\\"):\\x1b[0m bingo\"\n"} -{"Time":"2022-12-07T09:15:38.99011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"\\x1b[1mvar.username\\x1b[0m\"\n"} -{"Time":"2022-12-07T09:15:38.990113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \" description 2\"\n"} -{"Time":"2022-12-07T09:15:38.990115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.990137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:175: 2022-12-07 08:15:38.990: cmd: matched \"Enter a value:\" = \"\\x1b[0m bingo\\r\\n\\x1b[1mvar.username\\x1b[0m\\r\\n description 2\\r\\n\\r\\n\u003e \\x1b[1mEnter a value:\"\n"} -{"Time":"2022-12-07T09:15:38.990146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:176: 2022-12-07 08:15:38.990: cmd: stdin: \"boingo\\r\"\n"} -{"Time":"2022-12-07T09:15:38.990178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"\u003e \\x1b[1mEnter a value:\\x1b[0m boingo\"\n"} -{"Time":"2022-12-07T09:15:38.990182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:38.990752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.990 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"477.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"38f7a38f-c52e-4fda-82f4-2a1ad7f29bb5\"}\n"} -{"Time":"2022-12-07T09:15:38.990826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"Planning workspace...\"\n"} -{"Time":"2022-12-07T09:15:38.990834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:38.990: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:38.991393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:38.991 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82/dry-run/5e934427-70eb-4d40-b29a-c23088905098\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"469.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7c70f5e5-94c6-41b4-a28f-e8ea3c4ae365\"}\n"} -{"Time":"2022-12-07T09:15:39.00338+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.003384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.003386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.003 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:39.004774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.004779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.004781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.004 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"238.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d21dce15-e64b-4c2c-bc28-184544f1daba\"}\n"} -{"Time":"2022-12-07T09:15:39.004989+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.004993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.004994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.004 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"240.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"509c2b08-6951-4d59-92f2-cf9da72a5600\"}\n"} -{"Time":"2022-12-07T09:15:39.008282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.008286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.008288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.008 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"233.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b2da013c-b019-4823-9168-cdacda4d2232\"}\n"} -{"Time":"2022-12-07T09:15:39.011913+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.011918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.01192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.011 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"226.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ec3eefaf-6516-4e05-8b5b-6d92b5eb1444\"}\n"} -{"Time":"2022-12-07T09:15:39.013479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.013484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.013486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.013 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f234a548-f8c4-48e9-90c8-d93e935294f9\"}\n"} -{"Time":"2022-12-07T09:15:39.013583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:39.028084+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.028088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.028091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.028 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:39.029833+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:39.029838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.02984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:39.029857+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.029859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.029862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"257.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0530a00f-d9bd-4e4c-9a97-950f49d8de31\"}\n"} -{"Time":"2022-12-07T09:15:39.029932+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:39.029935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.029936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.029939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:39.029941+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.029942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.029943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33f99960-dc7a-4079-a0b0-a071fa7ad9fb\"}\n"} -{"Time":"2022-12-07T09:15:39.029946+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:39.029947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.029948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:39.029952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:39.029953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:39.029984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:39.02999+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.029992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.029993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:39.029996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:39.029998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.030006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"request_id\": \"10ad1626-1c6d-4a6f-8e43-48f0ddf342b3\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:39.03001+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.030011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.030013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.029 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:39.030016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.030 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:39.030054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:39.030065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.030067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.030 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\", \"request_id\": \"10ad1626-1c6d-4a6f-8e43-48f0ddf342b3\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:39.030071+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.030072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.030074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.030 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"466b2de3-44bb-4fb8-bb14-2736964d51bd\"}\n"} -{"Time":"2022-12-07T09:15:39.030136+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:39.030138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.03014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.030: cmd: stdout: \"Output: \"\n"} -{"Time":"2022-12-07T09:15:39.030141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.030: cmd: stdout: \"Output: \"\n"} -{"Time":"2022-12-07T09:15:39.033155+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.03316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.033163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.033 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.083µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:39.033514+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.03352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.033522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.033 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"245.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a618ab98-2337-4c82-b7f5-13d763bed215\"}\n"} -{"Time":"2022-12-07T09:15:39.033919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.033923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.033925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.033 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:39.034025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.033 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.036882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"243.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"67db1dc5-fdd0-4592-a666-35da0937c7d9\"}\n"} -{"Time":"2022-12-07T09:15:39.038451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.038458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.03846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.038 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a7a81ab7-eff7-42a6-9a41-7335051bd7ac\"}\n"} -{"Time":"2022-12-07T09:15:39.038559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:39.054513+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.054534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.054539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.054546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.054573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:39.054614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.054619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.054645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.054651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.054708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.054 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:39.054858+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.054863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.054865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.054 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"375698bd-f0ac-4034-8fee-7da5c27718e3\"}\n"} -{"Time":"2022-12-07T09:15:39.055022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.055027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.055029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.054 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd2fd091-fb81-48aa-acd4-708802818bd0\"}\n"} -{"Time":"2022-12-07T09:15:39.055457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.055 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/organizations/11c9282c-985b-41b5-841f-d468db51bba6/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"074814c0-8205-43c9-99e9-e9b75dc46fd6\"}\n"} -{"Time":"2022-12-07T09:15:39.057303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.958µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"cc7d97db-2b7f-49fe-b9c2-bc9118ca8367\"}\n"} -{"Time":"2022-12-07T09:15:39.05744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"715aaed2-ad2a-4c6d-a2df-c08b9e8fdf71\"}\n"} -{"Time":"2022-12-07T09:15:39.057856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"252.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3c01db0-73a1-4021-b363-012d268ba721\"}\n"} -{"Time":"2022-12-07T09:15:39.057962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" create_test.go:128: 2022-12-07 08:15:39.057: cmd: matched \"Specify a name\" = \"\u003e Specify a name\"\n"} -{"Time":"2022-12-07T09:15:39.057968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" create_test.go:129: 2022-12-07 08:15:39.057: cmd: stdin: \"my-workspace\\r\"\n"} -{"Time":"2022-12-07T09:15:39.058044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.058: cmd: stdout: \"\u003e Specify a name for your workspace: my-workspace\"\n"} -{"Time":"2022-12-07T09:15:39.05813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.375µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"a40506f6-5267-4892-8803-e52b7c1e519b\"}\n"} -{"Time":"2022-12-07T09:15:39.058312+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.058318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.05832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ca78302-ead0-4034-b51e-800bea01845e\"}\n"} -{"Time":"2022-12-07T09:15:39.058346+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.058351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.058353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.058 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.5µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"57e87aa3-9ea2-4adc-8e4f-449f47e4f467\"}\n"} -{"Time":"2022-12-07T09:15:39.05845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.058: cmd: stdout: \"Select a template below to preview the provisioned infrastructure: \"\n"} -{"Time":"2022-12-07T09:15:39.061823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.061827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.061829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"255.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b9d02814-e322-43e8-a344-ed4b643be013\"}\n"} -{"Time":"2022-12-07T09:15:39.063354+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.063358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.06336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.063 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/organizations/11c9282c-985b-41b5-841f-d468db51bba6/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"4.838667ms\", \"status_code\": 200, \"latency_ms\": 4, \"request_id\": \"a3877544-0bb5-4c9f-8bc4-d8187d2653d2\"}\n"} -{"Time":"2022-12-07T09:15:39.063427+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.063434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.063437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.063 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f63c269-a4cf-4bb8-a278-19de25bddb12\"}\n"} -{"Time":"2022-12-07T09:15:39.063533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:39.063774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.063779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.063784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.063 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"264µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"303fbdde-041b-45d9-877a-0d02cab5107a\"}\n"} -{"Time":"2022-12-07T09:15:39.064147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.064 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"230.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c7a7a84b-bd9d-4ea4-89cb-3da44f5f70df\"}\n"} -{"Time":"2022-12-07T09:15:39.064226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.064: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:39.06471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.064 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"425.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ff29b921-98b0-4c67-aa03-69654fdc0e10\"}\n"} -{"Time":"2022-12-07T09:15:39.064813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.064: cmd: stdout: \"Planning workspace...\"\n"} -{"Time":"2022-12-07T09:15:39.064817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.064: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:39.065344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.065 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c/dry-run/f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3d3d170b-8dd6-425b-9eb3-434b61a94fbc\"}\n"} -{"Time":"2022-12-07T09:15:39.079193+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.079197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.079199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.079246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.079298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:39.079325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.079369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.079376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.07938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.079441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:39.079655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.079 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"228.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b3f46f88-2f4d-463a-8446-03559e20cc51\"}\n"} -{"Time":"2022-12-07T09:15:39.080078+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter"} -{"Time":"2022-12-07T09:15:39.080081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":"=== CONT TestUpdate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.080083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.080 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:39.08011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.080 [DEBUG]\t(provisionerd-unruffled_thompson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:39.080128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.080 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:39.080154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.080 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:39.080178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.080 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"0a7885d3-c05f-4fdd-bac9-77f6e8516012\"}\n"} -{"Time":"2022-12-07T09:15:39.08031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" ptytest.go:80: 2022-12-07 08:15:39.080: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:39.080344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.080 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57179\", \"path\": \"/api/v2/workspacebuilds/d1a3d23d-ef39-477e-a036-414c8eacac65/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.043133125s\", \"status_code\": 101, \"latency_ms\": 1043, \"request_id\": \"10ad1626-1c6d-4a6f-8e43-48f0ddf342b3\"}\n"} -{"Time":"2022-12-07T09:15:39.080351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.080 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:39.08106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:39.081104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate","Output":"--- PASS: TestUpdate (0.00s)\n"} -{"Time":"2022-12-07T09:15:39.081107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs","Output":" --- PASS: TestUpdate/NoArgs (0.00s)\n"} -{"Time":"2022-12-07T09:15:39.081111+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUpdate/NoArgs","Elapsed":0} -{"Time":"2022-12-07T09:15:39.081113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Output":" --- PASS: TestUpdate/OK (3.66s)\n"} -{"Time":"2022-12-07T09:15:39.081115+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUpdate/OK","Elapsed":3.66} -{"Time":"2022-12-07T09:15:39.081118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Output":" --- PASS: TestUpdate/WithParameter (4.15s)\n"} -{"Time":"2022-12-07T09:15:39.081126+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUpdate/WithParameter","Elapsed":4.15} -{"Time":"2022-12-07T09:15:39.081127+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestUpdate","Elapsed":0} -{"Time":"2022-12-07T09:15:39.081129+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.08113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.083339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"95.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4c61effc-7a48-4e6e-bffb-c3af7badd50c\"}\n"} -{"Time":"2022-12-07T09:15:39.083579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7d808145-b7ef-4c70-b003-a55a1b164103\"}\n"} -{"Time":"2022-12-07T09:15:39.084023+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.08403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.084031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"365.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bfb9a4e1-5913-4898-9eee-17edc0fbde75\"}\n"} -{"Time":"2022-12-07T09:15:39.084073+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.084079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.084081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:39.084083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.084087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.084091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.084108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.084124+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.084127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.084129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"379.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"de329812-8539-4ce1-976b-7cbe4d6006ca\"}\n"} -{"Time":"2022-12-07T09:15:39.084132+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.084134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.084135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:39.084148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:39.084236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.084257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:39.084743+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.084747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.084755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.084 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/organizations/9bb32d6f-8a82-418b-a77a-831720885c3e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3c19524c-e66b-4b20-82b8-5f60a6bc9918\"}\n"} -{"Time":"2022-12-07T09:15:39.08482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" configssh_test.go:669: waiting for template version job 99c7b150-83e5-4c52-9b93-dc2cf0382e89\n"} -{"Time":"2022-12-07T09:15:39.087226+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.08723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.087232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.087 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"321.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d34efea9-156c-4f7d-b6df-67b17d9b62be\"}\n"} -{"Time":"2022-12-07T09:15:39.088927+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.088932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.088933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.088 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"365.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c843a461-6d65-4d12-9887-846c3f6e2616\"}\n"} -{"Time":"2022-12-07T09:15:39.08902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:39.102237+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.102243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.102245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.102 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"5.666µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:39.104778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.104 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.104885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.104 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.105837+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.105841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.105843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5aeb8def-6098-4916-bb0b-48ec2bcf3b32\"}\n"} -{"Time":"2022-12-07T09:15:39.108528+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.108534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.108536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.108 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"234.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"34b410c0-b4d5-4590-8a09-ac7c44320057\"}\n"} -{"Time":"2022-12-07T09:15:39.110329+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.110333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.110337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.110 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"227.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"68d36a73-b1b8-41a4-b959-6b2628d21893\"}\n"} -{"Time":"2022-12-07T09:15:39.111623+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.111627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.111628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"213.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0f5b54c9-ac6e-49c4-92c8-da4ed5d6db86\"}\n"} -{"Time":"2022-12-07T09:15:39.113481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.113485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.113487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.113 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"260.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f278646-a1d5-4381-94d4-13e1729e0f42\"}\n"} -{"Time":"2022-12-07T09:15:39.11359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:39.12641+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.126416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.126418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.126 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"3.667µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:39.129716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.129 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.129857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.129 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.130123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.130 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"269.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2a681295-4275-4245-8ef2-09280deb2f54\"}\n"} -{"Time":"2022-12-07T09:15:39.133729+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.133734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.133736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.133 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"283.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b08d36d4-c711-4f8d-a6f2-6703788dff68\"}\n"} -{"Time":"2022-12-07T09:15:39.134368+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.134371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.134373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.134 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:39.134391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.134 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.134395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.134 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.134423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.134 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:39.134465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.134 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:39.134524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.134 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:39.135236+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.135241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.135243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.135 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"240.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96ed48a0-1820-4721-ad14-d5d7e47fb748\"}\n"} -{"Time":"2022-12-07T09:15:39.136643+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.136647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.136649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.136 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"244.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"297ba363-d213-4744-9dac-9d146ebc4513\"}\n"} -{"Time":"2022-12-07T09:15:39.138484+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.138487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.138494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.138 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"275.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"285b336c-6cb4-47ac-a216-6d888c70fb9e\"}\n"} -{"Time":"2022-12-07T09:15:39.138587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:39.155422+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.155429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.155431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.155511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.155516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.155519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.155521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.155524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.155538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.155638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.155652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.155851+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.155855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.155857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.155 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31558757-5ebb-435c-bfcc-d5f4f9b3cd9d\"}\n"} -{"Time":"2022-12-07T09:15:39.158533+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.158536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.158538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"237.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39b1d6de-a86e-4b5d-823c-5c4445a76362\"}\n"} -{"Time":"2022-12-07T09:15:39.16038+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.160384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.160386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.160 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"264.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e1c057a5-9886-4ee7-b1e7-caceb035b83a\"}\n"} -{"Time":"2022-12-07T09:15:39.161634+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.161638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.16164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.161 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"253.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cf7af371-492f-42a5-861a-0dd8437c6a0e\"}\n"} -{"Time":"2022-12-07T09:15:39.163551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.163557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.163559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.163 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a6b14046-4c13-4bfd-b42d-a3eb9a9b622e\"}\n"} -{"Time":"2022-12-07T09:15:39.163683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:39.180463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.180468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.18047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.18051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.180534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.180551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.180562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.180567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.180603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.180666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.180682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.180898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.180 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8bb43ec7-6e77-407b-b1b6-762adf12b4e1\"}\n"} -{"Time":"2022-12-07T09:15:39.182893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.182903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.182906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.182 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:39.183371+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.183376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.183378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.183 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"282.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"19f03f84-801d-4ff8-9f76-8fcebe0e41e4\"}\n"} -{"Time":"2022-12-07T09:15:39.184735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.184739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.184741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.184 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:39.184745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.184 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:39.184762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.184 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:39.184789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.184 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"b7dffff1-c91f-4b47-bf3b-60c28a21799b\"}\n"} -{"Time":"2022-12-07T09:15:39.185272+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.185277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.185279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6f4e6737-fb48-4c99-a0ce-b7a5ba617973\"}\n"} -{"Time":"2022-12-07T09:15:39.186657+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.186662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.186664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.186 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"267.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae158c38-4363-4233-bf95-d3f83644eb1c\"}\n"} -{"Time":"2022-12-07T09:15:39.187147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.187 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/organizations/e5f2fc78-d559-42e5-bc7c-cdb358d9574e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b7d8832b-4ac2-4acd-8638-34b986a53916\"}\n"} -{"Time":"2022-12-07T09:15:39.188452+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.188457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.188459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.188 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"316.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f0c73c2b-cba0-4a08-9855-8a50a44df72c\"}\n"} -{"Time":"2022-12-07T09:15:39.188595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:39.189556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.189561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.189569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.189 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/users\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"553.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8dd838e4-0f2e-4f1d-816c-b7aade63abd1\"}\n"} -{"Time":"2022-12-07T09:15:39.189796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.189 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"35.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d328c9e3-b5ef-48e8-8e7b-5139f39b3858\"}\n"} -{"Time":"2022-12-07T09:15:39.190365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.190 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.291µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"4303d32c-b951-432a-81f7-1d1c9d071bd1\"}\n"} -{"Time":"2022-12-07T09:15:39.190631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.190 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"18µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad4ec996-00c4-48e8-af62-d13a7938c034\"}\n"} -{"Time":"2022-12-07T09:15:39.191114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a7b8e9f-1cfd-41d4-8871-90b44495e10e\"}\n"} -{"Time":"2022-12-07T09:15:39.191576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/users/me/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"25.833µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"e738fdae-f48a-4849-9d50-1cd59853a80e\"}\n"} -{"Time":"2022-12-07T09:15:39.198323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.198 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/organizations/e5f2fc78-d559-42e5-bc7c-cdb358d9574e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"6.516458ms\", \"status_code\": 200, \"latency_ms\": 6, \"request_id\": \"f8b4758b-1011-4a98-9f43-a92a04574977\"}\n"} -{"Time":"2022-12-07T09:15:39.198856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.198 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"278.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11f21b60-0b00-47b6-b231-d516a74e902f\"}\n"} -{"Time":"2022-12-07T09:15:39.199432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.199 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d98341f-eb62-4576-a3b7-bab290375485\"}\n"} -{"Time":"2022-12-07T09:15:39.200157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.200 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd/dry-run\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"441.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"01801c43-48bc-4801-889e-46a2a62b61d4\"}\n"} -{"Time":"2022-12-07T09:15:39.200829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.200 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd/dry-run/c07a20c6-affc-4662-8d25-f8c526a3f148\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9dc86e8a-2018-4783-9686-19f0a7160bd6\"}\n"} -{"Time":"2022-12-07T09:15:39.204716+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.204724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.204727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.204 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f128d8d9-a131-4117-8823-619ecf2916b9\"}\n"} -{"Time":"2022-12-07T09:15:39.205846+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.205852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.205862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.205 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.205882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.205 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.205885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.205 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.205896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.205 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.205919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.205 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.205978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.205 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.20859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3deef944-f800-4b34-8043-7df590ff6e93\"}\n"} -{"Time":"2022-12-07T09:15:39.21034+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.210345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.210347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.210 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e6eddd2b-c9a1-41f2-941b-f6232fbda08c\"}\n"} -{"Time":"2022-12-07T09:15:39.213741+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.213744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.213746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.213 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"19b36353-16f8-4f50-820f-df1d1bf6dab6\"}\n"} -{"Time":"2022-12-07T09:15:39.213848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:39.230871+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.230894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.230897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.230 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.2309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.230 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.230905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.230 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.230908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.230 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"410.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d0d9d588-9cd9-459b-acd7-2021bd990c9b\"}\n"} -{"Time":"2022-12-07T09:15:39.230934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.230 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.230952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.230 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.231012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.230 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.233221+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.233229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.233233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.233283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.233341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:39.233366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.233386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"size_bytes\": 141, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.233414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"size_bytes\": 141, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.233431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.233502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.233 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:39.23365+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.233655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.233658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.233 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"66bb59f2-163b-4ab5-ae32-104432b63e22\"}\n"} -{"Time":"2022-12-07T09:15:39.235367+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.235372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.235374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40b23eae-0ec0-4438-b417-f91654ae09eb\"}\n"} -{"Time":"2022-12-07T09:15:39.238717+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.238728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.23873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.238 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"331.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ee99c5b1-13e9-4301-9a62-db825f0ee294\"}\n"} -{"Time":"2022-12-07T09:15:39.23894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:39.255302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.255307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.25531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.255 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"312.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf2d45ea-2465-4e3e-a5d2-f45f03dd1e3f\"}\n"} -{"Time":"2022-12-07T09:15:39.256173+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.256179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.256182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.256 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.256222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.256 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.256252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.256 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.25627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.256 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"fbc31c38-1358-4b9d-88e4-880f50b54565\"}\n"} -{"Time":"2022-12-07T09:15:39.258619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.258 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/templateversions/c77e9488-cbc4-4dfd-9c3f-b8654ca113fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd373121-8d02-49ed-9934-38d7aafac47e\"}\n"} -{"Time":"2022-12-07T09:15:39.259154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/organizations/96028bb4-e824-4dd2-98ef-89bc8d228673/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"081ac78c-3850-418e-8629-5de5bdc9b847\"}\n"} -{"Time":"2022-12-07T09:15:39.260031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/organizations/96028bb4-e824-4dd2-98ef-89bc8d228673/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"662.041µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c3fc38d9-5729-4f3c-80fc-bc44131a719c\"}\n"} -{"Time":"2022-12-07T09:15:39.260122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" delete_test.go:88: waiting for workspace build job b89a2166-1223-402d-8951-d86254b72931\n"} -{"Time":"2022-12-07T09:15:39.260359+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.260365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.260368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.260 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d5ddcad-6c6f-4738-91ba-124badb5801c\"}\n"} -{"Time":"2022-12-07T09:15:39.263754+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.26376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.263762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.263 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24a4ee80-2724-4f7c-9e71-5dbbc3571f36\"}\n"} -{"Time":"2022-12-07T09:15:39.263861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:39.280833+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.280838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.280841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.280 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11437dec-bbc4-49a2-bcae-917076f50371\"}\n"} -{"Time":"2022-12-07T09:15:39.281083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.281 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.281103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.281 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.281124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.281 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.281171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.281 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"66659cba-3689-4fac-bf4c-2ddd8c23c85f\"}\n"} -{"Time":"2022-12-07T09:15:39.282182+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.282189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.282192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.282 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"12.375µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:39.283575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.283 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.283779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.283 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33f51cad-45a7-43bd-bb00-e683120ed489\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"b29b9c1f-b052-4fbf-9580-0908365c535d\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.285571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06e9e306-ca38-406c-9e81-fd0dfa7e4371\"}\n"} -{"Time":"2022-12-07T09:15:39.285666+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.285675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.285679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"384.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"45e14baa-17c3-4a61-b0a1-c2d052eb73f9\"}\n"} -{"Time":"2022-12-07T09:15:39.288839+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.288848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.288851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.288 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"442.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f2f68abe-6497-4b35-9e13-5401533059fa\"}\n"} -{"Time":"2022-12-07T09:15:39.288973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:39.306089+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.306096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.306099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.306 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/templateversions/d1e0b52c-22d6-45cb-8b51-7891efed1a0e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"441.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d7097ba-e9c0-4919-b313-b72088370778\"}\n"} -{"Time":"2022-12-07T09:15:39.306826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.306 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/organizations/89879752-0350-4103-8858-5ceacf36bf8c/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"462.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"83d6af47-4bdc-4e8d-9d8d-a0efe3ac3a90\"}\n"} -{"Time":"2022-12-07T09:15:39.308008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.307 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/organizations/89879752-0350-4103-8858-5ceacf36bf8c/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"927.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"631a2da1-4fad-49bc-abf0-6bc357cba27f\"}\n"} -{"Time":"2022-12-07T09:15:39.308124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" delete_test.go:54: waiting for workspace build job abcf2554-1e17-4270-870a-55505d6887ca\n"} -{"Time":"2022-12-07T09:15:39.310624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.310634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.310639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dd00922b-0eb6-447f-9522-44217708e986\"}\n"} -{"Time":"2022-12-07T09:15:39.310669+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.310675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.31068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.310 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"95572bcf-e80d-4da3-b878-1e0c945737f6\"}\n"} -{"Time":"2022-12-07T09:15:39.313823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.313832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.313837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"442.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d830d63-aab6-49ca-9ccd-5dd26ae7b3bf\"}\n"} -{"Time":"2022-12-07T09:15:39.313974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:39.327647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.327 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"54.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f955c56-26f1-4cf2-8034-7b65f35f8e17\"}\n"} -{"Time":"2022-12-07T09:15:39.327983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.327 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"caf96922-68b1-4569-8482-caa535d0f9b9\", \"agent_id\": \"effff068-4a00-4305-9d32-7c115f5bf88b\", \"agent_version\": \"v0.0.0-devel\"}\n"} -{"Time":"2022-12-07T09:15:39.328029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.327 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"114.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"caf96922-68b1-4569-8482-caa535d0f9b9\"}\n"} -{"Time":"2022-12-07T09:15:39.328424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.328 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"41.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e34a3d0-cc16-4fdf-95b5-f6b454fb9765\"}\n"} -{"Time":"2022-12-07T09:15:39.332483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.332 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"a10350e2-16b6-431b-85d0-502a0138ad97\", \"agent\": {\"id\": \"effff068-4a00-4305-9d32-7c115f5bf88b\", \"created_at\": \"2022-12-07T08:15:38.881416Z\", \"updated_at\": \"2022-12-07T08:15:38.881416Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"6b4347a0-24fc-41fb-8822-472ffa733c4b\", \"auth_token\": \"12bbf2d0-6240-489e-b3b5-9fdb18a10a40\", \"auth_instance_id\": {\"String\": \"\", \"Valid\": false}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"directory\": \"\","} -{"Time":"2022-12-07T09:15:39.332499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} -{"Time":"2022-12-07T09:15:39.333863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.333874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.33388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.333886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.333891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.333897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.333908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.33395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.333988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.334015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.334019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.334022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.333 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"590.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"23fb05c0-eedf-42aa-a810-f92b0e0f6902\"}\n"} -{"Time":"2022-12-07T09:15:39.334261+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.334273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.334278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.334 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33f51cad-45a7-43bd-bb00-e683120ed489\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"b29b9c1f-b052-4fbf-9580-0908365c535d\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.334287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.334 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.335646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"514.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"80f96acd-a94c-424d-86a8-c5c56612359d\"}\n"} -{"Time":"2022-12-07T09:15:39.33579+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.335799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.335803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.335 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"479.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7d67f686-9ae6-4e5f-a317-aaa9b78d2010\"}\n"} -{"Time":"2022-12-07T09:15:39.338923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.338932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.338937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaces/e792d320-526b-4f68-a2a4-e4bd1a20fa11\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"525.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c3d8ad3-12f1-4578-b148-5890fc895aea\"}\n"} -{"Time":"2022-12-07T09:15:39.35667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.356 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaceagents/me/gitsshkey\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"222.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"838a9bd2-766a-4c6f-818a-b201c44c3a2d\"}\n"} -{"Time":"2022-12-07T09:15:39.361923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.36193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.361933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"874.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e64e5bdd-09fb-460d-b7cb-2498a7b3452f\"}\n"} -{"Time":"2022-12-07T09:15:39.361937+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.361939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.361941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"622.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d3478a1-bc88-40dd-8993-2f9d52f39314\"}\n"} -{"Time":"2022-12-07T09:15:39.361954+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.361957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.361959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.361 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"463.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31ad0759-6c95-4178-b504-0275b522cb15\"}\n"} -{"Time":"2022-12-07T09:15:39.365351+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.365363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.365366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" ptytest.go:103: 2022-12-07 08:15:39.365: cmd: stdout: \"Pseudo-terminal will not be allocated because stdin is not a terminal.\\r\"\n"} -{"Time":"2022-12-07T09:15:39.383616+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.383622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.383625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.383 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3a087a7f-687d-42db-88d5-04b63e9e94b9\"}\n"} -{"Time":"2022-12-07T09:15:39.384494+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.384498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.384501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.384 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.384512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.384 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.384529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.384 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.384555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.384 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.384574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.384 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.384654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.384 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.385308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.385 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"305.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57d30cf0-1b49-4c87-a6b1-cc5f15d7b6d4\"}\n"} -{"Time":"2022-12-07T09:15:39.385523+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.385532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.385535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.385 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"266.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a9a71726-a75b-4a1f-a86d-20bb9c16088b\"}\n"} -{"Time":"2022-12-07T09:15:39.409097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.409121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.409132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.409 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"277.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"56df88b3-e8b4-4885-99ff-7c84c3ebdefc\"}\n"} -{"Time":"2022-12-07T09:15:39.410315+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.410321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.410323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"255.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"294eea05-0a27-4a6a-a27f-f23002ef9ec6\"}\n"} -{"Time":"2022-12-07T09:15:39.410536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.410541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.410543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"280.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ed6dc68e-d172-4dd8-84a6-e34fcf453f5f\"}\n"} -{"Time":"2022-12-07T09:15:39.421016+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.42102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.421022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.420 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} -{"Time":"2022-12-07T09:15:39.421049+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.421063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.421065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} -{"Time":"2022-12-07T09:15:39.421128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.421131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.421132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} -{"Time":"2022-12-07T09:15:39.421135+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.421136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.421138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"competent-jang4\", \"provisioner\": \"echo\", \"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} -{"Time":"2022-12-07T09:15:39.421169+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.421173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.421176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:39.421186+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.421188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.42119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:39.421221+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.421229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.421231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.421235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.421237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.421239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.421258+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.421261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.421262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.421266+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.421267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.421269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.421298+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.421301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.421303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.421317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"workspace_name\": \"my-workspace\", \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:39.421321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.421329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.421331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.421343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"workspace_name\": \"my-workspace\", \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:39.421516+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.421522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.421525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.421527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.42153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.421537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.421539+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.42154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.421542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} -{"Time":"2022-12-07T09:15:39.421545+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.421546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.421548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.421 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} -{"Time":"2022-12-07T09:15:39.433635+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.433639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.433641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.433 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62115575-9563-43b9-81bf-f82d3415733a\"}\n"} -{"Time":"2022-12-07T09:15:39.434863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.434868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.434871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.434 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.434875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.434 [INFO]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:39.434934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.434 [INFO]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"resource_name\": \"bar\", \"resource_type\": \"aws_instance\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:39.434937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.434 [INFO]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:39.435005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.434 [INFO]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\", \"resource_name\": \"bar\", \"resource_type\": \"aws_instance\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:39.435028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.435 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.435046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.435 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.43509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.435 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"32b21639-dc3b-457e-8f6b-6e21eb0cb8c3\"}\n"} -{"Time":"2022-12-07T09:15:39.435297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a198a24b-7045-493e-9506-3581022996ce\"}\n"} -{"Time":"2022-12-07T09:15:39.435627+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.435633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.435635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"332.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6dfa77f3-f364-4d3b-bff3-a4fbd7b0a648\"}\n"} -{"Time":"2022-12-07T09:15:39.435864+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.43587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.435872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/organizations/9bb32d6f-8a82-418b-a77a-831720885c3e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"840f4d44-2a0a-4ecb-84ce-f6d842e20148\"}\n"} -{"Time":"2022-12-07T09:15:39.436645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.436 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/organizations/9bb32d6f-8a82-418b-a77a-831720885c3e/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"594.291µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0131d2af-ffab-4a30-88a2-bcf81c85e2b1\"}\n"} -{"Time":"2022-12-07T09:15:39.436721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" configssh_test.go:672: waiting for workspace build job 396668ad-81e0-4aa9-9aea-cc038eb638fe\n"} -{"Time":"2022-12-07T09:15:39.45968+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.459689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.459691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.459 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"335.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1fd0b131-3eb5-45e5-81ea-7a8ade1ad97c\"}\n"} -{"Time":"2022-12-07T09:15:39.460551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.460555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.460558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.460 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58aab2ef-50d8-49ca-83e6-1c297f323b7e\"}\n"} -{"Time":"2022-12-07T09:15:39.462276+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.462281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.462283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.462 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"288.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6eeaf2c3-e732-44c8-a2f7-c09c73342d8c\"}\n"} -{"Time":"2022-12-07T09:15:39.466039+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.466045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.466047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" ptytest.go:103: 2022-12-07 08:15:39.466: cmd: stdout: \"Warning: Permanently added '[127.0.0.1]:57431' (RSA) to the list of known hosts.\\r\"\n"} -{"Time":"2022-12-07T09:15:39.469676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" gitssh_test.go:199: authenticated with: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBbDqjY6weDEUT8aTAxTW9847XChexEtXqZsMaw4Z51u78yUBTpc4BEZLz6/TPhZ1Sg2Z+pXPwjVibJKP5bD/Us=\n"} -{"Time":"2022-12-07T09:15:39.47168+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.471684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.471686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} -{"Time":"2022-12-07T09:15:39.471689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.471692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.471695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} -{"Time":"2022-12-07T09:15:39.471728+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.471731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.471732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} -{"Time":"2022-12-07T09:15:39.471734+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.471735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.471738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} -{"Time":"2022-12-07T09:15:39.471741+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.47177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.471775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.47178+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.471782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.471785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} -{"Time":"2022-12-07T09:15:39.471788+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.471789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.471791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.471794+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.471796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.471797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:39.471821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"request_id\": \"61387a1b-740c-42e3-b168-af7d04389c6c\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:39.471828+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.47183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.471832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} -{"Time":"2022-12-07T09:15:39.47184+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.471841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.471843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:39.471845+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.471847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.471848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} -{"Time":"2022-12-07T09:15:39.471889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.471894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.471896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"request_id\": \"61387a1b-740c-42e3-b168-af7d04389c6c\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:39.471899+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.471901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.471903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} -{"Time":"2022-12-07T09:15:39.471906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:39.471927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"request_id\": \"13df5581-f47c-40f1-b190-3e516cba9a6b\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:39.471942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:39.472016+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.472019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.472021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.471: cmd: stdout: \"\\x1b[1A\\r✔ Queued [356ms]\"\n"} -{"Time":"2022-12-07T09:15:39.472023+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.472024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.472026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\", \"request_id\": \"13df5581-f47c-40f1-b190-3e516cba9a6b\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:39.47203+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.472031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.472039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.472: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:39.472055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.472: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} -{"Time":"2022-12-07T09:15:39.472058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.472: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:39.480815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.480825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.480827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.480 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaceagents/me/gitsshkey\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"61.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f42e523c-7207-4623-87aa-71acf7917c02\"}\n"} -{"Time":"2022-12-07T09:15:39.485792+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.4858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.485806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.485 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"712.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f4d451b9-a1f8-4681-9e89-f2de172dbb34\"}\n"} -{"Time":"2022-12-07T09:15:39.486079+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.486083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.486085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.486 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"540.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6419442c-45cc-4f43-b32b-14c05ea8ee62\"}\n"} -{"Time":"2022-12-07T09:15:39.486505+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:39.486509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.486511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.486 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} -{"Time":"2022-12-07T09:15:39.486651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.486 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} -{"Time":"2022-12-07T09:15:39.486737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.486 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:39.48681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.486 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"size_bytes\": 81, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.486832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.486 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.486854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.486 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.48688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.486 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"workspace_name\": \"my-workspace\", \"parameters\": [{\"destination_scheme\": 1, \"name\": \"region\", \"value\": \"bingo\"}, {\"destination_scheme\": 1, \"name\": \"username\", \"value\": \"boingo\"}]}\n"} -{"Time":"2022-12-07T09:15:39.487082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.487 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.487111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.487 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} -{"Time":"2022-12-07T09:15:39.487407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.487412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.487415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.487 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"377.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7f8c5b6e-fa95-403c-bb72-7f680e1e144f\"}\n"} -{"Time":"2022-12-07T09:15:39.48797+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys"} -{"Time":"2022-12-07T09:15:39.487973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":"=== CONT TestGitSSH/Local_SSH_Keys\n"} -{"Time":"2022-12-07T09:15:39.487975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" ptytest.go:103: 2022-12-07 08:15:39.487: cmd: stdout: \"Pseudo-terminal will not be allocated because stdin is not a terminal.\\r\"\n"} -{"Time":"2022-12-07T09:15:39.492567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" gitssh_test.go:199: authenticated with: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDks9zssCUQuXQKVHtlCnpQ+SSxqIqKMVKVdUSvoWyPq\n"} -{"Time":"2022-12-07T09:15:39.493152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" ptytest.go:80: 2022-12-07 08:15:39.493: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:39.493468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.493 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"110.924375ms\", \"status_code\": 0, \"latency_ms\": 110, \"request_id\": \"9de431fd-387e-4e4e-b8f0-2fe77edffca6\"}\n"} -{"Time":"2022-12-07T09:15:39.493478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.493 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57298\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"161.209167ms\", \"status_code\": 101, \"latency_ms\": 161, \"request_id\": \"a10350e2-16b6-431b-85d0-502a0138ad97\"}\n"} -{"Time":"2022-12-07T09:15:39.493705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" t.go:81: 2022-12-07 08:15:39.493 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:39.493906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:39.494892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH","Output":"--- PASS: TestGitSSH (0.00s)\n"} -{"Time":"2022-12-07T09:15:39.4949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Output":" --- PASS: TestGitSSH/Dial (1.84s)\n"} -{"Time":"2022-12-07T09:15:39.494903+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Dial","Elapsed":1.84} -{"Time":"2022-12-07T09:15:39.494907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Output":" --- PASS: TestGitSSH/Local_SSH_Keys (2.02s)\n"} -{"Time":"2022-12-07T09:15:39.49491+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestGitSSH/Local_SSH_Keys","Elapsed":2.02} -{"Time":"2022-12-07T09:15:39.494912+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestGitSSH","Elapsed":0} -{"Time":"2022-12-07T09:15:39.494914+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.494915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.497967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.497 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"114.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9e1bf956-d48f-434e-8004-48cf2763eee7\"}\n"} -{"Time":"2022-12-07T09:15:39.498163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.498 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"36.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"078f9fd2-d62f-4f62-ace7-0e00e94e4475\"}\n"} -{"Time":"2022-12-07T09:15:39.498767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.498 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0b38e9f4-e562-428c-8c6b-e5b0cf85185a\"}\n"} -{"Time":"2022-12-07T09:15:39.499494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.499 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/organizations/b620295d-6d4f-4bcb-bd02-fa6ccee9bfe5/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"542.959µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f8ce57c9-741d-4a2b-8e2f-426ef367710b\"}\n"} -{"Time":"2022-12-07T09:15:39.499591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" configssh_test.go:669: waiting for template version job 2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\n"} -{"Time":"2022-12-07T09:15:39.510476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.510481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.510483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"375.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"52a198a5-d5d8-4f30-96db-f4504a1ac68c\"}\n"} -{"Time":"2022-12-07T09:15:39.511145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.511148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.511149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.511 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0beb54a3-439f-4b8e-a58f-eaa5e0b929b6\"}\n"} -{"Time":"2022-12-07T09:15:39.512739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.512742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.512744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.512 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"547241ac-ce81-44e5-8dc3-60452d7a482f\"}\n"} -{"Time":"2022-12-07T09:15:39.523012+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.523029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.523031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.522 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} -{"Time":"2022-12-07T09:15:39.523037+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.523039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.523041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.522 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} -{"Time":"2022-12-07T09:15:39.523048+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.523059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.523066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.522 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} -{"Time":"2022-12-07T09:15:39.523098+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.523102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.523104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} -{"Time":"2022-12-07T09:15:39.523144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} -{"Time":"2022-12-07T09:15:39.523149+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.52315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.523152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} -{"Time":"2022-12-07T09:15:39.523182+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.523185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.523196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} -{"Time":"2022-12-07T09:15:39.523199+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.5232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.523202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} -{"Time":"2022-12-07T09:15:39.523204+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.523206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.523208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.523 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} -{"Time":"2022-12-07T09:15:39.52321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.523212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.523213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.523 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} -{"Time":"2022-12-07T09:15:39.523216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"c07a20c6-affc-4662-8d25-f8c526a3f148\"}\n"} -{"Time":"2022-12-07T09:15:39.52322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.523222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.523225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"f2e8a249-ce1d-4037-8fb0-6039a528bf31\"}\n"} -{"Time":"2022-12-07T09:15:39.523463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.52347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.523472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd/dry-run/c07a20c6-affc-4662-8d25-f8c526a3f148/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.105125ms\", \"status_code\": 101, \"latency_ms\": 320, \"request_id\": \"13df5581-f47c-40f1-b190-3e516cba9a6b\"}\n"} -{"Time":"2022-12-07T09:15:39.523476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.523494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.523499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.523 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c/dry-run/f2e8a249-ce1d-4037-8fb0-6039a528bf31/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.338291ms\", \"status_code\": 101, \"latency_ms\": 457, \"request_id\": \"61387a1b-740c-42e3-b168-af7d04389c6c\"}\n"} -{"Time":"2022-12-07T09:15:39.524666+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.52467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.524672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.524 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd/dry-run/c07a20c6-affc-4662-8d25-f8c526a3f148\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"620.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"013145b6-9ad0-4975-9d42-c3bb9e03a2ef\"}\n"} -{"Time":"2022-12-07T09:15:39.524829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.524834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.524836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.524 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c/dry-run/f2e8a249-ce1d-4037-8fb0-6039a528bf31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"753.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e2391ce-7c86-46c3-a75e-efd07fe463f1\"}\n"} -{"Time":"2022-12-07T09:15:39.524984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.524: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [102ms]\"\n"} -{"Time":"2022-12-07T09:15:39.524991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.524993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.524998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.524 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1eb9e5e6-51d5-4b9c-89fa-7dd715aafe73\"}\n"} -{"Time":"2022-12-07T09:15:39.525337+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.525342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.525344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.525 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/templateversions/9ef331ec-b2af-4b02-8664-c5e676b5f0bd/dry-run/c07a20c6-affc-4662-8d25-f8c526a3f148/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"493.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e819ff09-2851-4101-90dd-f674c97422c3\"}\n"} -{"Time":"2022-12-07T09:15:39.525636+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.525639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.525642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.525 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/templateversions/67fe052d-d643-4f71-a35b-ee3efde22c3c/dry-run/f2e8a249-ce1d-4037-8fb0-6039a528bf31/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"572.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e83f473c-9f00-41dc-af06-36763a4e75ef\"}\n"} -{"Time":"2022-12-07T09:15:39.525735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"┌──────────────────┐\"\n"} -{"Time":"2022-12-07T09:15:39.525746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"│ Workspace Previe │\"\n"} -{"Time":"2022-12-07T09:15:39.525749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"│ w │\"\n"} -{"Time":"2022-12-07T09:15:39.52575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"├──────────────────┤\"\n"} -{"Time":"2022-12-07T09:15:39.525752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"│ RESOURCE ACCESS │\"\n"} -{"Time":"2022-12-07T09:15:39.525754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"├──────────────────┤\"\n"} -{"Time":"2022-12-07T09:15:39.525756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"└──────────────────┘\"\n"} -{"Time":"2022-12-07T09:15:39.525836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" create_test.go:128: 2022-12-07 08:15:39.525: cmd: matched \"Confirm create?\" = \" for your workspace: my-workspace\\r\\nSelect a template below to preview the provisioned infrastructure: \\r\\n\\r\\nPlanning workspace...\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [356ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [0ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Cleaning Up [102ms]\\r\\n┌──────────────────┐\\r\\n│ Workspace Previe │\\r\\n│ w │\\r\\n├──────────────────┤\\r\\n│ RESOURCE ACCESS │\\r\\n├──────────────────┤\\r\\n└──────────────────┘\\r\\n\u003e Confirm create?\"\n"} -{"Time":"2022-12-07T09:15:39.525843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" create_test.go:129: 2022-12-07 08:15:39.525: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:39.525883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.525: cmd: stdout: \"\u003e Confirm create? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:39.526046+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.526049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.52605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.526 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/organizations/e5f2fc78-d559-42e5-bc7c-cdb358d9574e/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"527.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"707d53be-80cc-4b64-98c5-2fd070a85a95\"}\n"} -{"Time":"2022-12-07T09:15:39.526485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.526 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/workspacebuilds/835d4c3e-f06a-4134-a812-5a89b1441592\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"250.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e1a2349b-cf7e-45b0-bd3c-3451cb876da3\"}\n"} -{"Time":"2022-12-07T09:15:39.52649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:39.526492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:39.526494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.526 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/organizations/11c9282c-985b-41b5-841f-d468db51bba6/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"540.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c7710b6a-a186-4d45-8887-8bc18c993ff7\"}\n"} -{"Time":"2022-12-07T09:15:39.526575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:39.526: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:39.526921+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:39.526 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/workspacebuilds/a693fe94-96b6-4e0f-9ca0-835aa85a3def\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"253e73d1-d24d-45fc-843a-9204b6ddbe4d\"}\n"} -{"Time":"2022-12-07T09:15:39.534203+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.534207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.534209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.534 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"268.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b1000fb-e4b8-4d86-8ab2-9e8d6013690a\"}\n"} -{"Time":"2022-12-07T09:15:39.535654+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.535657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.535658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3357abbc-3114-436b-86e2-05263e9e3cbf\"}\n"} -{"Time":"2022-12-07T09:15:39.537227+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:39.537229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.537231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} -{"Time":"2022-12-07T09:15:39.53727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.537275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.537277+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.537278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.53728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ba73250d-e376-400a-8329-c13d119c3992\"}\n"} -{"Time":"2022-12-07T09:15:39.537284+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:39.537286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.537287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} -{"Time":"2022-12-07T09:15:39.537343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} -{"Time":"2022-12-07T09:15:39.537347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:39.53735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:39.537356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} -{"Time":"2022-12-07T09:15:39.537395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"request_id\": \"4be908f6-dc1c-4e93-84cf-968ed847ef71\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:39.537433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\", \"request_id\": \"4be908f6-dc1c-4e93-84cf-968ed847ef71\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:39.537537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.537: cmd: stdout: \"\\x1b[1A\\r✔ Queued [495ms]\"\n"} -{"Time":"2022-12-07T09:15:39.537551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.537: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:39.537555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.537: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [1ms]\"\n"} -{"Time":"2022-12-07T09:15:39.537557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.537: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:39.551183+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.551187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.551189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"320.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aaf23bfa-9261-4a43-bfa5-66a56bdaa3f6\"}\n"} -{"Time":"2022-12-07T09:15:39.559487+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.55949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.559492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.559 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"83d38cdb-6483-437f-ac80-648c6a3a76a0\"}\n"} -{"Time":"2022-12-07T09:15:39.560672+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.560675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.560677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.560 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd8c7776-9174-49d3-8153-da320253068f\"}\n"} -{"Time":"2022-12-07T09:15:39.562341+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.562345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.562353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.562 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b327a580-182a-4d2a-89e2-7b35db1f4fd4\"}\n"} -{"Time":"2022-12-07T09:15:39.57624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.576244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.576246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.576 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"68a8e2f4-1b40-4761-8a03-30c04f92c04c\"}\n"} -{"Time":"2022-12-07T09:15:39.58449+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.584494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.584496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.584 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"22979472-0db8-466a-92d4-27646e845534\"}\n"} -{"Time":"2022-12-07T09:15:39.585633+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.585637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.585639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1df8cb6c-e4f1-4935-9d16-86e4dec9452d\"}\n"} -{"Time":"2022-12-07T09:15:39.587363+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.587367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.587369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5925617f-bca9-4358-adfd-2c4f80d96854\"}\n"} -{"Time":"2022-12-07T09:15:39.587457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:39.587462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.587465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.587 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} -{"Time":"2022-12-07T09:15:39.587476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.587 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} -{"Time":"2022-12-07T09:15:39.587512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.587 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} -{"Time":"2022-12-07T09:15:39.587518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} -{"Time":"2022-12-07T09:15:39.58754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.587 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} -{"Time":"2022-12-07T09:15:39.587549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"5e934427-70eb-4d40-b29a-c23088905098\"}\n"} -{"Time":"2022-12-07T09:15:39.587764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82/dry-run/5e934427-70eb-4d40-b29a-c23088905098/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"595.411625ms\", \"status_code\": 101, \"latency_ms\": 595, \"request_id\": \"4be908f6-dc1c-4e93-84cf-968ed847ef71\"}\n"} -{"Time":"2022-12-07T09:15:39.589542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82/dry-run/5e934427-70eb-4d40-b29a-c23088905098\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"828.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b2ba90b4-d4af-4254-8700-48dff59edd2b\"}\n"} -{"Time":"2022-12-07T09:15:39.589668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.589: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [100ms]\"\n"} -{"Time":"2022-12-07T09:15:39.59046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/templateversions/cd65d9c1-e474-4155-a0a5-8ee3d958bf82/dry-run/5e934427-70eb-4d40-b29a-c23088905098/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"670.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c7dd6746-c0bf-4345-9d73-95d25fb68fdd\"}\n"} -{"Time":"2022-12-07T09:15:39.590576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"┌──────────────────┐\"\n"} -{"Time":"2022-12-07T09:15:39.590582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"│ Workspace Previe │\"\n"} -{"Time":"2022-12-07T09:15:39.590586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"│ w │\"\n"} -{"Time":"2022-12-07T09:15:39.590588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"├──────────────────┤\"\n"} -{"Time":"2022-12-07T09:15:39.590591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"│ RESOURCE ACCESS │\"\n"} -{"Time":"2022-12-07T09:15:39.590608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"├──────────────────┤\"\n"} -{"Time":"2022-12-07T09:15:39.590611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"└──────────────────┘\"\n"} -{"Time":"2022-12-07T09:15:39.59069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:175: 2022-12-07 08:15:39.590: cmd: matched \"Confirm create?\" = \"\\x1b[0m boingo\\r\\n\\r\\nPlanning workspace...\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [495ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [1ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Cleaning Up [100ms]\\r\\n┌──────────────────┐\\r\\n│ Workspace Previe │\\r\\n│ w │\\r\\n├──────────────────┤\\r\\n│ RESOURCE ACCESS │\\r\\n├──────────────────┤\\r\\n└──────────────────┘\\r\\n\u003e Confirm create?\"\n"} -{"Time":"2022-12-07T09:15:39.590699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" create_test.go:176: 2022-12-07 08:15:39.590: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:39.590719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.590: cmd: stdout: \"\u003e Confirm create? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:39.591531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.591 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/organizations/b342410a-6ffc-46ec-89b1-7a1f653b07c7/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"687.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7256d746-57b3-4e4b-a0c7-62a0761c83e4\"}\n"} -{"Time":"2022-12-07T09:15:39.591672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.591: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:39.592099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.592 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/workspacebuilds/aad3e414-9393-4643-a752-ee47896a525e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d94e1fd7-1b35-4ff8-8d28-a2e0904f0800\"}\n"} -{"Time":"2022-12-07T09:15:39.597539+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.597544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.597547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.597 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:39.600464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.600 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"43074188-8d2f-46fb-ba5d-ff3e9af521e9\"}\n"} -{"Time":"2022-12-07T09:15:39.609631+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.609635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.609637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.609 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"344.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"02699b4a-9042-4ff4-82dc-892743fc519b\"}\n"} -{"Time":"2022-12-07T09:15:39.610661+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.610666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.610668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.610 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"328.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0fb0331a-a243-44bf-9172-8f0366a3eff1\"}\n"} -{"Time":"2022-12-07T09:15:39.612387+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.612392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.612394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.612 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"371.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d148403-5158-4633-9f02-f7976a630b2c\"}\n"} -{"Time":"2022-12-07T09:15:39.621033+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:39.621038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:39.621041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.620 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} -{"Time":"2022-12-07T09:15:39.621203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} -{"Time":"2022-12-07T09:15:39.621265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:39.621325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"size_bytes\": 81, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.621366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.621397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.621447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:427\u003e\t(*Runner).do\tacquired job is template dry-run\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"workspace_name\": \"my-workspace\", \"parameters\": [{\"destination_scheme\": 1, \"name\": \"region\", \"value\": \"bingo\"}, {\"destination_scheme\": 1, \"name\": \"username\", \"value\": \"boingo\"}]}\n"} -{"Time":"2022-12-07T09:15:39.621598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.621636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.621 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} -{"Time":"2022-12-07T09:15:39.625645+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.62565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.625653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.625 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"410.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ecd07fd-6499-40bb-9e12-f32fc80d8377\"}\n"} -{"Time":"2022-12-07T09:15:39.634739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.634749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.634753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.634 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"459.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"55500f4f-43c9-41e5-bacc-33297537f19d\"}\n"} -{"Time":"2022-12-07T09:15:39.635758+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.635765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.635768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ced6a6b8-0853-4a5a-8814-f785a520821e\"}\n"} -{"Time":"2022-12-07T09:15:39.637505+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.63751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.637513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"487.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2848f314-a06d-4bc8-95d2-baf32b0753de\"}\n"} -{"Time":"2022-12-07T09:15:39.648728+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.648737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.64874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.648 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.648857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.648 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.648915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.648 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:39.648966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.648 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.649008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.648 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"size_bytes\": 92, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.649043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.649 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"size_bytes\": 92, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.649062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.649 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.649193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.649 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:39.650324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.650 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"416.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b51455f-7a23-4cc2-a09e-fa540d15ae44\"}\n"} -{"Time":"2022-12-07T09:15:39.659814+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.659819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.659822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.659 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"500.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d7aa2cc9-b139-4deb-a001-ca59356812b5\"}\n"} -{"Time":"2022-12-07T09:15:39.660787+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.660793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.660797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ab5eb6c0-bcb6-4037-9e89-0692ad5a2994\"}\n"} -{"Time":"2022-12-07T09:15:39.662528+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.662536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.66254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.662 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"494.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49fba901-74c6-4a28-ad81-dbfb8a74fe30\"}\n"} -{"Time":"2022-12-07T09:15:39.672855+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:39.672863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:39.672867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.672 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} -{"Time":"2022-12-07T09:15:39.672906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.672 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.67292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.672 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.672959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.672 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} -{"Time":"2022-12-07T09:15:39.673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.672 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} -{"Time":"2022-12-07T09:15:39.673074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:39.673091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.673 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} -{"Time":"2022-12-07T09:15:39.673097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:39.673141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"request_id\": \"dd16ead4-97ad-42a8-9d6e-bf227f775445\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:39.673231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.673 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\", \"request_id\": \"dd16ead4-97ad-42a8-9d6e-bf227f775445\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:39.673426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.673: cmd: stdout: \"\\x1b[1A\\r✔ Queued [827ms]\"\n"} -{"Time":"2022-12-07T09:15:39.673468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.673: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:39.673479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.673: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} -{"Time":"2022-12-07T09:15:39.673483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.673: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:39.675413+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.67542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.675423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.675 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"465.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7478f8a3-1c9f-48c3-93c6-0508c8fc5cca\"}\n"} -{"Time":"2022-12-07T09:15:39.684925+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.684937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.68494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.684 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"615.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a7725217-f027-4592-9515-5ab879b4a0f1\"}\n"} -{"Time":"2022-12-07T09:15:39.685899+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.685908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.685911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.685 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"548.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4cc2c879-12c7-4da5-a5ed-1045c04cb59c\"}\n"} -{"Time":"2022-12-07T09:15:39.687616+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.687627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.687631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.687 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"603.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d7f7588-9a99-4689-94e2-f026e1db09dd\"}\n"} -{"Time":"2022-12-07T09:15:39.697113+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.697122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.697126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.697 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"20.792µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:39.699495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.699 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.699938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.699 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33c80784-4057-45fa-9c62-59866e771ed6\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\"}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.700597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.700 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"760.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58892c33-087b-4498-bd8f-0816fc706750\"}\n"} -{"Time":"2022-12-07T09:15:39.709392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.709407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.709413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.709 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.709555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.709 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"hopeful-edison0\", \"provisioner\": \"echo\", \"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.709669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.709 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:39.709724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.709 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.709831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.709 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.70989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.709 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.709917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.709 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"workspace_name\": \"compassionate-torvalds9\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:39.710157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.710 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.710195+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.710201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.710206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.710 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"828.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ed80a5b6-9e8d-47b5-bb65-3d9c9d01e5df\"}\n"} -{"Time":"2022-12-07T09:15:39.710218+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.710224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.710229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.710 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.711208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.711 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"714.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7aa9e6ed-1f72-40ec-ae50-5bea0147a162\"}\n"} -{"Time":"2022-12-07T09:15:39.712823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.712837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.712843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.712 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"772.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eb0d2d0c-4ba4-46e5-853a-342ba86b0e7d\"}\n"} -{"Time":"2022-12-07T09:15:39.714793+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.714802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.714806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.714 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.714944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.714 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.715049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.714 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:39.715102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.715 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.715171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.715 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.715224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.715 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.715288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.715 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"workspace_name\": \"intelligent-gagarin9\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:39.715596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.715 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.715628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.715 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.725283+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:39.725293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:39.725299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.724 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} -{"Time":"2022-12-07T09:15:39.725305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.724 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:809\u003e\t(*Server).CompleteJob\tmarked template dry-run job as completed\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} -{"Time":"2022-12-07T09:15:39.72531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.725 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} -{"Time":"2022-12-07T09:15:39.725315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.725 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} -{"Time":"2022-12-07T09:15:39.725402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.725 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} -{"Time":"2022-12-07T09:15:39.725498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.725 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"67a0ee0e-4df0-409b-a655-d096c176405b\"}\n"} -{"Time":"2022-12-07T09:15:39.726349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.725 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c/dry-run/67a0ee0e-4df0-409b-a655-d096c176405b/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"930.90025ms\", \"status_code\": 101, \"latency_ms\": 930, \"request_id\": \"dd16ead4-97ad-42a8-9d6e-bf227f775445\"}\n"} -{"Time":"2022-12-07T09:15:39.726883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.726893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.726898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.726 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.400542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e6cf6a1b-ed60-49cc-b556-24b6814920bb\"}\n"} -{"Time":"2022-12-07T09:15:39.732267+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:39.732282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:39.732286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.732 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c/dry-run/67a0ee0e-4df0-409b-a655-d096c176405b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.696833ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"28ac44b6-b1d3-4ecb-9847-6dbe40903adc\"}\n"} -{"Time":"2022-12-07T09:15:39.732896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.732: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [103ms]\"\n"} -{"Time":"2022-12-07T09:15:39.734892+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.734912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.734919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.734 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.139416ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"7aac310e-3529-4e9a-8fbb-36eb774a45ab\"}\n"} -{"Time":"2022-12-07T09:15:39.734928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:39.734931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:39.734935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.734 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/templateversions/91a5294f-6f72-4f6b-93b7-c6875587a98c/dry-run/67a0ee0e-4df0-409b-a655-d096c176405b/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.781291ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"157f5a4f-3c10-4661-887a-d9ee325b387a\"}\n"} -{"Time":"2022-12-07T09:15:39.73541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"┌──────────────────┐\"\n"} -{"Time":"2022-12-07T09:15:39.735421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"│ Workspace Previe │\"\n"} -{"Time":"2022-12-07T09:15:39.735426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"│ w │\"\n"} -{"Time":"2022-12-07T09:15:39.735429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"├──────────────────┤\"\n"} -{"Time":"2022-12-07T09:15:39.735433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"│ RESOURCE ACCESS │\"\n"} -{"Time":"2022-12-07T09:15:39.735436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"├──────────────────┤\"\n"} -{"Time":"2022-12-07T09:15:39.735449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"└──────────────────┘\"\n"} -{"Time":"2022-12-07T09:15:39.735881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" create_test.go:218: 2022-12-07 08:15:39.735: cmd: matched \"Confirm create?\" = \" for your workspace: my-workspace\\r\\nSelect a template below to preview the provisioned infrastructure: \\r\\n \\r\\n Attempting to read the variables from the parameter file. \\r\\r\\n\\r\\n \\r\\n This template has customizable parameters. Values can be \\r\\n changed after create, but may have unintended side effects\\r\\n (like data loss). \\r\\r\\n\\r\\n\\r\\nPlanning workspace...\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [827ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [0ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Cleaning Up [103ms]\\r\\n┌──────────────────┐\\r\\n│ Workspace Previe │\\r\\n│ w │\\r\\n├──────────────────┤\\r\\n│ RESOURCE"} -{"Time":"2022-12-07T09:15:39.735906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ACCESS │\\r\\n├──────────────────┤\\r\\n└──────────────────┘\\r\\n\u003e Confirm create?\"\n"} -{"Time":"2022-12-07T09:15:39.735912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" create_test.go:219: 2022-12-07 08:15:39.735: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:39.735918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.735: cmd: stdout: \"\u003e Confirm create? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:39.736622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.73663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.736634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"962.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dd16b869-d551-4655-b3fa-acd9c9a916b4\"}\n"} -{"Time":"2022-12-07T09:15:39.73843+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:39.73844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:39.738453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.738 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/organizations/0d9eaf0f-21c1-468a-aefe-4d9034f5d152/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.10025ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"b1663adf-49a6-4b49-ba7c-aecfd42138ce\"}\n"} -{"Time":"2022-12-07T09:15:39.738781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:39.738: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:39.738796+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.7388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.738804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.738 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.796916ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0a24a3a1-8dee-4f05-9cc0-be9eaf6fd31a\"}\n"} -{"Time":"2022-12-07T09:15:39.739618+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:39.739629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:39.739634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:39.739 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/workspacebuilds/0424bef1-25f5-4ff1-b055-890ba8ca6334\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"699.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d3f80f6c-9640-46ed-b8f6-09767f629d0e\"}\n"} -{"Time":"2022-12-07T09:15:39.750832+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.750842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.750851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.750 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.750866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.750 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.750901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.750 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.750937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.750 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.750957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.750 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.750989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.750 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.751026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.750 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.751282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.751 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33c80784-4057-45fa-9c62-59866e771ed6\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\"}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.7513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.75151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.751 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"625.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a5dbcf5a-db0f-4cee-88d4-a69470c426fe\"}\n"} -{"Time":"2022-12-07T09:15:39.759989+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.759996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.76+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"716µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e84e64e-fd72-415c-9a45-6332d00e84f0\"}\n"} -{"Time":"2022-12-07T09:15:39.760369+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.760378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.760382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.760 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.760388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.760 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.760416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.760 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.760457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.760 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.761049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.760 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"675.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"50bebf78-bb6e-4ad7-974b-087cd0af9e06\"}\n"} -{"Time":"2022-12-07T09:15:39.762719+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.762727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.762732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.762 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"685.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2e671234-d161-42be-9dd0-f643b3a25f18\"}\n"} -{"Time":"2022-12-07T09:15:39.765853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.765861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.765865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.765 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.765872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.765 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.765901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.765 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.765936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.765 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.775752+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.775759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.775763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.775 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"636.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d503dbfb-e94d-446a-9a7a-876e147b6319\"}\n"} -{"Time":"2022-12-07T09:15:39.784507+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.784513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.784517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.784 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"635.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cc5ab1ef-b916-4aa0-82cb-398e197dadec\"}\n"} -{"Time":"2022-12-07T09:15:39.786117+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.786125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.786129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.786 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"716.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f13bd30f-d316-4693-9d4c-69804ecba710\"}\n"} -{"Time":"2022-12-07T09:15:39.787691+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.787698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.787702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.787 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"659.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8b4d1a9-3bf1-4dec-9b1c-ee2d61c7b97c\"}\n"} -{"Time":"2022-12-07T09:15:39.801536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.801546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.80155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.801 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.801559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.801 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.801595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.801 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.801642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.801 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.801691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.801 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.801711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.801 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"714.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b62edf43-2098-4955-91b9-3832a9ab9bf1\"}\n"} -{"Time":"2022-12-07T09:15:39.801756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.801 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.810459+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.810491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.810498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.810 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.06725ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"27196806-9461-44b8-afde-ee5daf0795c7\"}\n"} -{"Time":"2022-12-07T09:15:39.811332+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.811344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.81135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.810 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.811356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.811 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"793.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e042a1c-3b6e-4a09-bec5-24e920bca027\"}\n"} -{"Time":"2022-12-07T09:15:39.811364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.811 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.811368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.811 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.812805+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.812835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.812842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.812 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"802.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd9d473f-e7eb-4c1a-824e-ecc4bf115f5f\"}\n"} -{"Time":"2022-12-07T09:15:39.816596+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.816604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.816609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.816 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.816778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.816 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.816834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.816 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.826888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.826915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.826921+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.826 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"962.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f764efd-ea85-4203-ae94-68a0a29ffe49\"}\n"} -{"Time":"2022-12-07T09:15:39.835563+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.835584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.835592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.835 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.225ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"dab8bca5-563a-4cb2-ba47-9f20701a3174\"}\n"} -{"Time":"2022-12-07T09:15:39.836642+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.836656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.836663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.836 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.135042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1b24fb18-3060-4bd7-a234-2366afecb50a\"}\n"} -{"Time":"2022-12-07T09:15:39.838333+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.838343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.83835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.838 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.180708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"644eac73-37b5-4b8d-af63-34a6539946f0\"}\n"} -{"Time":"2022-12-07T09:15:39.852197+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.852215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.852222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.851 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.16525ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"86173557-0532-4db3-a7b0-d745477b22ae\"}\n"} -{"Time":"2022-12-07T09:15:39.852232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.851 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.85224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.852 [INFO]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:39.852257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.852 [INFO]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"resource_name\": \"bar\", \"resource_type\": \"aws_instance\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:39.852551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.852 [INFO]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:39.852563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.852 [INFO]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\", \"resource_name\": \"bar\", \"resource_type\": \"aws_instance\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:39.852571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.852 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.852578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.852 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.852688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.852 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"18cbfd17-2097-4e91-a57f-32ea5dc2d8d6\"}\n"} -{"Time":"2022-12-07T09:15:39.861475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.861506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.861517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.860 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.810833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"02a58680-a178-4d5c-a03f-dad612004d47\"}\n"} -{"Time":"2022-12-07T09:15:39.862598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.862615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.862626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.862 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.862637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.862 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.862648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.862 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.862701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.862 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.862717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.862 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.626ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d16005ee-85bd-4267-a4c2-04a92eda89d8\"}\n"} -{"Time":"2022-12-07T09:15:39.863153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.862 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.86461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.864621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.864628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.864 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.419542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"26844159-2061-4f38-b82f-8394a3bc0ab8\"}\n"} -{"Time":"2022-12-07T09:15:39.865308+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:39.865318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.865324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.865 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:39.865639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.865 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:39.865799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.865 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:39.865945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.865 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"size_bytes\": 81, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.86604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.865 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.866133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.866 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameter1719401773/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.866234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.866 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": [{\"destination_scheme\": 1, \"name\": \"region\", \"value\": \"bingo\"}, {\"destination_scheme\": 1, \"name\": \"username\", \"value\": \"boingo\"}]}\n"} -{"Time":"2022-12-07T09:15:39.866526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.866 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:39.866683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.866 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.86726+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.867268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.867273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.867 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.867374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.867 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.867383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.867 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.867481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.867 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.86752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.867 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.876807+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.876825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.876854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.876 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.449ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"caf8f4a1-48e0-4805-a53b-34ee2aa0e595\"}\n"} -{"Time":"2022-12-07T09:15:39.878708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.878 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/organizations/b620295d-6d4f-4bcb-bd02-fa6ccee9bfe5/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.329791ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"3f67bcf2-269e-415c-ba0b-6eb1b0c38486\"}\n"} -{"Time":"2022-12-07T09:15:39.881711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.881 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/organizations/b620295d-6d4f-4bcb-bd02-fa6ccee9bfe5/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.455666ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"ef301e66-3798-49bc-9fa0-ea064281e0fa\"}\n"} -{"Time":"2022-12-07T09:15:39.881974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" configssh_test.go:672: waiting for workspace build job 34d85424-cdd9-498a-b3ab-6134bcd4697d\n"} -{"Time":"2022-12-07T09:15:39.884862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.884881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.884889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.884 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.196625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4f132f58-b600-4414-a37e-6ec5dc19d5f4\"}\n"} -{"Time":"2022-12-07T09:15:39.886501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.886529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.886536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.886 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.087041ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4a90c21c-bbe9-4c73-9f7c-0dc7f389bdca\"}\n"} -{"Time":"2022-12-07T09:15:39.888075+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.888103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.888111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.887 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.089042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a064f003-55f8-40a0-8213-014fdb11fe59\"}\n"} -{"Time":"2022-12-07T09:15:39.903743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.903 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:39.904103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.903 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:39.904478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.904 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:39.90449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.904 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.904499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.904 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"size_bytes\": 141, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.904787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.904 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"size_bytes\": 141, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.904799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.904 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"workspace_name\": \"festive-williamson7\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:39.904968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.904 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:39.905148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.904 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33f51cad-45a7-43bd-bb00-e683120ed489\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"b29b9c1f-b052-4fbf-9580-0908365c535d\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.90995+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.909985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.909994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.868166ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f6aea295-5007-46d0-9ec2-3f3e0a16133d\"}\n"} -{"Time":"2022-12-07T09:15:39.910272+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.910283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.910292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.351334ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"cf198c53-1595-4a08-8b20-998765cd77cb\"}\n"} -{"Time":"2022-12-07T09:15:39.911981+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.91201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.912017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.911 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.264375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"8053fdf3-16d4-47ed-a8c7-56979719e2fe\"}\n"} -{"Time":"2022-12-07T09:15:39.913517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.913 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.913534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.913 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.913543+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.913548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.913569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.115375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0c408208-cdaa-4f88-a849-e3899b6c935f\"}\n"} -{"Time":"2022-12-07T09:15:39.913578+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.913583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.913587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.913 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.913596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.913 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.913605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.913 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.917198+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:39.917208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.917215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:39.917326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.917335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:39.917427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:39.91795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:39.917961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"request_id\": \"d94fc8f1-36df-4fbf-845a-bd724712cc2b\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:39.917972+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.917977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.917982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.917989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.917995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.918012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.917 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.918245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.918 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.91836+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:39.918368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.918376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.918: cmd: stdout: \"\\x1b[1A\\r✔ Queued [273ms]\"\n"} -{"Time":"2022-12-07T09:15:39.918383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:39.918: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:39.93623+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.936277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.936289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.935 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.796666ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"7ad17310-563f-4e62-ab9a-7bb8cb9c76be\"}\n"} -{"Time":"2022-12-07T09:15:39.936304+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.936312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.936322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.935 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.748875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9381e39e-6820-40ad-8238-4d23536f9a3e\"}\n"} -{"Time":"2022-12-07T09:15:39.938194+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.938215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.938228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.937 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.583416ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"be5456bf-4a41-4c06-a57c-8bdcb9084085\"}\n"} -{"Time":"2022-12-07T09:15:39.939167+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.93918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.939191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.939 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.698958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4c227b28-226d-444e-b3b0-3d29bc06a047\"}\n"} -{"Time":"2022-12-07T09:15:39.943893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.943908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.943918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.943 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:39.94424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.944 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"competent-jang4\", \"provisioner\": \"echo\", \"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:39.944425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.944 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:39.94459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.944 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.944721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.944 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.944882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.944 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateCreateFromListWithSkip1155851112/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.945009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.944 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:39.945322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.945 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:39.945436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.945 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.957811+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.957835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.957843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.957 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:39.957849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.957 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.957856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.957 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:39.957861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.957 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:39.959557+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.959591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.959598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"907.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6ff59d47-4702-4626-afae-ed7deb92fab1\"}\n"} -{"Time":"2022-12-07T09:15:39.959609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.959614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.959618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"849.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a9a7d67c-e61d-44c0-ae61-9f49ea92e3e0\"}\n"} -{"Time":"2022-12-07T09:15:39.962038+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.962068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.962075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.034667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0cbca207-4478-4212-8450-c7cd956db1cc\"}\n"} -{"Time":"2022-12-07T09:15:39.963295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.963304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.963311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.963 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"980.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ccfcae96-1a64-430f-9f3b-359d31dd7397\"}\n"} -{"Time":"2022-12-07T09:15:39.963985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.963994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.964032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.963 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.964037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.963 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.964044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.963 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"54347008-10b4-4a92-93a9-6e4613b69160\"}\n"} -{"Time":"2022-12-07T09:15:39.968637+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:39.968649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:39.968654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.967 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:39.968661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.968 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:39.968666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:39.968 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.968863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.96887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.968874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.968 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.968979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.968 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.968989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.968 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"c48709b3-434d-4cd0-890b-12f9ef0f8212\"}\n"} -{"Time":"2022-12-07T09:15:39.971939+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:39.971954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:39.971965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.971 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:39.972247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.972 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:39.972422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.972 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:39.972619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.972 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.972738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.972 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"size_bytes\": 92, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.972889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.972 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"size_bytes\": 92, \"path\": \"/tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:39.973008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.972 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"workspace_name\": \"unruffled-tharp3\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:39.973314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.973 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:39.973541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.973 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33c80784-4057-45fa-9c62-59866e771ed6\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\"}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:39.994237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:39.985 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.991875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"39d5dff0-d5d5-4550-af72-c52b4a12b1b7\"}\n"} -{"Time":"2022-12-07T09:15:39.994292+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.994299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.994306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.985 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/abcf2554-1e17-4270-870a-55505d6887ca\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.9995ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"168e0dc1-0f0a-4c26-ac1e-1199f8e5f5a9\"}\n"} -{"Time":"2022-12-07T09:15:39.994316+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.994326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.994333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.987 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/b89a2166-1223-402d-8951-d86254b72931\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.61125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ea8236ba-d764-41a6-acb5-7369fd67cdd9\"}\n"} -{"Time":"2022-12-07T09:15:39.996647+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:39.996661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:39.996666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.996 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:39.996682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.996 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:39.99672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.996 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:39.996804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.996 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:39.996936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.996 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:39.997049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:39.996 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"request_id\": \"bc8132bf-6dde-42ba-9d49-2fa26efd497d\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:39.997104+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.997109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.997119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.997 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"42.041µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"195c1e0b-53cb-4bab-bb08-4600c93e2bb2\"}\n"} -{"Time":"2022-12-07T09:15:39.99747+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:39.997482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:39.997488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:39.997 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"852.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cc528354-2419-4342-9d1f-7475546de477\"}\n"} -{"Time":"2022-12-07T09:15:39.997552+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.997558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.997564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.997 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"48.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"68bfc0e3-60d7-4f12-ab93-dd88bc139918\"}\n"} -{"Time":"2022-12-07T09:15:39.997719+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.997733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.997738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.997 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"44.709µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"6f3c6480-565b-4852-a055-a44ca12825d9\"}\n"} -{"Time":"2022-12-07T09:15:39.99802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.997 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"25.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e8fac886-1a5b-42d3-9090-91e0814e94aa\"}\n"} -{"Time":"2022-12-07T09:15:39.998658+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:39.998667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:39.998671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:39.998 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/users/me/workspace/intelligent-gagarin9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"764.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"82e906ea-1fd4-411e-b930-f16cded0c950\"}\n"} -{"Time":"2022-12-07T09:15:39.998922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:39.998: cmd: stdout: \"\\x1b[1mOrphaning workspace requires template edit permission\\x1b[0m\\r\"\n"} -{"Time":"2022-12-07T09:15:39.999014+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:39.999023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:39.999037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.998 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/users/hopeful-edison0/workspace/compassionate-torvalds9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"645.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8823aa94-38bd-4419-b7a5-8696822507be\"}\n"} -{"Time":"2022-12-07T09:15:39.999992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:39.999 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspaces/629a3c33-528c-4ca5-a3fa-31b1d8c74a58/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"619.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f3e17f4f-8f76-40dc-a4da-71cf68d883ab\"}\n"} -{"Time":"2022-12-07T09:15:40.000263+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.000277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.000282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.000 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspaces/da7b87d6-0523-4102-8348-4b8f838150d4/builds\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.189875ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"c1fc05fb-acc0-4ebb-a5ac-22220bd532c2\"}\n"} -{"Time":"2022-12-07T09:15:40.000291+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.000294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.000299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.000: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.000541+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.000571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.000576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.000: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.001185+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.001194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.001199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.001 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/ed2629ac-006d-401b-a492-f360ebfcf962\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"818.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"225b23f4-e8f4-45c4-b6f7-d53e1f3fd56b\"}\n"} -{"Time":"2022-12-07T09:15:40.001536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.001548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.001553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.001 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/a6e99207-972b-4128-9ecd-03617f78e6ba\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"798.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f20c1499-e92f-44f1-84c6-27382b3f95b7\"}\n"} -{"Time":"2022-12-07T09:15:40.008278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:40.008317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.008326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.008 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:40.008711+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.008722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.008728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.008 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"902.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c6ae4f0b-9718-46a8-91af-4db1f46caea6\"}\n"} -{"Time":"2022-12-07T09:15:40.008738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:40.008742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.008747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.008 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:40.00903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.008 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33f51cad-45a7-43bd-bb00-e683120ed489\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"b29b9c1f-b052-4fbf-9580-0908365c535d\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.013885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.013 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.415042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"31f4ac3f-63cc-4db5-8a25-4cb52d1f571a\"}\n"} -{"Time":"2022-12-07T09:15:40.019423+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:40.019434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:40.019443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:40.019587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.019601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:40.019907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:40.019918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.019926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.019933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:40.020154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"request_id\": \"d94fc8f1-36df-4fbf-845a-bd724712cc2b\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.020166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.020 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"request_id\": \"d94fc8f1-36df-4fbf-845a-bd724712cc2b\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.020412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.020: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:40.020427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.020: cmd: stdout: \"✔ Setting up [103ms]\"\n"} -{"Time":"2022-12-07T09:15:40.02047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.020: cmd: stdout: \"⧗ \\x1b[;mStarting workspace\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.024303+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.024315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.024322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.024 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.024457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.024 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.024469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.024 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.02459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.024 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.03519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.034 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.345833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e99bf09f-4cb9-47dc-a24f-c7490861e618\"}\n"} -{"Time":"2022-12-07T09:15:40.044501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:40.044526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.04455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.038 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.320625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"539a8150-20b7-4c26-8cff-68d8d2346620\"}\n"} -{"Time":"2022-12-07T09:15:40.047412+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:40.047428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:40.047433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.047 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.047696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.047 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.047732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.047 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.060032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.060059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.060065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.059 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"871.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"56fd4cbf-ad1f-47bd-9edc-b07823031b06\"}\n"} -{"Time":"2022-12-07T09:15:40.060073+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:40.060077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.060092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.059 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:40.060098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.059 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.060103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.059 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:40.060108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.059 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:40.060112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.059 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:40.063046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.062 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"840.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"284c3c45-2081-478d-a182-86b6f60923ab\"}\n"} -{"Time":"2022-12-07T09:15:40.07107+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:40.07109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:40.071101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.070 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:40.071325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.07134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:40.071354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:40.071818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.071847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.071858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:40.071867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"request_id\": \"d94fc8f1-36df-4fbf-845a-bd724712cc2b\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.072134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\", \"request_id\": \"d94fc8f1-36df-4fbf-845a-bd724712cc2b\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.072329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.072: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:40.072344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.072: cmd: stdout: \"✔ Starting workspace [51ms]\"\n"} -{"Time":"2022-12-07T09:15:40.072353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.072: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.075181+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.075198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.075209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.075 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.075546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.075 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.075679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.075 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"resource_count\": 2, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"33c80784-4057-45fa-9c62-59866e771ed6\", \"name\": \"agent1\", \"Auth\": null}]}, {\"name\": \"bar\", \"type\": \"aws_instance\"}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.085365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.085 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.923333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"34610512-8bed-458d-8149-ea5e58b5e8b2\"}\n"} -{"Time":"2022-12-07T09:15:40.089118+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:40.089145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.089158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.088 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.744708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9e211686-4992-46d7-a5cd-7a2d6fcb0b00\"}\n"} -{"Time":"2022-12-07T09:15:40.098343+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:40.098391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:40.098404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.098713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.09873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.098741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.099263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.099283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.099294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.099304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.098 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"request_id\": \"bc8132bf-6dde-42ba-9d49-2fa26efd497d\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.099679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"request_id\": \"bc8132bf-6dde-42ba-9d49-2fa26efd497d\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.110383+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:40.110413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.110427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.110 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:40.110444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.110 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.110983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.110997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.111007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.110 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.857334ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"af52b955-9de4-462c-955b-3b8bd02ad359\"}\n"} -{"Time":"2022-12-07T09:15:40.11102+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:40.111027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.111043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.110 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:40.111053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.110 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:40.111064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.110 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:40.113805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.113 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.559792ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"331dae16-6b99-423e-ba9d-1bec98daa465\"}\n"} -{"Time":"2022-12-07T09:15:40.12264+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:40.122664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:40.122673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.122 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:40.123179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.122 [DEBUG]\t(provisionerd-flamboyant_darwin3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:40.123199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.122 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:40.12321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.122 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:40.123223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.123 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"81cba1e2-0dd9-499b-b71e-0250c279b544\"}\n"} -{"Time":"2022-12-07T09:15:40.123963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.123 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/workspacebuilds/aad3e414-9393-4643-a752-ee47896a525e/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"530.735166ms\", \"status_code\": 101, \"latency_ms\": 530, \"request_id\": \"d94fc8f1-36df-4fbf-845a-bd724712cc2b\"}\n"} -{"Time":"2022-12-07T09:15:40.127297+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.127327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.127339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.126 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.127367+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:40.127375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:40.127383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.126 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57352\", \"path\": \"/api/v2/workspacebuilds/aad3e414-9393-4643-a752-ee47896a525e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.785417ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"4633e5ec-1307-4dda-bc96-9f192b055364\"}\n"} -{"Time":"2022-12-07T09:15:40.127396+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.127403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.127411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.126 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.127422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.126 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.127431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.126 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.127441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.127 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.127455+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter"} -{"Time":"2022-12-07T09:15:40.127462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":"=== CONT TestCreate/WithParameter\n"} -{"Time":"2022-12-07T09:15:40.127469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" ptytest.go:80: 2022-12-07 08:15:40.127: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:40.128306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" t.go:81: 2022-12-07 08:15:40.127 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:40.131313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:40.131429+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.131439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.135264+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.135287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.135294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.134 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.079959ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"421781ce-78a1-44a9-93e8-58bee1b68f56\"}\n"} -{"Time":"2022-12-07T09:15:40.139208+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.13923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.139237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.137 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.084µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2b49cee7-0c7c-47a6-8eef-14759d3f99e4\"}\n"} -{"Time":"2022-12-07T09:15:40.139247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.138 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"100.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d73d908f-a3fb-46ba-a55b-433e1de0cfdf\"}\n"} -{"Time":"2022-12-07T09:15:40.139254+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:40.139258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.139282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.138 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.24375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0a8b07d3-40b8-4b56-ae56-02a106c3b4d0\"}\n"} -{"Time":"2022-12-07T09:15:40.139596+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.139603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.13961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.139 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.057042ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"158a3503-8fde-453c-b69d-1bc2e06e2dc8\"}\n"} -{"Time":"2022-12-07T09:15:40.141924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.141 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/organizations/695a5fc6-59e6-4c3d-9ae1-eb7dc0d4e95e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.618208ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"610bf243-3f47-4e23-947e-293b959e1eab\"}\n"} -{"Time":"2022-12-07T09:15:40.142199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" configssh_test.go:669: waiting for template version job 222b2aa4-e22d-42b9-aefd-79ef56044ada\n"} -{"Time":"2022-12-07T09:15:40.15006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:40.150069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:40.150075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.149 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.150203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.150212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.150219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.150503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.150512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.150518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.150524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"request_id\": \"bc8132bf-6dde-42ba-9d49-2fa26efd497d\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.150663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.150 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\", \"request_id\": \"bc8132bf-6dde-42ba-9d49-2fa26efd497d\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.15893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.158983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.158993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.164917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"08e0fbf1-b98a-4329-8bfb-4fe69647dfa6\"}\n"} -{"Time":"2022-12-07T09:15:40.161448+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:40.161459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.161466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.161 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:40.161601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.161 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:40.161716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.161 [DEBUG]\t(provisionerd-quirky_gauss8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:40.161728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.161 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"bbfdb89e-8e38-4623-abad-fba7ffc9768d\"}\n"} -{"Time":"2022-12-07T09:15:40.163306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.163 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspacebuilds/396668ad-81e0-4aa9-9aea-cc038eb638fe\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.192667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ef0a6e13-c3cd-4a7d-92ad-68573c31708f\"}\n"} -{"Time":"2022-12-07T09:15:40.169105+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.169126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.169133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.168 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.06325ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"488b4866-5354-43b8-b02c-b1301f72fa19\"}\n"} -{"Time":"2022-12-07T09:15:40.171629+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:40.171648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.171675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.170 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"55.709µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"defa9080-42ae-4bd8-a6b2-65d0c833d3fd\"}\n"} -{"Time":"2022-12-07T09:15:40.171685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.171 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"42µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"210fdc16-df91-4ae5-81ec-9915fc8e4303\"}\n"} -{"Time":"2022-12-07T09:15:40.178256+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.178266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.178276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.178 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.178278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.178 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.17828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.178 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.178282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.178 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.178284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.178 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.184454+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:40.184467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.18447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.94275ms\", \"status_code\": 200, \"latency_ms\": 11, \"request_id\": \"e1824c4a-dfea-4cf0-bd8e-c844775b4c40\"}\n"} -{"Time":"2022-12-07T09:15:40.185573+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.185591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.185596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"811.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8efa6ad2-c644-4c7c-a4b0-9c3c7178def5\"}\n"} -{"Time":"2022-12-07T09:15:40.185606+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents"} -{"Time":"2022-12-07T09:15:40.185611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.185615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.185 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57416\", \"path\": \"/api/v2/templateversions/99c7b150-83e5-4c52-9b93-dc2cf0382e89/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"568.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"48f06499-b7fa-4b3c-bb9e-5cf26c5336ae\"}\n"} -{"Time":"2022-12-07T09:15:40.18585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.185: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} -{"Time":"2022-12-07T09:15:40.185856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.185: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:40.185859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.185: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:40.185861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.185: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:40.185934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" configssh_test.go:694: 2022-12-07 08:15:40.185: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_Hostnamestwo_resources_with_two_agents3829774603/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} -{"Time":"2022-12-07T09:15:40.185939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" configssh_test.go:695: 2022-12-07 08:15:40.185: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:40.185998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.185: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:40.186033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.186: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:40.186284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.186: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} -{"Time":"2022-12-07T09:15:40.186291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.186: cmd: stdout: \"For example, try running:\"\n"} -{"Time":"2022-12-07T09:15:40.186294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.186: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:40.186295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:40.186: cmd: stdout: \"\\t$ ssh coder.festive-williamson7\"\n"} -{"Time":"2022-12-07T09:15:40.18641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" ptytest.go:80: 2022-12-07 08:15:40.186: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:40.186423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.186 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:40.187678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:40.187735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.18774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.190516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.190 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"91.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1eb9074b-b990-4c77-934c-43624bfd95eb\"}\n"} -{"Time":"2022-12-07T09:15:40.190683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.190 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"33.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8269a498-8197-45a9-af43-657ba1a5735a\"}\n"} -{"Time":"2022-12-07T09:15:40.191202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"359.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9a10f6e6-558a-4801-9585-1fd68929824d\"}\n"} -{"Time":"2022-12-07T09:15:40.19187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"499.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9dccdde6-4000-4455-a125-a8cf47641119\"}\n"} -{"Time":"2022-12-07T09:15:40.191948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" templatepush_test.go:38: waiting for template version job ddc53f1a-a846-498e-b19d-7ce91474c633\n"} -{"Time":"2022-12-07T09:15:40.193077+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.193085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.193087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.193 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"330.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ab6f7ac-16ab-4a85-8be3-ca759dc1c807\"}\n"} -{"Time":"2022-12-07T09:15:40.201179+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip"} -{"Time":"2022-12-07T09:15:40.20119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":"=== CONT TestCreate/CreateFromListWithSkip\n"} -{"Time":"2022-12-07T09:15:40.201195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.201 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.201202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.201 [DEBUG]\t(provisionerd-elastic_shannon1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.201237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.201 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.201257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.201 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.2013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.201 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"e257753c-d632-4ef0-9136-af700916699e\"}\n"} -{"Time":"2022-12-07T09:15:40.201552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.201 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/workspacebuilds/835d4c3e-f06a-4134-a812-5a89b1441592/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"674.329708ms\", \"status_code\": 101, \"latency_ms\": 674, \"request_id\": \"bc8132bf-6dde-42ba-9d49-2fa26efd497d\"}\n"} -{"Time":"2022-12-07T09:15:40.2028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.202 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57372\", \"path\": \"/api/v2/workspacebuilds/835d4c3e-f06a-4134-a812-5a89b1441592\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bdf16fd2-a2a9-4da3-9d0a-d9d530b96cbd\"}\n"} -{"Time":"2022-12-07T09:15:40.202928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" t.go:81: 2022-12-07 08:15:40.202 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:40.203505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:40.203544+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.203556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.206019+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.206025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.206027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.205 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.206048+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.206056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.206062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.205 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"80.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f7bad595-ba1e-4029-a5ec-4d8e24cae413\"}\n"} -{"Time":"2022-12-07T09:15:40.206188+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.206193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.206194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.206275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:40.206319+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.206324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.206326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.206 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"46.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b6de1313-63af-4ac2-86ce-3e8ea85c7574\"}\n"} -{"Time":"2022-12-07T09:15:40.206332+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.206336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.206337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.206381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.206427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteOrphan490906126/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.206465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"workspace_name\": \"intelligent-gagarin9\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:40.206572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.206584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.206 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.206921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.206926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.206928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.206 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"71ecf637-f5b3-44e3-a471-d3793dc48e54\"}\n"} -{"Time":"2022-12-07T09:15:40.207852+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.207863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.207864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"407.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cbe37e36-5fe9-445b-930f-b914d1f34f6f\"}\n"} -{"Time":"2022-12-07T09:15:40.208297+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.208301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.208302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/organizations/33fd8505-9aa5-4c83-9346-728ee006063c/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.156959ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"cad9bddf-65ec-4af8-8b14-87a0bc988bbc\"}\n"} -{"Time":"2022-12-07T09:15:40.208399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" templatepush_test.go:164: waiting for template version job df256d05-38e8-45b9-a635-872e93f45d23\n"} -{"Time":"2022-12-07T09:15:40.218833+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.218838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.21884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.218 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"439d9782-c630-44c7-ae5a-2caddcbf6823\"}\n"} -{"Time":"2022-12-07T09:15:40.219504+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.219508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.219511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.219 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"973.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db713816-d526-4e9e-aa78-45e2e8c0c900\"}\n"} -{"Time":"2022-12-07T09:15:40.229016+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.229019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.229021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.228 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.229067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.229 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:40.229094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.229 [DEBUG]\t(provisionerd-clever_curie3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.229128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.229 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"17839665-759a-4e35-bd05-a2f80ddbfb67\"}\n"} -{"Time":"2022-12-07T09:15:40.232789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.232 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspacebuilds/34d85424-cdd9-498a-b3ab-6134bcd4697d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"295.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad76c233-9ea0-4f74-9eef-20ebf666e427\"}\n"} -{"Time":"2022-12-07T09:15:40.233884+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.233888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.233889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.233 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"250.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"22271d15-c9d8-432b-91f3-946133c5ff02\"}\n"} -{"Time":"2022-12-07T09:15:40.234877+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.234881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.234883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.234 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"c10645b6-7a26-4c9b-a501-96dd0bf74da2\"}\n"} -{"Time":"2022-12-07T09:15:40.235073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"46cbcc4b-db10-416e-8735-f4ce5dffc9eb\"}\n"} -{"Time":"2022-12-07T09:15:40.236376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.236384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.236386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.236 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:40.243148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.243 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"288.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0fd307d5-aa0a-4eb3-a368-423e244faf6a\"}\n"} -{"Time":"2022-12-07T09:15:40.243209+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.243211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.243214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.243 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a74c4cdf-59ba-4a66-8b41-5b841fee551f\"}\n"} -{"Time":"2022-12-07T09:15:40.246587+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent"} -{"Time":"2022-12-07T09:15:40.246592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":"=== CONT TestConfigSSH_Hostnames/two_resources_with_one_agent\n"} -{"Time":"2022-12-07T09:15:40.246594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.246 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.312708ms\", \"status_code\": 200, \"latency_ms\": 11, \"request_id\": \"adcf93d0-abb6-49c7-856b-c5e3405ccdef\"}\n"} -{"Time":"2022-12-07T09:15:40.24709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.247 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57435\", \"path\": \"/api/v2/templateversions/2c0c04d5-9dbe-4d63-9c71-7a11d90a9c91/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6cb103dd-46e2-46ee-8718-3b3b5823e9e0\"}\n"} -{"Time":"2022-12-07T09:15:40.24728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} -{"Time":"2022-12-07T09:15:40.247285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:40.247288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:40.24729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:40.247395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" configssh_test.go:694: 2022-12-07 08:15:40.247: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_Hostnamestwo_resources_with_one_agent3149824455/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} -{"Time":"2022-12-07T09:15:40.247421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" configssh_test.go:695: 2022-12-07 08:15:40.247: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:40.247456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:40.247561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:40.24773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} -{"Time":"2022-12-07T09:15:40.247736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"For example, try running:\"\n"} -{"Time":"2022-12-07T09:15:40.247738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:40.24774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:103: 2022-12-07 08:15:40.247: cmd: stdout: \"\\t$ ssh coder.unruffled-tharp3\"\n"} -{"Time":"2022-12-07T09:15:40.247802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" ptytest.go:80: 2022-12-07 08:15:40.247: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:40.247824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" t.go:81: 2022-12-07 08:15:40.247 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:40.248476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:40.248503+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.248507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.252631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.252 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"90.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5be82717-719d-43ef-bb52-4091b4b6f4ea\"}\n"} -{"Time":"2022-12-07T09:15:40.252815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.252 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2f6b51de-64cc-4457-a866-b4effbce72e3\"}\n"} -{"Time":"2022-12-07T09:15:40.253371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.253 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"373.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"454cfb30-ebee-44db-ab49-5c134c30a231\"}\n"} -{"Time":"2022-12-07T09:15:40.25401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.253 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/organizations/e1d0cad4-8acb-4f32-a70d-dac8dc55c512/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"467.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6e03a4e5-55e3-410a-ad91-140e16123cb4\"}\n"} -{"Time":"2022-12-07T09:15:40.254097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" templatepush_test.go:116: waiting for template version job 5caa0ef9-f2ac-42c5-a777-663fb4c6525d\n"} -{"Time":"2022-12-07T09:15:40.256996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.257002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.256 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.257025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.256 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.257039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.257 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.257054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.257 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.257129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.257 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.257138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.257 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"request_id\": \"6326e00e-1251-4eb2-9c7c-311eda6b432e\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.25725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.257 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.257283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.257: cmd: stdout: \"\\x1b[1A\\r✔ Queued [205ms]\"\n"} -{"Time":"2022-12-07T09:15:40.257315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.257 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.257346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.257: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.259859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.259863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.259866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"350.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"45c38223-b75c-4676-a4ef-5f7c61494838\"}\n"} -{"Time":"2022-12-07T09:15:40.269057+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.269061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.269064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.269 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"365.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"801ab054-d485-4c0e-a9b7-84d12fcc289c\"}\n"} -{"Time":"2022-12-07T09:15:40.269525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.26953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.269532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.269 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"782.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31339c9f-9862-432c-98d4-8744e6e0c593\"}\n"} -{"Time":"2022-12-07T09:15:40.269778+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:40.269781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:40.269783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.269 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.269854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.269 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.269898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.269 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:40.269915+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.269 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.269945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.269 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.269959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.269 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateFromNothing1219415972/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.269979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.269 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:40.270114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.270 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.270152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.270 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.280564+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.280574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.280584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.280 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"286.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1dc871c2-fa7c-40ce-bb95-0a7be56222b3\"}\n"} -{"Time":"2022-12-07T09:15:40.284175+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.284181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.284183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.284 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"252.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"148de1c2-3e57-4a20-a211-093ba6b91825\"}\n"} -{"Time":"2022-12-07T09:15:40.286721+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.286725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.286728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.28679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.286829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:40.286855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.286879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"size_bytes\": 119, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.286898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"size_bytes\": 119, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.286908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.28698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.286 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:40.290015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.290027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.290033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.289 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:40.292606+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.292643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.292652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.292 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f9a7f89f-9737-4e7d-9ada-0f8b0f411bce\"}\n"} -{"Time":"2022-12-07T09:15:40.292664+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.292669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.292673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.292 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"257.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aa62f9cb-1fef-4ff1-8376-c95226e2e0a2\"}\n"} -{"Time":"2022-12-07T09:15:40.307118+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.307147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.307154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.306 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:40.308556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.308574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.308581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.307 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.308588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.307 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Destroying workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.308594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.307 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.3086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.307 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.308605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.307 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.308611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.307 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Destroying workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.308616+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.308 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"request_id\": \"6326e00e-1251-4eb2-9c7c-311eda6b432e\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.308622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.308 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"request_id\": \"6326e00e-1251-4eb2-9c7c-311eda6b432e\", \"stage\": \"Destroying workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.308628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.308 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.309449+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.309458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.309463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.308 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.491333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d9ba6b8f-7fcc-4cf5-a0e7-b53009cb1a7c\"}\n"} -{"Time":"2022-12-07T09:15:40.309471+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.309475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.3095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.308: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:40.309505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.308: cmd: stdout: \"✔ Setting up [51ms]\"\n"} -{"Time":"2022-12-07T09:15:40.309511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.308: cmd: stdout: \"⧗ \\x1b[;mDestroying workspace\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.309765+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.309774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.30978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.309 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"766.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b1d93f82-7eb4-46a1-88cc-7b75080d1d79\"}\n"} -{"Time":"2022-12-07T09:15:40.311788+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:40.311807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:40.311814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.310 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.311821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.310 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.311828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.310 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:40.311834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.310 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"size_bytes\": 81, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.311841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.310 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.311847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.311 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"size_bytes\": 2, \"path\": \"/tmp/TestCreateWithParameterFileContainingTheValue356362535/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.311853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.311 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"workspace_name\": \"my-workspace\", \"state_length\": 0, \"parameters\": [{\"destination_scheme\": 1, \"name\": \"region\", \"value\": \"bingo\"}, {\"destination_scheme\": 1, \"name\": \"username\", \"value\": \"boingo\"}]}\n"} -{"Time":"2022-12-07T09:15:40.311861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.311 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.311866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.311 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.31905+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.31907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.319077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"875.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8849f2d3-e976-4a44-b4b3-ef3957937265\"}\n"} -{"Time":"2022-12-07T09:15:40.319086+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.319091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.319096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.019875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d4609603-1071-4580-bb6b-2df28511bc18\"}\n"} -{"Time":"2022-12-07T09:15:40.323587+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:40.323607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:40.323614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.322 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.323625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.322 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.323632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.322 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.323645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.322 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.32365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.323 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.323655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.323 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"request_id\": \"9a433cb6-9c9a-4653-b77d-a7522493e86f\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.323752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.323: cmd: stdout: \"\\x1b[1A\\r✔ Queued [742ms]\"\n"} -{"Time":"2022-12-07T09:15:40.32376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.323: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.332356+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.332376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.332382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.332 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"822.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c6d5303d-b4b2-400a-b197-ffeaf2160d98\"}\n"} -{"Time":"2022-12-07T09:15:40.334608+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.334622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.334627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"735.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c78ecfd-579b-42f4-b6c2-c7a0f20efc0e\"}\n"} -{"Time":"2022-12-07T09:15:40.335527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.335537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.335544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.335 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"16.209µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:40.338531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.338 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.338554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.338 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"071b1431-dae4-4cb7-8813-e8755d14cd3d\", \"name\": \"agent1\", \"Auth\": null}, {\"id\": \"ca9f2437-218b-4cb2-88d8-80a1345751b9\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.340347+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.340357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.340363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.340494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.340595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:40.340659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.340724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.340784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.340793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.340925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.340 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:40.343501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.343 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"686.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"92a4f2e2-0d88-464f-b25f-bbf5998fc322\"}\n"} -{"Time":"2022-12-07T09:15:40.343525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.343529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.343537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.343 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"726.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6906b8aa-5e07-47ce-8e70-67983e908bde\"}\n"} -{"Time":"2022-12-07T09:15:40.350504+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.350533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.350539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.350 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:40.355632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.355 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"978.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b95b6ccd-10ff-42da-ba4e-e4d6d7f74853\"}\n"} -{"Time":"2022-12-07T09:15:40.357526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.357548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.357556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.357 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.357732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.357 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.357886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.357 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:40.358043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.357 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushUseWorkingDir2330205981/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.358201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.357 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushUseWorkingDir2330205981/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.35833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.358 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushUseWorkingDir2330205981/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.358344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.358 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.358734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.358 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:40.36344+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.363466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.363476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.358 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.363497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.358 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.363508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.358 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.363518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.359 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.363527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.359 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Destroying workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.363537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.359 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.363547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.359 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"request_id\": \"6326e00e-1251-4eb2-9c7c-311eda6b432e\", \"stage\": \"Destroying workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.363558+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.363565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.363573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.360 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.464666ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0c8882bd-7fe9-422d-935d-8b5ed6f74120\"}\n"} -{"Time":"2022-12-07T09:15:40.363586+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.363593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.3636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\", \"request_id\": \"6326e00e-1251-4eb2-9c7c-311eda6b432e\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.36361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.362 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.364734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.363: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:40.364749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.363: cmd: stdout: \"✔ Destroying workspace [51ms]\"\n"} -{"Time":"2022-12-07T09:15:40.364754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.363: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.36476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:40.364764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:40.364769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.363 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.364775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.364 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.364781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.364 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.364787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.364 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.364792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.364 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.364798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.364 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"request_id\": \"b87d5685-49b1-4b79-a192-43e09c7b9da3\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.364804+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.364808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.364812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" delete_test.go:71: 2022-12-07 08:15:40.364: cmd: matched \"Cleaning Up\" = \"\\x1b[1mOrphaning workspace requires template edit permission\\x1b[0m\\r\\r\\n⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [205ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n \\r\\n✔ Setting up [51ms]\\r\\n⧗ \\x1b[;mDestroying workspace\\x1b[0m \\r\\n \\r\\n✔ Destroying workspace [51ms]\\r\\n⧗ \\x1b[;mCleaning Up\"\n"} -{"Time":"2022-12-07T09:15:40.364921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:40.364927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:40.364931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.364: cmd: stdout: \"\\x1b[1A\\r✔ Queued [571ms]\"\n"} -{"Time":"2022-12-07T09:15:40.364936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.364: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.370445+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.370468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.370477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.369 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.49625ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"ea5c214b-bd74-4d02-855c-8b7432814661\"}\n"} -{"Time":"2022-12-07T09:15:40.370488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.370494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.3705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.370 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.702917ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"c4abe63a-2647-4bff-8870-6614d24141b6\"}\n"} -{"Time":"2022-12-07T09:15:40.373629+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:40.373648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:40.373658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.373 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.373985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.373 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.374112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.373 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.38108+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.381125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.381133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.380 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"864.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90c7ab0d-425f-47bd-9313-dd453f1c02c1\"}\n"} -{"Time":"2022-12-07T09:15:40.386515+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.38654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.386549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.35375ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"d46543d0-d3cd-488a-8aa2-14391dba5ae8\"}\n"} -{"Time":"2022-12-07T09:15:40.388945+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.388988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.388999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.388 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.389015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.388 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.389519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.389 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.389535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.389 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.389547+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.389554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.389563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.389 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"25.291µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:40.389574+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.389581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.389589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.389 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.389599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.389 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.389609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.389 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.390021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.389 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"071b1431-dae4-4cb7-8813-e8755d14cd3d\", \"name\": \"agent1\", \"Auth\": null}, {\"id\": \"ca9f2437-218b-4cb2-88d8-80a1345751b9\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.390046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.389 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.39152+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.391537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.391552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.391 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.396094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.391 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.396119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.395 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.023709ms\", \"status_code\": 200, \"latency_ms\": 3, \"request_id\": \"ac965e41-6200-4683-beeb-302c1d590e82\"}\n"} -{"Time":"2022-12-07T09:15:40.396862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.396872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.396878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"866.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a120cd7-6f48-49a1-b012-3e2c9b4d63c0\"}\n"} -{"Time":"2022-12-07T09:15:40.401829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.401853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.401861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.401 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.402228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.401 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.40224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.402 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:40.416756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.402 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushOK123133992/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.416782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.416786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.416788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.414 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"23.334µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:40.416792+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.416794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.416797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.402 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushOK123133992/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.416802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.414 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushOK123133992/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.416816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.414 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.416819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.414 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:40.416825+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:40.416828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:40.41683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.415 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.416833+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.416834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.416836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.415 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.416839+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.41684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.416842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.416 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.416845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.416 [DEBUG]\t(provisionerd-keen_franklin9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.41685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.416 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.417032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.416 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.41704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.416 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d4fbd893-3d97-47bb-b498-d4996dbeccfb\"}\n"} -{"Time":"2022-12-07T09:15:40.417385+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:40.417388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:40.417391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.417 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.417394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.417 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.417396+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.417398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.4174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.417 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.417403+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.417405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.417407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.417 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/a6e99207-972b-4128-9ecd-03617f78e6ba/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"414.04825ms\", \"status_code\": 101, \"latency_ms\": 414, \"request_id\": \"6326e00e-1251-4eb2-9c7c-311eda6b432e\"}\n"} -{"Time":"2022-12-07T09:15:40.417753+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.417765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.417769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.417 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"802.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"47d3d363-ddec-4261-ab83-72d2a3d3d18d\"}\n"} -{"Time":"2022-12-07T09:15:40.417775+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.417777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.417779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.417 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"849.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"315a472b-09ee-4a98-8428-e9f381016e8d\"}\n"} -{"Time":"2022-12-07T09:15:40.418377+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.418384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.418388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.418 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"621.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d4d612f6-868a-4d9a-b990-062546f68976\"}\n"} -{"Time":"2022-12-07T09:15:40.418393+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.418396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.418398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.418 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"618.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d81ff290-4476-4c63-82f7-df6736d0d939\"}\n"} -{"Time":"2022-12-07T09:15:40.419308+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan"} -{"Time":"2022-12-07T09:15:40.419317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":"=== CONT TestDelete/Orphan\n"} -{"Time":"2022-12-07T09:15:40.419321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.419 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57399\", \"path\": \"/api/v2/workspacebuilds/a6e99207-972b-4128-9ecd-03617f78e6ba\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"736.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cfb16d04-98af-453e-ac4c-c1f4a1f3b1d5\"}\n"} -{"Time":"2022-12-07T09:15:40.419525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:80: 2022-12-07 08:15:40.419: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:40.419533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.419: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [108ms]\"\n"} -{"Time":"2022-12-07T09:15:40.41961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.419: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:40.419634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" ptytest.go:103: 2022-12-07 08:15:40.419: cmd: stdout: \"The intelligent-gagarin9 workspace has been deleted at Dec 7 09:15:40!\"\n"} -{"Time":"2022-12-07T09:15:40.419652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" t.go:81: 2022-12-07 08:15:40.419 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:40.420329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:40.420414+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.420422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.423734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.423 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"116.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e22c6249-f076-44c6-b85f-d9430ab8a53e\"}\n"} -{"Time":"2022-12-07T09:15:40.423921+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.423 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"03288c1e-cc2d-4cce-afb4-9881aabbb71a\"}\n"} -{"Time":"2022-12-07T09:15:40.424295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:40.424303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:40.424308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.424353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.424375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.42439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.424454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.424461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.424487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.424523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"request_id\": \"9a433cb6-9c9a-4653-b77d-a7522493e86f\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.424587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"request_id\": \"9a433cb6-9c9a-4653-b77d-a7522493e86f\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.424622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.424631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.424634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.424 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"510.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b7aec473-3867-4a1b-8ef0-fb0797853a1d\"}\n"} -{"Time":"2022-12-07T09:15:40.424641+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:40.424643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:40.424645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.424: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:40.42469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.424: cmd: stdout: \"✔ Setting up [104ms]\"\n"} -{"Time":"2022-12-07T09:15:40.424709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.424: cmd: stdout: \"⧗ \\x1b[;mStarting workspace\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.425467+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.425474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.425497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.425 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/organizations/d54c4ffe-ed2e-44b3-8ae6-61efc0b41369/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"651.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"365872ac-4499-47f2-a883-6cf5d73720bb\"}\n"} -{"Time":"2022-12-07T09:15:40.425579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" configssh_test.go:542: waiting for template version job 1b412497-1a7d-448f-bd29-9d7095591adc\n"} -{"Time":"2022-12-07T09:15:40.430956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.430961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.430963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.430 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"435.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"428c6032-f9d6-400b-b5fe-2495f625ea88\"}\n"} -{"Time":"2022-12-07T09:15:40.435373+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.435383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.435386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"454.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6a2d79d-3547-43fd-91dc-9172c804ef80\"}\n"} -{"Time":"2022-12-07T09:15:40.440704+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.44071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.440714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.440 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.440722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.440 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.440746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.440 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.44076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.440 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.44079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.440 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.440851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.440 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.441882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.441888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.441891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.441 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.441908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.441 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.441931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.441 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.441954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.441 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.44198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.441 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.442009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.441 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.442043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.442 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.442209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.442 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.442264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.442 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.443465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.443 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"497.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"88a85c93-15a8-4fd8-8a8a-fedb97d0fe5c\"}\n"} -{"Time":"2022-12-07T09:15:40.443582+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.443589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.443592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.443 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"583.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7059f02d-af7a-4d30-b6ae-8347932b54b3\"}\n"} -{"Time":"2022-12-07T09:15:40.449695+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.449703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.449707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.449 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"11.917µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:40.451638+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.451647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.451652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.451 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"581.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4be1961a-3ce3-41cb-b90b-33140429c0ff\"}\n"} -{"Time":"2022-12-07T09:15:40.455182+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.455192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.455196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.455 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"587.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a82766e9-fc4b-4f3d-9fd9-f6addabff8a0\"}\n"} -{"Time":"2022-12-07T09:15:40.459732+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.459743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.459748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.459 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"646.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"00f17740-5f1c-4ecb-8068-10ef40e8a879\"}\n"} -{"Time":"2022-12-07T09:15:40.465936+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.465967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.465974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.465 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.466259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.466 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.467734+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.467746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.467751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.467757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.467763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.467767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.467772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.467777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.467781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.467786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.467791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.467 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.468844+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.468857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.468862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.468 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.194416ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d1446da7-91d7-427a-aa57-dd43bd415cc0\"}\n"} -{"Time":"2022-12-07T09:15:40.469061+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.469067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.469072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.468 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"688.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c40cf6d2-c353-40f1-9346-79b1e5d44451\"}\n"} -{"Time":"2022-12-07T09:15:40.469268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:40.469568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:40.469575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.469582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.469588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.469594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.470032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.47004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.470045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.470049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"request_id\": \"b87d5685-49b1-4b79-a192-43e09c7b9da3\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.470054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.469 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"request_id\": \"b87d5685-49b1-4b79-a192-43e09c7b9da3\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.470136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.470: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:40.470143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.470: cmd: stdout: \"✔ Setting up [106ms]\"\n"} -{"Time":"2022-12-07T09:15:40.470149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.470: cmd: stdout: \"⧗ \\x1b[;mStarting workspace\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.475383+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:40.475404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:40.47541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.475417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.475646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.475656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.475661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.476077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.476085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.47609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"request_id\": \"9a433cb6-9c9a-4653-b77d-a7522493e86f\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.476095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.475 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\", \"request_id\": \"9a433cb6-9c9a-4653-b77d-a7522493e86f\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.476275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.476: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:40.476282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.476: cmd: stdout: \"✔ Starting workspace [51ms]\"\n"} -{"Time":"2022-12-07T09:15:40.476286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.476: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.477078+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.477088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.477093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.476 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"845µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33f3b9b6-ef53-4339-8b93-4b96f748c7ce\"}\n"} -{"Time":"2022-12-07T09:15:40.482924+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.482953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.482959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.482 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.268125ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"2028f01e-7e69-4f0a-a9c3-99e69f384f10\"}\n"} -{"Time":"2022-12-07T09:15:40.484441+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.48447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.484477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.484 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"751.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"514bcb92-9820-4026-a787-652eb652fb9d\"}\n"} -{"Time":"2022-12-07T09:15:40.492432+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.492453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.492459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.491 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.492465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.492 [INFO]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:40.492471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.492 [INFO]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\", \"resource_name\": \"foo\", \"resource_type\": \"aws_instance\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:40.492477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.492481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.492486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.492 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"a3455299-779a-43dd-9f45-5714b37baad6\"}\n"} -{"Time":"2022-12-07T09:15:40.493216+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.493222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.493228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.493232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.493239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.493244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.493249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.493254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.492 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.493258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.493 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"812.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"556139b6-1fe6-47b2-b514-410906566a9b\"}\n"} -{"Time":"2022-12-07T09:15:40.49829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.498339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.498349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.498 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"4.673375ms\", \"status_code\": 200, \"latency_ms\": 4, \"request_id\": \"6edff73f-194a-410e-a3bf-1aed7eb1ef27\"}\n"} -{"Time":"2022-12-07T09:15:40.499647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.499 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/organizations/695a5fc6-59e6-4c3d-9ae1-eb7dc0d4e95e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"897.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6bfdfe5a-ffc3-4812-ad34-5edfe6cb1d8e\"}\n"} -{"Time":"2022-12-07T09:15:40.501768+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.501787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.501793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.501 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"693.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bfd8f2e2-e39a-4ab0-89ad-9e6e01e43eaa\"}\n"} -{"Time":"2022-12-07T09:15:40.501801+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.501829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.501833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.501 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/organizations/695a5fc6-59e6-4c3d-9ae1-eb7dc0d4e95e/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.701375ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"24b63451-c976-4de6-a96d-5b370d9678ca\"}\n"} -{"Time":"2022-12-07T09:15:40.501841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" configssh_test.go:672: waiting for workspace build job 0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\n"} -{"Time":"2022-12-07T09:15:40.506916+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.506949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.506956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.506 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"786.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fbe5d904-b8f5-40dc-a1e7-4b5670d81930\"}\n"} -{"Time":"2022-12-07T09:15:40.509727+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.509779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.509787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.509 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"826.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"09ac4f4b-e2ba-45fc-9bab-16275a254bf8\"}\n"} -{"Time":"2022-12-07T09:15:40.51728+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.517311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.517318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.517324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.517333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.517338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.518768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.518797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.518803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.518808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.518813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.518819+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.518823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.518827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.518832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.518837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.518843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.518847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.517 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.518852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.518 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.518857+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.51886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.518864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.518 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"946.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61fe7c7f-8f67-4272-98a0-af971a981522\"}\n"} -{"Time":"2022-12-07T09:15:40.522228+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:40.522259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:40.522265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.519 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.522272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.519 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.522278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.520 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.522289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.520 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.522297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.522 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.522302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.522 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.522758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.522 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"request_id\": \"b87d5685-49b1-4b79-a192-43e09c7b9da3\", \"stage\": \"Starting workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.522769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.522 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.522775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.522 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\", \"request_id\": \"b87d5685-49b1-4b79-a192-43e09c7b9da3\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.522924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.522: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:40.52293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.522: cmd: stdout: \"✔ Starting workspace [53ms]\"\n"} -{"Time":"2022-12-07T09:15:40.522935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.522: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.523018+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.523049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.523057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.522 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:40.532708+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:40.532742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:40.532772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.526 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.532816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.526 [DEBUG]\t(provisionerd-sleepy_varahamihira8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.532821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.526 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.532826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.526 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.53283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.526 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"c6a3e27b-b654-4f6a-8fe7-90fb0e5977ca\"}\n"} -{"Time":"2022-12-07T09:15:40.532836+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.532839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.532844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.531 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.829708ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"09677946-3ed4-4f74-849a-78cb1f019ef6\"}\n"} -{"Time":"2022-12-07T09:15:40.53285+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:40.532854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:40.532857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/workspacebuilds/a693fe94-96b6-4e0f-9ca0-835aa85a3def/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.00498975s\", \"status_code\": 101, \"latency_ms\": 1004, \"request_id\": \"9a433cb6-9c9a-4653-b77d-a7522493e86f\"}\n"} -{"Time":"2022-12-07T09:15:40.532868+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.532873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.532877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.246209ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"b66d961a-95ec-4b02-a080-512d402043b9\"}\n"} -{"Time":"2022-12-07T09:15:40.534685+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.534712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.534719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.534 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.192125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"73224c7f-2ed0-4687-b0c2-27e3a5218411\"}\n"} -{"Time":"2022-12-07T09:15:40.535414+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.535428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.535436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"913.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a5ddda9-c257-4d7e-aa12-cbd00b99436f\"}\n"} -{"Time":"2022-12-07T09:15:40.536127+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing"} -{"Time":"2022-12-07T09:15:40.536141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":"=== CONT TestCreate/FromNothing\n"} -{"Time":"2022-12-07T09:15:40.536146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/workspacebuilds/a693fe94-96b6-4e0f-9ca0-835aa85a3def\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.19475ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4e86c89f-a7c2-460e-9b9e-205136fde176\"}\n"} -{"Time":"2022-12-07T09:15:40.536425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.536: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [102ms]\"\n"} -{"Time":"2022-12-07T09:15:40.53645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.536: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:40.53646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:103: 2022-12-07 08:15:40.536: cmd: stdout: \"The my-workspace workspace has been created at Dec 7 09:15:40!\"\n"} -{"Time":"2022-12-07T09:15:40.537438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57361\", \"path\": \"/api/v2/users/testuser/workspace/my-workspace\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"822.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f1ab0f47-f438-40b8-a589-a7afa80191f7\"}\n"} -{"Time":"2022-12-07T09:15:40.537753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" ptytest.go:80: 2022-12-07 08:15:40.537: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:40.537865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" t.go:81: 2022-12-07 08:15:40.537 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:40.539857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:40.539928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.539946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.543234+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.543247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.543253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.543 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.543261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.543 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.543316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.543 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.543401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.543 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"1d842e1c-0674-4fdb-a3ec-f71067874190\"}\n"} -{"Time":"2022-12-07T09:15:40.54644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.544 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"813.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"35abb19e-c804-42e0-98c9-f94d3e9dba0f\"}\n"} -{"Time":"2022-12-07T09:15:40.547857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.547 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"867.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3a941ee6-7f5b-41f0-b6f8-171edfe583aa\"}\n"} -{"Time":"2022-12-07T09:15:40.547957+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.547965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.547971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.547 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"232.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"50e52581-f2f4-4b39-81ae-160ed9d4e036\"}\n"} -{"Time":"2022-12-07T09:15:40.548492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.548 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"124.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a453c44f-5712-495e-a791-2878ac71f8f6\"}\n"} -{"Time":"2022-12-07T09:15:40.549926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.549 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.009208ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"9769e6e4-d13b-4eb0-bdcd-06bb5bda685a\"}\n"} -{"Time":"2022-12-07T09:15:40.551762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/organizations/0bd0d8e1-006e-4cd0-8fd6-9679d77c9ea6/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.345708ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"0104a20d-29e3-4b49-9ff9-830acb034d31\"}\n"} -{"Time":"2022-12-07T09:15:40.551978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:542: waiting for template version job e4324252-32d9-4184-aca3-95c01cb67069\n"} -{"Time":"2022-12-07T09:15:40.553372+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.553386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.553393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.553 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"960.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"132ae44a-2d1c-4c0b-8407-62d81be1a7ca\"}\n"} -{"Time":"2022-12-07T09:15:40.554219+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.554229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.554235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.554 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.791µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"50468f64-2379-4b13-885d-6b985ee4804c\"}\n"} -{"Time":"2022-12-07T09:15:40.554557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.554 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9adb13e3-90ff-4468-a4df-202a8bcd4f94\"}\n"} -{"Time":"2022-12-07T09:15:40.555669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.555 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"792.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e10eb51-bfc8-45d5-b0b7-b73565802250\"}\n"} -{"Time":"2022-12-07T09:15:40.556832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.556 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templates/intelligent-euler0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"734.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a552dc0b-4fb9-46fb-94d9-a91b2129c663\"}\n"} -{"Time":"2022-12-07T09:15:40.557098+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.557116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.557125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"942.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2b821217-e06b-4bf4-a784-c4480186c6f8\"}\n"} -{"Time":"2022-12-07T09:15:40.55715+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.557155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.557161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.014792ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e43bbad9-c4ed-4a95-8c84-7148c00b7b89\"}\n"} -{"Time":"2022-12-07T09:15:40.558449+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.558458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.558463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.558 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"539.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c9331b47-4b15-4357-a273-2907073d61c5\"}\n"} -{"Time":"2022-12-07T09:15:40.55984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.559 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.075166ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"a1af7951-302d-4d45-bcc6-38aff3d58c12\"}\n"} -{"Time":"2022-12-07T09:15:40.560142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.560: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.560392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.560407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.560412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.560 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"735.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6f944d42-6e33-43e2-b065-cbcc8146f429\"}\n"} -{"Time":"2022-12-07T09:15:40.560746+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.560755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.560759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.560 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ea99ccca-a709-4378-ac95-b93cd03775f8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"540.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"82d1c758-c827-4db5-86c0-0aaca0f999a8\"}\n"} -{"Time":"2022-12-07T09:15:40.568182+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.568199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.568204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.568222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.568232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.568259+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.568265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.568269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.568278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.568288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.568348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.568404+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.568415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.56842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.568431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.568436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.56844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.568449+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.568452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.568456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.568553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.568 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"520fbce1-b5c5-4937-bea4-a7e5e1d87650\"}\n"} -{"Time":"2022-12-07T09:15:40.568574+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.568578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.568586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.568 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.573182+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:40.573196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:40.573205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.573257+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.573267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.573272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.573282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:40.573287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:40.573292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t(provisionerd-keen_northcutt0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.573302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.573382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.573 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.573401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"cd49d0d5-22b9-4b22-9e73-8d559e76ceef\"}\n"} -{"Time":"2022-12-07T09:15:40.573444+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.573458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.573464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.573584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:40.573633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.573734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.573759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.573809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.57392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:40.573936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:40.573941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.573 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/workspacebuilds/0424bef1-25f5-4ff1-b055-890ba8ca6334/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"833.047833ms\", \"status_code\": 101, \"latency_ms\": 833, \"request_id\": \"b87d5685-49b1-4b79-a192-43e09c7b9da3\"}\n"} -{"Time":"2022-12-07T09:15:40.574016+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.574025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.574031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.573 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:40.576281+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:40.5763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:40.576307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.576 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57339\", \"path\": \"/api/v2/workspacebuilds/0424bef1-25f5-4ff1-b055-890ba8ca6334\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"988.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"24db413f-113b-4994-885f-aa3623ed72e9\"}\n"} -{"Time":"2022-12-07T09:15:40.576557+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.576568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.576573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.576 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"699.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a08c032-0bc3-44a8-9c57-2a2d8f211410\"}\n"} -{"Time":"2022-12-07T09:15:40.576629+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:40.576641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:40.576648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:80: 2022-12-07 08:15:40.576: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:40.576657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.576: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [104ms]\"\n"} -{"Time":"2022-12-07T09:15:40.576666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.576: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:40.576674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" ptytest.go:103: 2022-12-07 08:15:40.576: cmd: stdout: \"The my-workspace workspace has been created at Dec 7 09:15:40!\"\n"} -{"Time":"2022-12-07T09:15:40.577302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" t.go:81: 2022-12-07 08:15:40.577 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:40.577797+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.577807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.577812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.577 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"659.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06c585ef-7f26-4d02-8283-7af96b2fbc2b\"}\n"} -{"Time":"2022-12-07T09:15:40.577893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.577911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.577917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.577 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"659.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c760f7a4-e4d4-4583-b6cb-2be8e22a7917\"}\n"} -{"Time":"2022-12-07T09:15:40.578638+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue"} -{"Time":"2022-12-07T09:15:40.578651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":"=== CONT TestCreate/WithParameterFileContainingTheValue\n"} -{"Time":"2022-12-07T09:15:40.578656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:40.578707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate","Output":"--- PASS: TestCreate (0.00s)\n"} -{"Time":"2022-12-07T09:15:40.578719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Output":" --- PASS: TestCreate/Create (1.00s)\n"} -{"Time":"2022-12-07T09:15:40.578724+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate/Create","Elapsed":1} -{"Time":"2022-12-07T09:15:40.578733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Output":" --- PASS: TestCreate/WithParameterFileNotContainingTheValue (0.36s)\n"} -{"Time":"2022-12-07T09:15:40.578739+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileNotContainingTheValue","Elapsed":0.36} -{"Time":"2022-12-07T09:15:40.578746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Output":" --- PASS: TestCreate/FailedDryRun (0.73s)\n"} -{"Time":"2022-12-07T09:15:40.57875+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate/FailedDryRun","Elapsed":0.73} -{"Time":"2022-12-07T09:15:40.578754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Output":" --- PASS: TestCreate/WithParameter (1.53s)\n"} -{"Time":"2022-12-07T09:15:40.578759+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameter","Elapsed":1.53} -{"Time":"2022-12-07T09:15:40.578762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Output":" --- PASS: TestCreate/CreateFromListWithSkip (1.37s)\n"} -{"Time":"2022-12-07T09:15:40.578768+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate/CreateFromListWithSkip","Elapsed":1.37} -{"Time":"2022-12-07T09:15:40.578772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Output":" --- PASS: TestCreate/FromNothing (1.86s)\n"} -{"Time":"2022-12-07T09:15:40.578775+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate/FromNothing","Elapsed":1.86} -{"Time":"2022-12-07T09:15:40.578778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Output":" --- PASS: TestCreate/WithParameterFileContainingTheValue (2.15s)\n"} -{"Time":"2022-12-07T09:15:40.578793+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate/WithParameterFileContainingTheValue","Elapsed":2.15} -{"Time":"2022-12-07T09:15:40.578797+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreate","Elapsed":0} -{"Time":"2022-12-07T09:15:40.5788+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.578806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.581583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.581595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.5816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.581 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"775.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1a5501d5-46c7-463a-b130-4f456428e9f7\"}\n"} -{"Time":"2022-12-07T09:15:40.583785+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.583796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.583801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.583 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"201.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4ec54563-aaaf-40c4-8a90-fe389915e7b6\"}\n"} -{"Time":"2022-12-07T09:15:40.584167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.584 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"72.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e518f819-041f-4ff5-9f33-d0060d10e9ac\"}\n"} -{"Time":"2022-12-07T09:15:40.585417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"885.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4be7f0ea-4eed-490f-ae8d-7eead954d268\"}\n"} -{"Time":"2022-12-07T09:15:40.586017+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.586028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.586033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"762.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"541c5781-5b40-45c5-9578-7de073461f30\"}\n"} -{"Time":"2022-12-07T09:15:40.586893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.586905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.58691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/organizations/23b3d90f-6782-4495-ba31-1071723e228a/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.134833ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"b95d5972-fc9e-4317-baea-6e7c6ca5b1a4\"}\n"} -{"Time":"2022-12-07T09:15:40.587063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" configssh_test.go:542: waiting for template version job 45621f32-2499-43da-9330-79a358eb2201\n"} -{"Time":"2022-12-07T09:15:40.587858+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.587869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.587879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/organizations/33fd8505-9aa5-4c83-9346-728ee006063c/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"578.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"65459bec-f51f-4ad2-8e7e-9cecea207fe1\"}\n"} -{"Time":"2022-12-07T09:15:40.588444+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.588455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.588459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.588 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.588614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.588 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.588699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.588 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:40.588768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.588 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.588817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.588 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.588854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.588 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"size_bytes\": 2, \"path\": \"/tmp/TestDeleteDifferentUser3817601086/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.588892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.588 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"workspace_name\": \"compassionate-torvalds9\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:40.589164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.589 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.589193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.589 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.591727+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.591739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.591743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.591 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"27.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"0283bec2-97dc-4940-be6e-9ef9b3174b3f\"}\n"} -{"Time":"2022-12-07T09:15:40.59201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.591 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"29.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4feaa916-a4c3-4120-bf34-5a828b52f420\"}\n"} -{"Time":"2022-12-07T09:15:40.592842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.592 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"561.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5dd871ff-24eb-45a1-983d-d89dda264c36\"}\n"} -{"Time":"2022-12-07T09:15:40.593635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.593 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/organizations/33fd8505-9aa5-4c83-9346-728ee006063c/templates/003\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"500.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8052aa2b-0567-44e2-8673-675b20ca357e\"}\n"} -{"Time":"2022-12-07T09:15:40.593829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" templatepush_test.go:197: 2022-12-07 08:15:40.593: cmd: matched \"Upload\" = \"\u003e Upload\"\n"} -{"Time":"2022-12-07T09:15:40.593852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" templatepush_test.go:198: 2022-12-07 08:15:40.593: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:40.593931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.593: cmd: stdout: \"\u003e Upload \\\"/tmp/TestTemplatePushUseWorkingDir2330205981/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:40.594919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.594 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"480.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4b3618c2-d947-4ceb-9f63-f936f619afe9\"}\n"} -{"Time":"2022-12-07T09:15:40.596136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.596 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/organizations/33fd8505-9aa5-4c83-9346-728ee006063c/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"941.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6c07ffe7-da12-43a0-853e-d53e6b8b624c\"}\n"} -{"Time":"2022-12-07T09:15:40.59631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.596: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.596888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.596 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/8aa2f2c6-0514-4b25-9790-85c365cce0be\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"343eda06-4019-402d-8383-0ee6029bc87c\"}\n"} -{"Time":"2022-12-07T09:15:40.602785+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.602793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.602798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.602 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"691.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6f280f3e-d192-4f27-826b-fb3f59882db8\"}\n"} -{"Time":"2022-12-07T09:15:40.603835+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.603843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.603847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"773.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6924e4d2-2b58-4e34-a4df-e1ad14d46495\"}\n"} -{"Time":"2022-12-07T09:15:40.603856+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.60386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.603864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"766.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"056f9b7b-3d99-4445-a464-3e57a04fadd4\"}\n"} -{"Time":"2022-12-07T09:15:40.60477+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.604781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.604784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.604 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"453.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b0d7e28d-61ae-42e8-b3b8-001497181df2\"}\n"} -{"Time":"2022-12-07T09:15:40.613686+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.613694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.613698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.613 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"463.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9d091c71-5398-40fc-89f3-6b86b976787a\"}\n"} -{"Time":"2022-12-07T09:15:40.619316+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.619325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.619328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.619 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.619356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.619 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.619438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.619 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.619476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.619 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8ba7f8d5-6723-487c-af8d-1940ef7206dc\"}\n"} -{"Time":"2022-12-07T09:15:40.622432+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.622449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.622453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.622 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"41µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:40.624149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.624 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.624361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.624 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.626461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.626 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"469.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d8ca81ec-1dad-499e-9917-2c221aba928b\"}\n"} -{"Time":"2022-12-07T09:15:40.627617+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.627634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.627638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.627 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"471µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"707e2925-9a52-4871-8721-1dcbf089228e\"}\n"} -{"Time":"2022-12-07T09:15:40.627674+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.627678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.627681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.627 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"585.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a41656a2-93e5-4a64-b9d6-610f7aa68b07\"}\n"} -{"Time":"2022-12-07T09:15:40.629911+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.62992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.629923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.629 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"461.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4214318d-568a-4b29-aef4-c556d424f774\"}\n"} -{"Time":"2022-12-07T09:15:40.630718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.630 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/organizations/e1d0cad4-8acb-4f32-a70d-dac8dc55c512/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.541µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"aeca81fa-3ccd-48a8-97c9-64af07408d59\"}\n"} -{"Time":"2022-12-07T09:15:40.635466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"28.167µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"586fb8f7-35f6-4007-a90f-b2afcbb6ae7d\"}\n"} -{"Time":"2022-12-07T09:15:40.635807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"34.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f65d8d18-dc92-4457-8fa5-733d2add3d7a\"}\n"} -{"Time":"2022-12-07T09:15:40.636664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.636 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"565.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e44d2bee-a0c7-4fc8-b3d6-d18dc302fa44\"}\n"} -{"Time":"2022-12-07T09:15:40.637526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/organizations/e1d0cad4-8acb-4f32-a70d-dac8dc55c512/templates/cranky-roentgen1\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"576.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8c99f9c-97ca-4307-a2b7-c640a8f19bed\"}\n"} -{"Time":"2022-12-07T09:15:40.637768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" templatepush_test.go:143: 2022-12-07 08:15:40.637: cmd: matched \"Upload\" = \"\u003e Upload\"\n"} -{"Time":"2022-12-07T09:15:40.637779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" templatepush_test.go:144: 2022-12-07 08:15:40.637: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:40.63782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.637831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.637836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"545.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8a7f837b-ed8c-4f23-a3e2-802c06b3f7a3\"}\n"} -{"Time":"2022-12-07T09:15:40.637845+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.63785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.637853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:40.637: cmd: stdout: \"\u003e Upload \\\"/tmp/TestTemplatePushOK123133992/003\\\"? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:40.639004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.638 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"503.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f648348c-ff52-448d-84d5-e97f563eff0f\"}\n"} -{"Time":"2022-12-07T09:15:40.639763+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.639777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.63978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.639 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.639787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.639 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.640184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.639 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.640328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.640 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.640406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.640 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.640531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.640 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"request_id\": \"fcf50282-1f62-4190-8a24-8e7915ef0d44\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.641013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.640: cmd: stdout: \"\\x1b[1A\\r✔ Queued [587ms]\"\n"} -{"Time":"2022-12-07T09:15:40.641027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.640: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.64221+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.642219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.642223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.642 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/organizations/e1d0cad4-8acb-4f32-a70d-dac8dc55c512/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.899125ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"13fe9162-44e5-4e72-8f4e-e3f42c640979\"}\n"} -{"Time":"2022-12-07T09:15:40.642474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:40.642: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.643429+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.643436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.643439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.643 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.643442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.643 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.643709+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.643716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.643722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.643 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5216a993-b8ac-495a-a4de-bbdb760c6f0f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.059833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1bd3bf97-5653-4537-86c3-930e9536ea77\"}\n"} -{"Time":"2022-12-07T09:15:40.644189+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.644209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.644216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.644 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:40.651726+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.651736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.65174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.651 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"487.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f1f665fd-5444-4c06-9d1d-061755706a6b\"}\n"} -{"Time":"2022-12-07T09:15:40.652439+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.652444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.652447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.652 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e7aa1de-e371-46cb-9e8c-4d0d5a353cd3\"}\n"} -{"Time":"2022-12-07T09:15:40.652536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.652541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.652545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.652 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"406.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"09534254-1a12-406a-a97f-9129f67d557d\"}\n"} -{"Time":"2022-12-07T09:15:40.663757+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.663763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.663769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.663 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f72d8bb8-9232-4ea3-a901-0222a2347592\"}\n"} -{"Time":"2022-12-07T09:15:40.675334+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.675341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.675345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.675368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.675391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.675416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.675439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.675474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.675491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.675669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.675678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.675 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.676287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.676 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"496.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6039b4d8-2f45-4a25-896e-1f65f1fd1411\"}\n"} -{"Time":"2022-12-07T09:15:40.677546+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.677555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.677558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.677 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"470.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"794a7e06-2dee-4d65-91c2-c16f9b430b87\"}\n"} -{"Time":"2022-12-07T09:15:40.677562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.677565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.677568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.677 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"387.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3dbcb00f-7d3e-4a69-ab9a-98ca0fc394ea\"}\n"} -{"Time":"2022-12-07T09:15:40.683066+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.683074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.683077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.683 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:40.688214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.688 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"151f5da8-1fbb-4e36-a1d2-9923ec2b15fc\"}\n"} -{"Time":"2022-12-07T09:15:40.694324+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.694338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.694343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.694349+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.694353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.69436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.694369+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.694372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.694379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Destroying workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.694384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.694413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.694457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.694466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.69447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.694481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.694488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.694494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.694523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.694529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Destroying workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.694534+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.694537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.694544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:40.694556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.694559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.694562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"request_id\": \"fcf50282-1f62-4190-8a24-8e7915ef0d44\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.694624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.694633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.694637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.694645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.694651+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.694656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.694659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"request_id\": \"fcf50282-1f62-4190-8a24-8e7915ef0d44\", \"stage\": \"Destroying workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.694706+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.694712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.694716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.694725+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.694727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.69473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.694: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:40.694735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.694737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.694741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.69481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.694815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.694818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.694: cmd: stdout: \"✔ Setting up [52ms]\"\n"} -{"Time":"2022-12-07T09:15:40.694824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.694: cmd: stdout: \"⧗ \\x1b[;mDestroying workspace\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.694876+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.694882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.694886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.694 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:40.702003+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.70201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.702013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.701 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"473.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6aad0f0-6457-4cc0-b0f6-24ef4cdba632\"}\n"} -{"Time":"2022-12-07T09:15:40.70268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.702689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.702693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"506.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"682a849f-86de-4306-895a-00a82c456419\"}\n"} -{"Time":"2022-12-07T09:15:40.702702+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.702706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.702711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"581.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aff19967-7323-41ac-ba75-b9608f527caa\"}\n"} -{"Time":"2022-12-07T09:15:40.713854+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.713862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.713868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.713 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"534.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da2d5641-d7e0-45bc-9680-84c5a1561003\"}\n"} -{"Time":"2022-12-07T09:15:40.726816+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.726825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.726829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.726 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.726839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.726 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.726878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.726 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.72692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.726 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.726998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.726 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.727067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.727 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.727534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.727 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"574.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1169ee10-c02c-47ab-a8f9-a99a80b2e5ab\"}\n"} -{"Time":"2022-12-07T09:15:40.72782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.727833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.727843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.727 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"585.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae5bc6ab-5501-4fc3-9375-3c84341cc63d\"}\n"} -{"Time":"2022-12-07T09:15:40.727852+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.727877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.727882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.727 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"653.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aeab73de-cfde-47c6-a063-4f368a46846f\"}\n"} -{"Time":"2022-12-07T09:15:40.733925+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.733937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.733942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.733 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.734079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.734 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.734172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.734 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:40.734264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.734 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.734318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.734 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.734362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.734 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.734385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.734 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.734539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.734 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:40.738557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.738 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"741.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f1d08690-8f3f-48a9-a4a5-4e7754df2a10\"}\n"} -{"Time":"2022-12-07T09:15:40.742657+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.742666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.742672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.742 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"41.708µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:40.744935+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.744945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.74495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.744 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.744959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.744 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.745027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.744 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.745116+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.745131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.745137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.744 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.745144+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.745147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.745152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.745 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.745162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.745 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Destroying workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.745168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.745 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.745176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.745 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.745277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.745 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"request_id\": \"fcf50282-1f62-4190-8a24-8e7915ef0d44\", \"stage\": \"Destroying workspace\"}\n"} -{"Time":"2022-12-07T09:15:40.745291+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.745296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.7453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.745 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.745396+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.745411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.745415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.745 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\", \"request_id\": \"fcf50282-1f62-4190-8a24-8e7915ef0d44\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.745518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.745: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:40.745531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.745: cmd: stdout: \"✔ Destroying workspace [54ms]\"\n"} -{"Time":"2022-12-07T09:15:40.74554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:103: 2022-12-07 08:15:40.745: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.745614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" delete_test.go:105: 2022-12-07 08:15:40.745: cmd: matched \"Cleaning Up\" = \"⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [587ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n \\r\\n✔ Setting up [52ms]\\r\\n⧗ \\x1b[;mDestroying workspace\\x1b[0m \\r\\n \\r\\n✔ Destroying workspace [54ms]\\r\\n⧗ \\x1b[;mCleaning Up\"\n"} -{"Time":"2022-12-07T09:15:40.752165+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.752176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.752181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.752 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"692.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fffe8d89-597b-4751-80ce-2b5f10069ee7\"}\n"} -{"Time":"2022-12-07T09:15:40.752933+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.752943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.752948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.752 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"735.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7f33d57a-6f36-4775-8f31-6f54ba937740\"}\n"} -{"Time":"2022-12-07T09:15:40.752956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.75296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.752965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.752 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"722.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bf52e5ef-e39f-4d3c-b574-c4f10fee7a28\"}\n"} -{"Time":"2022-12-07T09:15:40.764517+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.764564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.76457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.764 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.013875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a5a80163-02d1-4959-aa8a-2dd0de08e9e2\"}\n"} -{"Time":"2022-12-07T09:15:40.781809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.781842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.78185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.777 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.053ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"912b6c58-f0b3-4f6a-9ac8-aa1c75fc5bf9\"}\n"} -{"Time":"2022-12-07T09:15:40.781858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.778 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.781864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.778 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.781868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.778 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.781874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.778 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"9c71b00f-018c-4394-9acb-4275386730f9\"}\n"} -{"Time":"2022-12-07T09:15:40.781879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.781885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.781889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.781 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.737375ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"70bcdaf1-9496-4904-8c40-92b3e41b716a\"}\n"} -{"Time":"2022-12-07T09:15:40.782649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.782659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.782665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.782 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"20.667µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:40.783306+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.783319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.783327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.088333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bf221169-2235-42bf-91b7-6ed520320085\"}\n"} -{"Time":"2022-12-07T09:15:40.784748+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.784756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.784762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.784 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.785073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.784 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.788552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.788 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"881.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8aaa84af-e9b0-4a41-a45a-30eb6f037e56\"}\n"} -{"Time":"2022-12-07T09:15:40.797148+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.797173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.797179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.797186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-infallible_ardinghelli1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.79719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.797197+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.797201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.797206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.797212+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.79727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.797274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.79728+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.797284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.797289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.797294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.7973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.797305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.79731+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.797314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.797317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.796 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"99adc68e-6212-4e98-8016-54b07b30e887\"}\n"} -{"Time":"2022-12-07T09:15:40.797322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.797326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.797331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.797336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.797341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.797353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.796 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.797359+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.797362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.797366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.797 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/ed2629ac-006d-401b-a492-f360ebfcf962/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"793.784083ms\", \"status_code\": 101, \"latency_ms\": 793, \"request_id\": \"fcf50282-1f62-4190-8a24-8e7915ef0d44\"}\n"} -{"Time":"2022-12-07T09:15:40.80248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.801 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspacebuilds/ed2629ac-006d-401b-a492-f360ebfcf962\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.712166ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"facbe25c-58f2-4a35-9a49-ea3fe4a81247\"}\n"} -{"Time":"2022-12-07T09:15:40.802526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.802533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.802541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.801 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.125917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"78645ec5-e889-4d64-b9e3-1cc9692de637\"}\n"} -{"Time":"2022-12-07T09:15:40.811128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.811158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.811165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.803 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57386\", \"path\": \"/api/v2/workspaces/629a3c33-528c-4ca5-a3fa-31b1d8c74a58\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.3735ms\", \"status_code\": 410, \"latency_ms\": 1, \"request_id\": \"8b4d4f16-3893-4c1d-9297-4ffe88cfe1f2\"}\n"} -{"Time":"2022-12-07T09:15:40.811174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" ptytest.go:80: 2022-12-07 08:15:40.803: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:40.811186+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.811192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.811197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.805 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.2295ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"50525315-a146-4335-9396-db826eeae010\"}\n"} -{"Time":"2022-12-07T09:15:40.811205+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.811209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.811214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.805 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/organizations/d54c4ffe-ed2e-44b3-8ae6-61efc0b41369/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.28825ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"42724811-1843-445a-a4b5-07d551eb26ea\"}\n"} -{"Time":"2022-12-07T09:15:40.811247+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.811251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.811256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" t.go:81: 2022-12-07 08:15:40.806 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:40.811263+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.811267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.811275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.807 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.196459ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a4d22460-3233-41af-adb4-bbea1b9fa5d0\"}\n"} -{"Time":"2022-12-07T09:15:40.811282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser"} -{"Time":"2022-12-07T09:15:40.811286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":"=== CONT TestDelete/DifferentUser\n"} -{"Time":"2022-12-07T09:15:40.81129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:40.811303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete","Output":"--- PASS: TestDelete (0.00s)\n"} -{"Time":"2022-12-07T09:15:40.81131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Output":" --- PASS: TestDelete/WithParameter (1.66s)\n"} -{"Time":"2022-12-07T09:15:40.811323+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDelete/WithParameter","Elapsed":1.66} -{"Time":"2022-12-07T09:15:40.811339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Output":" --- PASS: TestDelete/InvalidWorkspaceIdentifier (0.00s)\n"} -{"Time":"2022-12-07T09:15:40.811343+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDelete/InvalidWorkspaceIdentifier","Elapsed":0} -{"Time":"2022-12-07T09:15:40.811347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Output":" --- PASS: TestDelete/Orphan (1.49s)\n"} -{"Time":"2022-12-07T09:15:40.811352+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDelete/Orphan","Elapsed":1.49} -{"Time":"2022-12-07T09:15:40.811356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Output":" --- PASS: TestDelete/DifferentUser (1.91s)\n"} -{"Time":"2022-12-07T09:15:40.811361+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDelete/DifferentUser","Elapsed":1.91} -{"Time":"2022-12-07T09:15:40.811364+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestDelete","Elapsed":0} -{"Time":"2022-12-07T09:15:40.811368+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.811371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.811376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.811379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.811384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.810 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/organizations/d54c4ffe-ed2e-44b3-8ae6-61efc0b41369/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.560833ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"b5bb8dda-7548-4c0c-bee4-48dcc07d6132\"}\n"} -{"Time":"2022-12-07T09:15:40.81139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" configssh_test.go:545: waiting for workspace build job 4bd355a1-cf10-4666-be25-627399ed888e\n"} -{"Time":"2022-12-07T09:15:40.811398+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.811402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.811406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.811 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:40.811922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.811 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:40.81194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.811 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:40.811948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.811 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushUseWorkingDir2330205981/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.811954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.811 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushUseWorkingDir2330205981/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.811961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.811 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushUseWorkingDir2330205981/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.813093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.811 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplatePushUseWorkingDir2330205981/002/2264841254.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.813105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.812 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:40.813117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.812 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:40.816091+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.816107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.816112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.816 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"720.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a1c3e919-d4f8-4ae9-aa38-bed1f3148dd4\"}\n"} -{"Time":"2022-12-07T09:15:40.816694+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.816702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.816706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.816 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"191.916µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a236cd3c-b3fd-4e2d-a1a1-f66845e7e5d8\"}\n"} -{"Time":"2022-12-07T09:15:40.817021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.816 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"63.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e1dd8e5a-3583-4118-80a8-74cbf2e688be\"}\n"} -{"Time":"2022-12-07T09:15:40.818145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.818 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"791.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3bdb3c86-3d61-4d72-9322-e5a101607b3e\"}\n"} -{"Time":"2022-12-07T09:15:40.819836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.819 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/organizations/85f6ef2f-c671-401f-b461-49639bdf4447/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.314417ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"e707ec5d-b856-4bca-a7fe-abc98ad0abfc\"}\n"} -{"Time":"2022-12-07T09:15:40.820035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" configssh_test.go:542: waiting for template version job bfcc0824-ccfe-4e9d-9cc9-70e099602f79\n"} -{"Time":"2022-12-07T09:15:40.83079+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.830803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.830809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.040583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"08986645-b8e8-423d-a5f8-b33ce7617e81\"}\n"} -{"Time":"2022-12-07T09:15:40.830824+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.83083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.830835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.028833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"87f1316b-15d8-47f7-a8b9-f108533d1cd5\"}\n"} -{"Time":"2022-12-07T09:15:40.835546+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.835556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.835561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.835 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.835611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.835 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.835636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.835 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.835687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.835 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.835736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.835 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.835771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.835 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.835821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.835 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.836133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.836 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.836183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.836 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.83803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.837 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"680.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7da0ff8-30c6-49d9-9172-5eaff714b9ec\"}\n"} -{"Time":"2022-12-07T09:15:40.838265+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.838277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.838283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.838 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"949.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4413e961-7367-4219-8560-590d79c8ad91\"}\n"} -{"Time":"2022-12-07T09:15:40.847681+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.847739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.847749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.847 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.847756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.847 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.847763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.847 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.847826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.847 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.847832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.847 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.847838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.847 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.848155+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.848161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.848166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.847 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.430375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"23edbd7c-dac8-4cc6-a0e1-062ab62cf1f4\"}\n"} -{"Time":"2022-12-07T09:15:40.858533+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.858568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.858578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.856 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} -{"Time":"2022-12-07T09:15:40.858584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.856 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} -{"Time":"2022-12-07T09:15:40.85859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.857 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:40.858597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.857 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.858603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.857 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.858609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.857 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.858647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.857 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/3166569989.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.858654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.857 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} -{"Time":"2022-12-07T09:15:40.85866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.857 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} -{"Time":"2022-12-07T09:15:40.858667+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.858673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.858677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.857 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.106375ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"cf16c1fc-4b7a-48bc-983b-0730b1c2020a\"}\n"} -{"Time":"2022-12-07T09:15:40.860363+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.860381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.860388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.859 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"979.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2e940ea8-e0af-48ee-94a8-89bfbbbf2f05\"}\n"} -{"Time":"2022-12-07T09:15:40.865156+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.865229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.865238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.863 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.466041ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f77879bb-9296-4b1b-9038-d6079d8c8fe6\"}\n"} -{"Time":"2022-12-07T09:15:40.865248+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.865253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.865258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.864 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"943.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e0bdb023-fb64-4842-9c9a-381a48503089\"}\n"} -{"Time":"2022-12-07T09:15:40.865651+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.865658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.865665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.865 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:40.865951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.865 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.872527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.872563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.872572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.871 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.174833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d6407bbc-bda8-49b1-9f26-ff487d68f3fb\"}\n"} -{"Time":"2022-12-07T09:15:40.881235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.881273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.881283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.895334ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0240e79e-619d-43ea-911a-536f9f82633d\"}\n"} -{"Time":"2022-12-07T09:15:40.881293+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.881297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.881303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.6905ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4e05acf5-8591-4364-a723-835406bd860f\"}\n"} -{"Time":"2022-12-07T09:15:40.886889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.886914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.886922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.886 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.886929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.886 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.886938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.886 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.886945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.886 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.886961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.886 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.886969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.886 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.888124+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.888137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.888145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.887 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.310541ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"702b83d9-5714-4e48-857c-1d92424edf9b\"}\n"} -{"Time":"2022-12-07T09:15:40.888628+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.888637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.888644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.888 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"998.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ede0bd9c-660c-42f0-8ec1-232e1a6d3cd0\"}\n"} -{"Time":"2022-12-07T09:15:40.899046+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.899083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.899093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.897 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.899103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.898 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.900023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.898 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.900044+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.90005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.900056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.898 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.359166ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"770edfca-70c3-40fd-a47a-9f2158e6469c\"}\n"} -{"Time":"2022-12-07T09:15:40.900069+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.900075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.900081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.898 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d40824de-bf35-4a8e-81ad-654144a1face\"}\n"} -{"Time":"2022-12-07T09:15:40.905978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.905 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.229666ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"e8a719c5-79b6-40a6-b072-918d8dbb0b03\"}\n"} -{"Time":"2022-12-07T09:15:40.90602+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.906026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.906033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.905 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.009084ms\", \"status_code\": 200, \"latency_ms\": 3, \"request_id\": \"c526bb9e-5fc4-4477-8b1c-68928e0c5365\"}\n"} -{"Time":"2022-12-07T09:15:40.908462+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.90849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.908498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.906 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/organizations/0bd0d8e1-006e-4cd0-8fd6-9679d77c9ea6/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.1735ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"f71ff1ff-cf95-4e39-9f46-533ef2767f08\"}\n"} -{"Time":"2022-12-07T09:15:40.908511+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.908516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.908522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.906 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:40.908529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:40.908536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:40.908543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushOK123133992/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.908551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushOK123133992/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.908558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushOK123133992/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.908565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplatePushOK123133992/002/3764930465.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.908572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:40.908579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.907 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:40.908587+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.908592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.908598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.908 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} -{"Time":"2022-12-07T09:15:40.908605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.908 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} -{"Time":"2022-12-07T09:15:40.910054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.910124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.910132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/organizations/0bd0d8e1-006e-4cd0-8fd6-9679d77c9ea6/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.499833ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"9ddfbc79-307e-4e05-ad50-51cb1609e987\"}\n"} -{"Time":"2022-12-07T09:15:40.910509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:545: waiting for workspace build job 20bb7cb8-18e9-48dc-9903-36f5d2fe6444\n"} -{"Time":"2022-12-07T09:15:40.913305+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.913338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.913346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.912 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.190125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"00780621-6d77-42f8-ac62-539c5a5d0651\"}\n"} -{"Time":"2022-12-07T09:15:40.913487+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.913494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.9135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.913 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"992.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f7ab1f53-4781-434c-b4fa-1569eae023e8\"}\n"} -{"Time":"2022-12-07T09:15:40.916469+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.916501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.916509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:40.916518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.916525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.91653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.916536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:40.916542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.916547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.916553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.916562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.916571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.916986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:40.916997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:40.917004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.917009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:40.917016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:40.917022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:40.917818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.916 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.917831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.917 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.917838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:40.917853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.917 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:40.917859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.917 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:40.917864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.917 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:40.917967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.917: cmd: stdout: \"\\x1b[1A\\r✔ Queued [214ms]\"\n"} -{"Time":"2022-12-07T09:15:40.917978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.917: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.917983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.917: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [1ms]\"\n"} -{"Time":"2022-12-07T09:15:40.918022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.917: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.918029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.917: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [53ms]\"\n"} -{"Time":"2022-12-07T09:15:40.918034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.917: cmd: stdout: \"⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.92199+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.922012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.92202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.921 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.284708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"46b405e9-2482-4807-9266-b2aa622df30f\"}\n"} -{"Time":"2022-12-07T09:15:40.928883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.928927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.928936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.928 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.099083ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3e1ef0c8-4a7a-4cd7-a40e-79e036a6066f\"}\n"} -{"Time":"2022-12-07T09:15:40.938728+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.938765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.938776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.938 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.362709ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"207a65cc-9941-4940-8898-f1b0b9514a60\"}\n"} -{"Time":"2022-12-07T09:15:40.938789+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.938795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.938802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.938 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.362958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"6d889927-eab9-449c-9095-9b8a0f8f1d21\"}\n"} -{"Time":"2022-12-07T09:15:40.938816+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.938823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.938829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.938 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.939582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.938 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.939599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.938 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.939608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.938 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"72ef3bff-1d1b-4b95-8930-b878e5df4be5\"}\n"} -{"Time":"2022-12-07T09:15:40.940207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.940 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.15475ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f26f56f2-081e-4651-ac6e-3fff3132ff1a\"}\n"} -{"Time":"2022-12-07T09:15:40.941699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.941 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/organizations/23b3d90f-6782-4495-ba31-1071723e228a/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.036833ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"4a2cff78-cae7-4402-b42a-37d3f3d88859\"}\n"} -{"Time":"2022-12-07T09:15:40.944235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.944 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/organizations/23b3d90f-6782-4495-ba31-1071723e228a/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.102125ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"a1f653ae-9f02-49ab-a41d-186fafeebe4a\"}\n"} -{"Time":"2022-12-07T09:15:40.944471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" configssh_test.go:545: waiting for workspace build job e3650b38-1bf8-4754-8bc4-4e9e40934f45\n"} -{"Time":"2022-12-07T09:15:40.947024+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.947047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.947055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.946 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"945.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ce2547cc-a756-4901-94ba-e38102061b25\"}\n"} -{"Time":"2022-12-07T09:15:40.95447+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.954506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.954515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.954 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.245667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ea7e1217-7242-45df-9b5c-13546e43418d\"}\n"} -{"Time":"2022-12-07T09:15:40.959063+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:40.959083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:40.95909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.958 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:40.959096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:40.958 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:40.959106+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:40.959111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:40.959167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} -{"Time":"2022-12-07T09:15:40.959175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.95942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.959434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.959439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.959444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} -{"Time":"2022-12-07T09:15:40.959451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} -{"Time":"2022-12-07T09:15:40.959797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.959807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:40.959812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:186\u003e\t(*Runner).Run\tsending FailedJob\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} -{"Time":"2022-12-07T09:15:40.959818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:40.959823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.959829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.959 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"request_id\": \"175820f1-1308-4fbb-a6ff-de528e023f36\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:40.961248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.960 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"request_id\": \"175820f1-1308-4fbb-a6ff-de528e023f36\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:40.961264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.960 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"request_id\": \"175820f1-1308-4fbb-a6ff-de528e023f36\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:40.96127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:40.960 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\", \"request_id\": \"175820f1-1308-4fbb-a6ff-de528e023f36\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.961275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.961: cmd: stdout: \"\\x1b[1A\\r✔ Queued [297ms]\"\n"} -{"Time":"2022-12-07T09:15:40.96128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.961: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.96129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.961: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} -{"Time":"2022-12-07T09:15:40.961295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.961: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.9613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.961: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [51ms]\"\n"} -{"Time":"2022-12-07T09:15:40.961305+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:40.961: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.962483+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.962495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.962501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.007042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"76da7d13-b861-41f9-9b3e-06130a3c6094\"}\n"} -{"Time":"2022-12-07T09:15:40.963013+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.963021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.963027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.962 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"978.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b28d4555-f2f8-440f-ad2a-319e25e21bcf\"}\n"} -{"Time":"2022-12-07T09:15:40.96721+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.967222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.967228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:40.968689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:40.968705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:40.968714+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.968719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.968725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:40.968731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.968739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.968744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.96875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_when_prev_opts_flag_is_set1359041455/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.968758+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.968762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.968768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:40.968778+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.968782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.968789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_when_prev_opts_flag_is_set1359041455/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.968796+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.968801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.968806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:40.968812+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.968817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.968823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_when_prev_opts_flag_is_set1359041455/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:40.968829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.968833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.968838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:40.968845+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.96885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.968855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:40.968862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.968867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.968872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:40.968881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:40.968888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.968895+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.968901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.968906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.967 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:40.968912+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:40.968918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:40.968923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.967 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:40.968929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.968 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:40.968936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.968 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\", \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:40.968942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:40.968 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:40.969333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.969: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:40.969345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.969: cmd: stdout: \"✔ Detecting persistent resources [0ms]\"\n"} -{"Time":"2022-12-07T09:15:40.969351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.969: cmd: stdout: \"⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.969358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.969: cmd: stdout: \"\\x1b[1A\\r✔ Detecting ephemeral resources [52ms]\"\n"} -{"Time":"2022-12-07T09:15:40.969363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:40.969: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:40.972041+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.972072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.97208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.971 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"980.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8646f6ac-5c89-4426-98f6-595faa99b620\"}\n"} -{"Time":"2022-12-07T09:15:40.97209+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.972096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.972102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.971 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.979208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"fa32a6f2-517a-49c5-bc1f-8e5448c264b4\"}\n"} -{"Time":"2022-12-07T09:15:40.980678+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:40.980712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:40.980719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:40.979 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.307875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"52005c01-913c-4064-a199-97a66e95fd4b\"}\n"} -{"Time":"2022-12-07T09:15:40.988016+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:40.988053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:40.988063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:40.987 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.380458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"918d98f1-7fd6-402f-8fd2-dbbe5d93938d\"}\n"} -{"Time":"2022-12-07T09:15:40.988076+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:40.98808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:40.988089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:40.987 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.392ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"01c56f9d-7b1a-47b2-93f5-0b187d477d7e\"}\n"} -{"Time":"2022-12-07T09:15:40.997537+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:40.997572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:40.997581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:40.997 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.294917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ba26af3e-d554-4ddc-a810-a9c74979d1da\"}\n"} -{"Time":"2022-12-07T09:15:40.997621+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:40.997627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:40.997634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:40.997 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.057ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3c7d3d47-f2f3-4b6a-b1c5-507aa981f69f\"}\n"} -{"Time":"2022-12-07T09:15:41.003883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.003902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.003935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.003 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.12325ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ba89a131-6f2d-4dd5-940f-71b6b1b42ef3\"}\n"} -{"Time":"2022-12-07T09:15:41.009135+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:41.009146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:41.009153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:41.009317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.00933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.009463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.009475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.009489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:41.010768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:41.01078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:41.01079+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:41.010799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:41.01082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:41.010828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.009 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:41.010836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:41.010844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:41.010856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.010 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.010866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:41.010874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.010 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:41.010887+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:41.010895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:41.010901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.010 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:470\u003e\t(*Server).FailJob\tFailJob starting\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} -{"Time":"2022-12-07T09:15:41.012629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} -{"Time":"2022-12-07T09:15:41.012651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.010 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} -{"Time":"2022-12-07T09:15:41.01266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.011 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:191\u003e\t(*Runner).Run\tsent FailedJob\t{\"job_id\": \"56149d25-8c44-4307-81fa-db04cfe50bd7\"}\n"} -{"Time":"2022-12-07T09:15:41.012667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.012 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ea99ccca-a709-4378-ac95-b93cd03775f8/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"446.936458ms\", \"status_code\": 101, \"latency_ms\": 446, \"request_id\": \"175820f1-1308-4fbb-a6ff-de528e023f36\"}\n"} -{"Time":"2022-12-07T09:15:41.014632+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:41.014654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:41.014662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.012: cmd: stdout: \"\\x1b[1A\\r✔ Queued [264ms]\"\n"} -{"Time":"2022-12-07T09:15:41.01467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.012: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:41.014677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.012: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} -{"Time":"2022-12-07T09:15:41.014683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.012: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:41.014691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.012: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [51ms]\"\n"} -{"Time":"2022-12-07T09:15:41.014697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.012: cmd: stdout: \"⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:41.014705+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.014711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.014719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.013 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.484834ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b0dcc593-a4d1-4b70-8be8-ba32b6eddd6e\"}\n"} -{"Time":"2022-12-07T09:15:41.014729+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.014735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.014741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.014 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.277625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c8cfe2f7-a335-4b45-af1f-2da2ba94f142\"}\n"} -{"Time":"2022-12-07T09:15:41.014755+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.014761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.014767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.014 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"35.5µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:41.018739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:41.018771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:41.018779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ea99ccca-a709-4378-ac95-b93cd03775f8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.657208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ad8dcd05-4b42-4ad7-abc0-e8ce8b71dae3\"}\n"} -{"Time":"2022-12-07T09:15:41.018789+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.018793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.018799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.018 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:41.018807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.018 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.021795+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:41.021821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:41.021828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.018 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:41.021833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.019 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:41.021839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.019 [DEBUG]\t(provisionerd-vibrant_nash1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:41.021844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:41.02185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:41.021855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.019 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"846029fa-7022-4d71-aab8-9fd7b14d6d55\"}\n"} -{"Time":"2022-12-07T09:15:41.02186+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:41.021864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:41.02187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ea99ccca-a709-4378-ac95-b93cd03775f8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.09075ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"52e7ffff-dc1c-479b-b12f-4bc4042adc5c\"}\n"} -{"Time":"2022-12-07T09:15:41.021877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.020: cmd: stdout: \"\\x1b[1A\\r✘ Cleaning Up [102ms]\"\n"} -{"Time":"2022-12-07T09:15:41.021885+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:41.021888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:41.021893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.020 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/8aa2f2c6-0514-4b25-9790-85c365cce0be/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"422.01625ms\", \"status_code\": 101, \"latency_ms\": 422, \"request_id\": \"a1a9a5bb-13e8-49e2-b79d-35d7a5049b97\"}\n"} -{"Time":"2022-12-07T09:15:41.021901+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.021904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.021911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.021 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"846.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"464c6893-88ef-48eb-8788-fd09080e0956\"}\n"} -{"Time":"2022-12-07T09:15:41.021919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:41.021922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:41.021928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.021 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ea99ccca-a709-4378-ac95-b93cd03775f8/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.10175ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a9306975-9e2c-426e-8ce0-b293543e049e\"}\n"} -{"Time":"2022-12-07T09:15:41.023831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.023 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ea99ccca-a709-4378-ac95-b93cd03775f8/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.348083ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0ffd5292-3a4a-459f-8171-d62d22a7172a\"}\n"} -{"Time":"2022-12-07T09:15:41.026436+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.026467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.026474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.026 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.884875ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"68c77903-e601-42a8-ae6c-73bfe127d503\"}\n"} -{"Time":"2022-12-07T09:15:41.026608+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:41.026633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:41.026642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.026 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.66075ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"3f1d1238-2d11-47ee-b877-695652f7e6dc\"}\n"} -{"Time":"2022-12-07T09:15:41.027746+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:41.027764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:41.02777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.027 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/8aa2f2c6-0514-4b25-9790-85c365cce0be\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.457959ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"baaede09-5de3-4fa9-93f4-dc4c8b9f530f\"}\n"} -{"Time":"2022-12-07T09:15:41.028387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [102ms]\"\n"} -{"Time":"2022-12-07T09:15:41.028408+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:41.028413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:41.028418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.028 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/1d842e1c-0674-4fdb-a3ec-f71067874190\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.139167ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ff09d750-d573-4111-9557-1614682a1dfe\"}\n"} -{"Time":"2022-12-07T09:15:41.029008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:41.029033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \" This template has required variables! They are scoped to \"\n"} -{"Time":"2022-12-07T09:15:41.029038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \" the template, and not viewable after being set. \"\n"} -{"Time":"2022-12-07T09:15:41.029043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \"\\r\"\n"} -{"Time":"2022-12-07T09:15:41.029047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \"\\x1b[1mvar.region\\x1b[0m\"\n"} -{"Time":"2022-12-07T09:15:41.029052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \" description\"\n"} -{"Time":"2022-12-07T09:15:41.029057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.028: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.029443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" templatepush_test.go:65: 2022-12-07 08:15:41.029: cmd: matched \"Enter a value:\" = \"⧗ \\x1b[;mQueued\\x1b[0m \\r\\n\\x1b[1A\\r✔ Queued [297ms]\\r\\n⧗ \\x1b[;mSetting up\\x1b[0m \\r\\n\\x1b[1A\\r✔ Setting up [0ms]\\r\\n⧗ \\x1b[;mParsing template parameters\\x1b[0m \\r\\n\\x1b[1A\\r✔ Parsing template parameters [51ms]\\r\\n⧗ \\x1b[;mCleaning Up\\x1b[0m \\r\\n\\x1b[1A\\r✘ Cleaning Up [102ms]\\r\\n \\r\\n This template has required variables! They are scoped to \\r\\n the template, and not viewable after being set. \\r\\n\\r\\r\\n\\x1b[1mvar.region\\x1b[0m\\r\\n description\\r\\n\\r\\n\u003e \\x1b[1mEnter a value:\"\n"} -{"Time":"2022-12-07T09:15:41.029586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" templatepush_test.go:66: 2022-12-07 08:15:41.029: cmd: stdin: \"peter-pan\\r\"\n"} -{"Time":"2022-12-07T09:15:41.029595+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:41.029599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:41.029609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/8aa2f2c6-0514-4b25-9790-85c365cce0be\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.165459ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2f7b5ba6-9a5c-4c71-ad06-27b42aee9005\"}\n"} -{"Time":"2022-12-07T09:15:41.029921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.029937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.029944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.30825ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"51d7e58f-edf2-4832-b1c8-0392ba4943a2\"}\n"} -{"Time":"2022-12-07T09:15:41.029954+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:41.029958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:41.029962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.029: cmd: stdout: \"\u003e \\x1b[1mEnter a value:\\x1b[0m peter-pan\"\n"} -{"Time":"2022-12-07T09:15:41.029967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.029: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.031448+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:41.031463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:41.031469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.031 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/8aa2f2c6-0514-4b25-9790-85c365cce0be/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.142917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bd40bcb9-57ed-49ed-91b7-bf37e818dc0a\"}\n"} -{"Time":"2022-12-07T09:15:41.032412+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:41.032428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:41.032449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.325334ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"aa83804e-01a4-4741-89a1-e2ce482dacb6\"}\n"} -{"Time":"2022-12-07T09:15:41.032861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.032: cmd: stdout: \"⧗ \\x1b[;mQueued\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:41.033055+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:41.03307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:41.033074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/8aa2f2c6-0514-4b25-9790-85c365cce0be/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"921.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"77c87d7b-adad-4e4d-babd-a40c96ea3d6d\"}\n"} -{"Time":"2022-12-07T09:15:41.034546+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:41.034557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:41.034562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.034 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.4615ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"fa73d87e-be6d-4e91-96c4-9841bfbf0a48\"}\n"} -{"Time":"2022-12-07T09:15:41.034966+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:41.034976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:41.03498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.034 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/df256d05-38e8-45b9-a635-872e93f45d23\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.321208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"afc3fa4e-a98d-40cc-a4b9-3aaf217c669c\"}\n"} -{"Time":"2022-12-07T09:15:41.036508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/parameters/import_job/520fbce1-b5c5-4937-bea4-a7e5e1d87650\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"918.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e2dd187-813d-4b2e-87ad-5f5e06a8b9e8\"}\n"} -{"Time":"2022-12-07T09:15:41.037232+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.037245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.03725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.037 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.132375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9045b068-9212-4c0a-a58a-60667aceaa69\"}\n"} -{"Time":"2022-12-07T09:15:41.037965+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:41.037973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:41.037978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.037 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templateversions/8aa2f2c6-0514-4b25-9790-85c365cce0be/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.002208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"88c38b0e-8adc-4a8f-8825-b1a60403d7f0\"}\n"} -{"Time":"2022-12-07T09:15:41.038223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.038: cmd: stdout: \"┌──────────┐\"\n"} -{"Time":"2022-12-07T09:15:41.038233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.038: cmd: stdout: \"│ Template │\"\n"} -{"Time":"2022-12-07T09:15:41.038237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.038: cmd: stdout: \"│ Preview │\"\n"} -{"Time":"2022-12-07T09:15:41.03824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.038: cmd: stdout: \"├──────────┤\"\n"} -{"Time":"2022-12-07T09:15:41.038244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.038: cmd: stdout: \"│ RESOURCE │\"\n"} -{"Time":"2022-12-07T09:15:41.038248+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.038251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.038255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.038 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.310625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3751af79-aa44-4d28-b594-288740f3ffef\"}\n"} -{"Time":"2022-12-07T09:15:41.038262+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir"} -{"Time":"2022-12-07T09:15:41.038265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":"=== CONT TestTemplatePush/UseWorkingDir\n"} -{"Time":"2022-12-07T09:15:41.038268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.038: cmd: stdout: \"├──────────┤\"\n"} -{"Time":"2022-12-07T09:15:41.038274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.038: cmd: stdout: \"└──────────┘\"\n"} -{"Time":"2022-12-07T09:15:41.0392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.039 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templates/6f43cf17-47f0-4dae-9fbf-d176aa1e5205/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"831.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"03bbf96b-83d0-4647-ae9c-8b5a7c9fec32\"}\n"} -{"Time":"2022-12-07T09:15:41.039461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:103: 2022-12-07 08:15:41.039: cmd: stdout: \"Updated version at Dec 7 09:15:41!\"\n"} -{"Time":"2022-12-07T09:15:41.0415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.041 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57478\", \"path\": \"/api/v2/templates/6f43cf17-47f0-4dae-9fbf-d176aa1e5205/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"879.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"510b9ee7-8b30-4c46-9028-e4bbbaa97355\"}\n"} -{"Time":"2022-12-07T09:15:41.041744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" ptytest.go:80: 2022-12-07 08:15:41.041: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:41.041846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" t.go:81: 2022-12-07 08:15:41.041 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:41.043406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:41.04345+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.043457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.045994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.046002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.046007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.045 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"700.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cfa51695-eeb6-487e-a73d-342b9ea7a814\"}\n"} -{"Time":"2022-12-07T09:15:41.046465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.046473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.046476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.046 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"652.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"83f8c77f-2f50-4b8c-b99c-ed815d7f7644\"}\n"} -{"Time":"2022-12-07T09:15:41.046923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.046933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.046937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.046 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"145.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"93756f22-842c-4fb2-b04f-74885d89feff\"}\n"} -{"Time":"2022-12-07T09:15:41.047198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.047 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"56.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"504fbeb3-f9cd-4c83-830b-6dd89ef4df43\"}\n"} -{"Time":"2022-12-07T09:15:41.048101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.048 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"651.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"04b5daeb-b45b-40bf-92fb-dd4f68130664\"}\n"} -{"Time":"2022-12-07T09:15:41.049208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.049 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/organizations/b8d13b16-c151-4265-a1ed-fdc926eab0be/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"889.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"14460725-989b-4d8c-a432-c51bd81989fc\"}\n"} -{"Time":"2022-12-07T09:15:41.04932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" configssh_test.go:542: waiting for template version job 8c08123c-13dc-48cf-ba7e-5b981f012fe8\n"} -{"Time":"2022-12-07T09:15:41.053281+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.053288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.053292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.053 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8b6a0c99-3bfd-45ce-b39d-cfb980cbaffb\"}\n"} -{"Time":"2022-12-07T09:15:41.061606+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:41.061618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:41.061622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:41.061632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.061675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.06171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:41.06175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:41.061836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:41.061847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:41.061854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:41.061883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:41.06193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:41.061961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:41.062048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.061 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\", \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:41.062066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.062: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:41.062072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.062: cmd: stdout: \"✔ Detecting persistent resources [1ms]\"\n"} -{"Time":"2022-12-07T09:15:41.062109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.062: cmd: stdout: \"⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:41.062184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.062: cmd: stdout: \"\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\"\n"} -{"Time":"2022-12-07T09:15:41.062195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.062: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:41.063137+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.063144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.063152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.063 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"655.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53e4548f-5efa-4ced-b9d0-0caf8b85108d\"}\n"} -{"Time":"2022-12-07T09:15:41.063158+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.063161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.063164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.063 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"636.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d867dd37-d91f-40fe-8e3f-8d5cf2b32d5f\"}\n"} -{"Time":"2022-12-07T09:15:41.069257+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.069264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.069282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:41.069289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.069333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.069342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.06937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.069397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:41.069427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:41.069664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.069701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.069 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:41.070158+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.070172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.070177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.070 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"499.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"565204c7-9635-4877-8268-8f0dad69ef6c\"}\n"} -{"Time":"2022-12-07T09:15:41.070796+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.070802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.070806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.070 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"510.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bdf4d133-9a3b-4601-87d8-300e6335e1df\"}\n"} -{"Time":"2022-12-07T09:15:41.075511+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.07552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.075525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.075 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"534.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"be740ce4-1684-46e7-b508-97c81a968e6d\"}\n"} -{"Time":"2022-12-07T09:15:41.077827+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.077836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.07784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.077 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"562.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f7a6b8e5-2b1b-42dc-b3e2-4dc98b233d2d\"}\n"} -{"Time":"2022-12-07T09:15:41.08732+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.08733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.087336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.087 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"565.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"93ed10cb-5405-4d16-85ac-08222b50e7cf\"}\n"} -{"Time":"2022-12-07T09:15:41.087345+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.087349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.087358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.087 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"560.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9d228795-e4e3-48bf-9145-7ec4c2304e97\"}\n"} -{"Time":"2022-12-07T09:15:41.09629+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.096302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.096308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.096 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"654.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cffd445f-db83-4873-800b-a8201bea7fb8\"}\n"} -{"Time":"2022-12-07T09:15:41.096317+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.096322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.096327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.096 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"667.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"423b87ca-08ee-4d81-95fe-919a8e1fc082\"}\n"} -{"Time":"2022-12-07T09:15:41.100595+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.100606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.100611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"628.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ec32e32-1506-4f4e-8ca9-d6fda499031d\"}\n"} -{"Time":"2022-12-07T09:15:41.102951+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.102962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.102967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.102 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"684.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cf71bd5b-ac57-40eb-bce6-8037483a1d5a\"}\n"} -{"Time":"2022-12-07T09:15:41.112091+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:41.112101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:41.112106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:41.112138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:41.112193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t(provisionerd-exciting_lumiere5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:41.11223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:41.112285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.112 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:41.112331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"07adc312-263e-453c-b09d-5ce49109ba0d\"}\n"} -{"Time":"2022-12-07T09:15:41.112347+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.112351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.112356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"662.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ddcfae1f-402d-4419-95a2-78cfe0ea694f\"}\n"} -{"Time":"2022-12-07T09:15:41.112557+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.112576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.112582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"766.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49c39581-3bc8-449c-bab1-5e15c1f87d2c\"}\n"} -{"Time":"2022-12-07T09:15:41.112637+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:41.112643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:41.112648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5216a993-b8ac-495a-a4de-bbdb760c6f0f/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"467.63525ms\", \"status_code\": 101, \"latency_ms\": 467, \"request_id\": \"f41cefa1-6f14-4dee-abcf-a5b803077862\"}\n"} -{"Time":"2022-12-07T09:15:41.114443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5216a993-b8ac-495a-a4de-bbdb760c6f0f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"892.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a33c3145-4c43-4cc7-bf66-ea531cb30cbc\"}\n"} -{"Time":"2022-12-07T09:15:41.114656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.114: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [102ms]\"\n"} -{"Time":"2022-12-07T09:15:41.11548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.115 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5216a993-b8ac-495a-a4de-bbdb760c6f0f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"665.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"52c4a8eb-67dd-4964-8845-490e9f7fbd44\"}\n"} -{"Time":"2022-12-07T09:15:41.116459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.116 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5216a993-b8ac-495a-a4de-bbdb760c6f0f/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"653.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53b720b5-aaea-4d4c-aba4-48501a0f0d2e\"}\n"} -{"Time":"2022-12-07T09:15:41.11738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.117 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5216a993-b8ac-495a-a4de-bbdb760c6f0f/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"639.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e4d8a6ad-c306-40ef-8930-bdd053a9c1e2\"}\n"} -{"Time":"2022-12-07T09:15:41.118284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.118 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5caa0ef9-f2ac-42c5-a777-663fb4c6525d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"636.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a7bb598f-3f1b-4e45-9486-b91d98273e82\"}\n"} -{"Time":"2022-12-07T09:15:41.119226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/parameters/import_job/8ba7f8d5-6723-487c-af8d-1940ef7206dc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"638.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9d657ef1-cd0f-4f4d-9c3b-acd3e7994077\"}\n"} -{"Time":"2022-12-07T09:15:41.119828+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.119836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.119841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:41.119866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.119904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.119942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:41.119979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:41.120056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:41.120065+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:41.120068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:41.120072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.119 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templateversions/5216a993-b8ac-495a-a4de-bbdb760c6f0f/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"556.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"08b3ddff-7fb3-407e-ac69-33257022aaad\"}\n"} -{"Time":"2022-12-07T09:15:41.12023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.120: cmd: stdout: \"┌──────────┐\"\n"} -{"Time":"2022-12-07T09:15:41.120243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.120: cmd: stdout: \"│ Template │\"\n"} -{"Time":"2022-12-07T09:15:41.120247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.120: cmd: stdout: \"│ Preview │\"\n"} -{"Time":"2022-12-07T09:15:41.120253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.120: cmd: stdout: \"├──────────┤\"\n"} -{"Time":"2022-12-07T09:15:41.12026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.120: cmd: stdout: \"│ RESOURCE │\"\n"} -{"Time":"2022-12-07T09:15:41.120264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.120: cmd: stdout: \"├──────────┤\"\n"} -{"Time":"2022-12-07T09:15:41.120269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.120: cmd: stdout: \"└──────────┘\"\n"} -{"Time":"2022-12-07T09:15:41.120274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.120278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.120282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"577.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"66093fc9-d7a1-445e-9625-71dbae1c055d\"}\n"} -{"Time":"2022-12-07T09:15:41.120843+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.120853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.120858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"613.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c6b1ed47-f20e-49e6-8b87-ee571b79ac09\"}\n"} -{"Time":"2022-12-07T09:15:41.120962+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK"} -{"Time":"2022-12-07T09:15:41.12097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":"=== CONT TestTemplatePush/OK\n"} -{"Time":"2022-12-07T09:15:41.120974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templates/4451bfbe-e825-48c4-8d37-00ffdd20a022/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f9f9ebe4-bef3-4e0d-b4d2-721a305279f4\"}\n"} -{"Time":"2022-12-07T09:15:41.121125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:103: 2022-12-07 08:15:41.121: cmd: stdout: \"Updated version at Dec 7 09:15:41!\"\n"} -{"Time":"2022-12-07T09:15:41.122603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.122 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57487\", \"path\": \"/api/v2/templates/4451bfbe-e825-48c4-8d37-00ffdd20a022/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"778.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a88243a3-0799-43ac-9aee-a49c59aea7e5\"}\n"} -{"Time":"2022-12-07T09:15:41.122839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" ptytest.go:80: 2022-12-07 08:15:41.122: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:41.122911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" t.go:81: 2022-12-07 08:15:41.122 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:41.124572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:41.124622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.124629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.126457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.126467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.126472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.126 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"773.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"21cac0ad-5228-4871-b0a7-d06b6154f4ff\"}\n"} -{"Time":"2022-12-07T09:15:41.128577+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.128589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.128593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.128 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"768.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4277e74f-944f-4a5b-afae-546f5765c26b\"}\n"} -{"Time":"2022-12-07T09:15:41.128797+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.128806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.128811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.128 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"174.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f6239013-20b3-4720-a824-1e7a0a48b503\"}\n"} -{"Time":"2022-12-07T09:15:41.129113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.129 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"61.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"412d97c3-ffb3-409d-abb3-b9ff14b3bec5\"}\n"} -{"Time":"2022-12-07T09:15:41.130161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.130 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"764.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5be0e1b2-8185-41df-8639-8415dbd842f0\"}\n"} -{"Time":"2022-12-07T09:15:41.131474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.131 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/organizations/a1f786ab-66d9-461e-b527-429d017e9dee/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.060666ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"4105f70f-bc46-4ca7-9de4-f838167e7316\"}\n"} -{"Time":"2022-12-07T09:15:41.131611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:542: waiting for template version job 5b8982e5-1a44-43c8-81ef-0c4d3762103c\n"} -{"Time":"2022-12-07T09:15:41.13806+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.138071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.138077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.137 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"754.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f58b66d1-a5ca-4f42-b176-a4eea53e0daf\"}\n"} -{"Time":"2022-12-07T09:15:41.13811+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.138115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.13812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.138 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"745.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"116006a0-3c76-477b-bf0a-762d5815dc3e\"}\n"} -{"Time":"2022-12-07T09:15:41.146189+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.146199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.146204+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.146 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:41.146991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.146999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.147003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.146 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"710.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d80ded7d-0ec3-4026-90c1-1772fa5a64a7\"}\n"} -{"Time":"2022-12-07T09:15:41.147094+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.1471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.147105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.147 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"801.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1681f145-95f3-4c51-8238-0a7bad958dc6\"}\n"} -{"Time":"2022-12-07T09:15:41.151218+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.151229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.151233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"692.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"68f166c4-ac18-46a7-b1ad-665bf17406f1\"}\n"} -{"Time":"2022-12-07T09:15:41.152715+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.152726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.15273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.152 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"557.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8cafdff2-9486-4b4e-bf8e-8674f424b641\"}\n"} -{"Time":"2022-12-07T09:15:41.157792+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.157799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.157803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.157 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"502.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"64fcb494-851e-4a81-8959-6ab57bcc8917\"}\n"} -{"Time":"2022-12-07T09:15:41.161634+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.161643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.161648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.161 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"546.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"594874a7-994a-4ce3-a1d7-117f2d8b297e\"}\n"} -{"Time":"2022-12-07T09:15:41.161808+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.161815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.16182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.161 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"548µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d5480ad-b97c-4d0c-9baf-fd2368a8eecd\"}\n"} -{"Time":"2022-12-07T09:15:41.170656+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.170665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.170671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.170 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:41.170697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.170 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:41.17074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.170 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:41.170819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.170 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"6d16f784-732b-45b6-b830-5ef7569dd192\"}\n"} -{"Time":"2022-12-07T09:15:41.171384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.171 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"684.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a5c83c6-53ca-49cb-ba4e-51bf75657877\"}\n"} -{"Time":"2022-12-07T09:15:41.171699+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.171711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.171717+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.171 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"858.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b84de1f0-738d-4f8f-a123-b6254504b855\"}\n"} -{"Time":"2022-12-07T09:15:41.172457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.172471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.172477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.172 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/organizations/85f6ef2f-c671-401f-b461-49639bdf4447/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"683µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c035ae4b-7d49-4f19-847c-ba5a6729df68\"}\n"} -{"Time":"2022-12-07T09:15:41.174362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.174 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/organizations/85f6ef2f-c671-401f-b461-49639bdf4447/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.4995ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"ee02674f-bf85-4948-aa05-b7c68b5ffc30\"}\n"} -{"Time":"2022-12-07T09:15:41.174615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" configssh_test.go:545: waiting for workspace build job f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\n"} -{"Time":"2022-12-07T09:15:41.175234+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.175243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.175248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.175 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"624.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b685bff8-39cf-433c-b388-f9ec5dc492e4\"}\n"} -{"Time":"2022-12-07T09:15:41.17795+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.177965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.177971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.177 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"658.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f94d2522-c6e2-4088-b06a-8e5f35f2e3b1\"}\n"} -{"Time":"2022-12-07T09:15:41.182916+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.18293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.182935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.182 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"621.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5fac784d-b26a-4cd3-8848-165d721214cd\"}\n"} -{"Time":"2022-12-07T09:15:41.186727+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.186745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.18675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.186 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"652.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e8748ddd-a8a3-4171-9fd5-419f9ece5385\"}\n"} -{"Time":"2022-12-07T09:15:41.186997+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.187013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.187019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.186 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"693.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"54faad35-2b2b-4ed2-8ec2-24b6cefd95a0\"}\n"} -{"Time":"2022-12-07T09:15:41.195723+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.195733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.195748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.195 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"667.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d454ff96-e0b2-4a97-b737-d51a16b141d9\"}\n"} -{"Time":"2022-12-07T09:15:41.196412+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.196421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.196426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.196565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.196663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:41.196762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_when_using_--yes2569395571/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.196832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_when_using_--yes2569395571/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.196861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_when_using_--yes2569395571/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.196901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.19705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.196 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:41.201594+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.201643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.201652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.201 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"999.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8217a9b1-2421-4c0a-81f7-0c639101c697\"}\n"} -{"Time":"2022-12-07T09:15:41.201662+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.201667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.201681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.201 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.109208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c24257bf-3f10-44d5-9e1f-bb98d7be4308\"}\n"} -{"Time":"2022-12-07T09:15:41.204642+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.204718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.204726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.204 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.120209ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f5ace85e-e8b4-4654-a237-64c1cd4dc9ec\"}\n"} -{"Time":"2022-12-07T09:15:41.208023+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.208055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.208126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"911.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"64887543-5a25-40de-9976-dae04f5e2939\"}\n"} -{"Time":"2022-12-07T09:15:41.212301+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.212319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.212326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.212 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.1045ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9950e9cc-d6c5-46ea-86e9-23df76d7d1b0\"}\n"} -{"Time":"2022-12-07T09:15:41.212343+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.212348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.212354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.212 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"925.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a4098ab9-f5fd-4fba-989b-de2a0db08a50\"}\n"} -{"Time":"2022-12-07T09:15:41.224408+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.224417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.22442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.224 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"519.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8227f4ab-b28a-4749-a2f7-b81c75d76a1b\"}\n"} -{"Time":"2022-12-07T09:15:41.225023+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.225031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.225034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.224 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"444µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dce0fe10-e795-4646-8fa1-081aa1e77aa7\"}\n"} -{"Time":"2022-12-07T09:15:41.225302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.225313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.225318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.225 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"509.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ce7f27aa-de2c-4c3e-8336-c962daa792b4\"}\n"} -{"Time":"2022-12-07T09:15:41.227825+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.227838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.227844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.227 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"599.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e27e3524-35e5-4611-a93e-d97a0432fb8b\"}\n"} -{"Time":"2022-12-07T09:15:41.227851+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.227856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.227861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.227 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:41.233106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.233 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"780µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c173d173-107e-49fe-ba29-99509f039146\"}\n"} -{"Time":"2022-12-07T09:15:41.238977+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.239043+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.239051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.237 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.326583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"7ae4530f-ec58-44eb-9e15-6b6572fb8e4f\"}\n"} -{"Time":"2022-12-07T09:15:41.239062+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.239068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.239074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.238 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.697042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"90341ffc-e32d-4a4c-b99f-c6531005f5e0\"}\n"} -{"Time":"2022-12-07T09:15:41.245291+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.245406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.245416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.245 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"35.417µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:41.246687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.246696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.246724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.246 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.099084ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"582f2bfe-aef0-4f6f-997b-9bf67ad158d0\"}\n"} -{"Time":"2022-12-07T09:15:41.247336+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.247346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.247352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.247 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.247763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.247 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.251112+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.251156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.251164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.250 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.07125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d23f1f96-b171-4c86-9a04-abe5630128f0\"}\n"} -{"Time":"2022-12-07T09:15:41.251175+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.251187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.251193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.250 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.029959ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2f83d9a0-a573-4b4c-8961-e7ed2a1601f1\"}\n"} -{"Time":"2022-12-07T09:15:41.253331+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.25335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.253358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.253 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.050708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"5ba5ef0a-f3c4-43ca-b686-86e5c9b48507\"}\n"} -{"Time":"2022-12-07T09:15:41.258875+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.258897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.258906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.258 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.497416ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e2337e3b-90a6-4335-87c4-3ded56a4a904\"}\n"} -{"Time":"2022-12-07T09:15:41.26256+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.26258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.262589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.291417ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f17af367-ac1e-461d-945e-459723715376\"}\n"} -{"Time":"2022-12-07T09:15:41.262601+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.262607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.262614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.14575ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ac71f8b0-3fbf-447b-aa83-93faae434598\"}\n"} -{"Time":"2022-12-07T09:15:41.27161+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.271664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.271682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.271 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.323459ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b4ab3122-b70f-43db-aaf6-34134982937b\"}\n"} -{"Time":"2022-12-07T09:15:41.276803+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.276835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.276847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.276 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.505125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0a32c7cb-1699-40f8-9fd1-25a23c47fc53\"}\n"} -{"Time":"2022-12-07T09:15:41.277018+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.277029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.277039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.276 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.51575ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3a668ada-838b-4c93-9c16-f39029da76aa\"}\n"} -{"Time":"2022-12-07T09:15:41.279432+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.279454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.279463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.278 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.279472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.278 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.27948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.278 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:41.279489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.278 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.279499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.278 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.279508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.278 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.279516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.278 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.279525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.279532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.279538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.279 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.535375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a929bfef-6284-401e-977a-25fcefbf4872\"}\n"} -{"Time":"2022-12-07T09:15:41.279547+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.279552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.279558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.279 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:41.283455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.283 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.221875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"5b41f683-5436-47de-9831-3c0bf566b4c2\"}\n"} -{"Time":"2022-12-07T09:15:41.287416+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.287435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.287444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.287 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.183958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a6af2458-5899-4d51-a043-2cff1cc0a7cc\"}\n"} -{"Time":"2022-12-07T09:15:41.287817+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.287828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.287836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.287 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.39425ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b0f52e51-3bd6-443c-9bdd-296987b28400\"}\n"} -{"Time":"2022-12-07T09:15:41.296888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.296961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.296974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.296 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.691ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"afe4e097-204e-4686-bc79-1a8970bb2922\"}\n"} -{"Time":"2022-12-07T09:15:41.297836+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.297852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.297861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.297 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.298046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.297 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.298063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.297 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.298077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.297 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.298268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.298 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.298284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.298 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.298441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.298 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.298728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.298 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.298846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.298 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.301275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.300 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.137834ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9e995898-504b-48a3-ab1b-22d37dc0148f\"}\n"} -{"Time":"2022-12-07T09:15:41.301302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.301309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.301317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.301 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.327583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"fcd25fc3-d9f1-409a-a33d-c8c0f40c899f\"}\n"} -{"Time":"2022-12-07T09:15:41.303527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.303545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.303553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.303 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.21725ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"aa215505-05e2-447f-8181-28a74a65764b\"}\n"} -{"Time":"2022-12-07T09:15:41.309598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.309631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.309642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.308 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.471542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"8960240e-46b0-4285-81d9-5be06257e856\"}\n"} -{"Time":"2022-12-07T09:15:41.312643+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.312665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.312693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.312 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.353584ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a3570e76-a652-4522-b398-9bc39c7d25dd\"}\n"} -{"Time":"2022-12-07T09:15:41.312706+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.312711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.312718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.312 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.2305ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"9be329cf-f926-4bc8-933d-3f33a74a36b6\"}\n"} -{"Time":"2022-12-07T09:15:41.316069+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.316085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.316092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.315 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.316327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.316 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.316471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.316 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:41.316591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.316 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.316679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.316 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.316769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.316 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.316855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.316 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"workspace_name\": \"great-rosalind5\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:41.317141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.317 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.317246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.317 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.322249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.322 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.749917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f7197024-c7c1-47d8-820c-3d6db954b21d\"}\n"} -{"Time":"2022-12-07T09:15:41.326762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.326788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.3268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.326 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.574459ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3c41e940-c481-4de4-9382-90b1c6201099\"}\n"} -{"Time":"2022-12-07T09:15:41.326815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.326823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.326832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.326 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.476291ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"df76823e-e9ef-498f-8d0e-c1abf36edbc5\"}\n"} -{"Time":"2022-12-07T09:15:41.326853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.326861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.32687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.326 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"25.125µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:41.328946+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.328962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.328971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.328 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.594958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"44171997-e8fb-4363-bdf0-7080f5d29961\"}\n"} -{"Time":"2022-12-07T09:15:41.329524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.329541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.329553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.329 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.329948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.329 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.335142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.334 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.835583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"267ebebf-3c3a-4d9a-8093-8ebcab937f1b\"}\n"} -{"Time":"2022-12-07T09:15:41.338514+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.338572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.338585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.665708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0e0bb170-db06-451b-9d3c-f9979378576f\"}\n"} -{"Time":"2022-12-07T09:15:41.338606+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.338615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.338624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.338 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.674584ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"dc24c20d-62c7-433c-a022-c7c2ac182fa7\"}\n"} -{"Time":"2022-12-07T09:15:41.347503+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.347537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.347548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.347 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.711958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f8d3c8a3-7f69-44ab-b34b-43b37021fab1\"}\n"} -{"Time":"2022-12-07T09:15:41.349268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.349285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.349298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.349 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.349542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.349 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.349559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.349 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.349571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.349 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.349819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.349 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.349838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.349 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.352043+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.352062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.352073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.351 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.607208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"41ae030e-fe21-4824-90a5-3a707cd45b5e\"}\n"} -{"Time":"2022-12-07T09:15:41.352087+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.352094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.352103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.351 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.510458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"eae7fd28-8243-4621-b7f3-9a6e6bc649d4\"}\n"} -{"Time":"2022-12-07T09:15:41.354187+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.354211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.354223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.354 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.544667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f52d0e4b-113c-4c6a-8f3f-4ca6a6b0aded\"}\n"} -{"Time":"2022-12-07T09:15:41.358677+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.358732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.358745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.358 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.366042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f855cdc5-e077-41f5-a2c9-a8e82785d251\"}\n"} -{"Time":"2022-12-07T09:15:41.377367+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.377385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.377395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.373 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.272125ms\", \"status_code\": 200, \"latency_ms\": 12, \"request_id\": \"b50df62b-a0be-4494-9d1b-4b6e16baeaaf\"}\n"} -{"Time":"2022-12-07T09:15:41.3774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.377403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.377406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.374 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.35375ms\", \"status_code\": 200, \"latency_ms\": 13, \"request_id\": \"342f77b0-8cec-4c14-a92d-edc2da9578b9\"}\n"} -{"Time":"2022-12-07T09:15:41.37741+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.377412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.377446+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.377 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.483875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"88855f9f-52c0-45fe-9196-1a8d8f657c89\"}\n"} -{"Time":"2022-12-07T09:15:41.37782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.377824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.377827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.377 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.37783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.377 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.377834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.377 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.377838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.377 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.378687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.378737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.378745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"966.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"86dc2ed2-bf9f-4475-8dce-b2853ac39f3a\"}\n"} -{"Time":"2022-12-07T09:15:41.378761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.378765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.378774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"964.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"79cdc8a8-87e1-4609-809e-b780d1ba8857\"}\n"} -{"Time":"2022-12-07T09:15:41.379104+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.379117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.379121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.16925ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"65204215-ca06-4097-91ab-da2d449f967f\"}\n"} -{"Time":"2022-12-07T09:15:41.385675+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.385692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.385697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.385 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.385705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.385 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.385804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.385 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.38582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.385 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.385828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.385 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.385848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.385 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.385882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.385 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.386208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.386 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.386257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.386 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.386452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.038542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"6bfd1005-9164-48c2-9210-0d082c59bc88\"}\n"} -{"Time":"2022-12-07T09:15:41.386582+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.386601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.386606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"652.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5e9fd89d-4c2d-44cc-bc2b-338d029ad281\"}\n"} -{"Time":"2022-12-07T09:15:41.38705+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.38706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.387065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.386 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"790.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da36dfd7-21cb-44d0-8c6d-7d86e972a58b\"}\n"} -{"Time":"2022-12-07T09:15:41.3964+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.396418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.396425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.396 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"726.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"750d8f2d-d14c-4aa3-a760-aa896106b957\"}\n"} -{"Time":"2022-12-07T09:15:41.399965+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.399978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.399984+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.399 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.399993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.399 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.400055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.399 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.400153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.400 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"4acafcaa-018f-4b34-917e-19b97077f5a6\"}\n"} -{"Time":"2022-12-07T09:15:41.400701+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.400715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.400721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.400 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"770.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2135f7f8-1098-4cf7-8c46-6a139636408c\"}\n"} -{"Time":"2022-12-07T09:15:41.400795+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.400801+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.400807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.400 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"771.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"88ef15db-f798-4a54-bf5c-badc7ff5ffcc\"}\n"} -{"Time":"2022-12-07T09:15:41.401848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.401 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/organizations/b8d13b16-c151-4265-a1ed-fdc926eab0be/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"682.333µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"18d56443-f987-4415-9d4d-16ce46425845\"}\n"} -{"Time":"2022-12-07T09:15:41.40283+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.402841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.402846+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.402 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"755.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ed4db2d-c621-4dfa-8a23-7f8f1546f83b\"}\n"} -{"Time":"2022-12-07T09:15:41.403693+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.403704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.403709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.403 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/organizations/b8d13b16-c151-4265-a1ed-fdc926eab0be/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.442958ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"8201673c-2a01-4313-95f3-79220ddfb91d\"}\n"} -{"Time":"2022-12-07T09:15:41.403866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" configssh_test.go:545: waiting for workspace build job 9bc35b03-4974-4638-b688-b0604d5599e3\n"} -{"Time":"2022-12-07T09:15:41.407611+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.40762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.407624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.407 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"623.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c08079f-198b-4ae0-b756-53e308112378\"}\n"} -{"Time":"2022-12-07T09:15:41.409928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.409937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.409946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.409 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.410104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.410178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:41.410249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.410301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.410371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.410402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"workspace_name\": \"elastic-ptolemy8\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:41.41059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.410641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.410 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.411475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.411485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.411491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.411 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"715.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8b5ed74c-57c0-4cf5-b237-a19313064b6e\"}\n"} -{"Time":"2022-12-07T09:15:41.411961+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.411971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.411975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.411 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"687.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"15f166b0-4387-4bb3-9730-29636139fe5b\"}\n"} -{"Time":"2022-12-07T09:15:41.415456+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.415465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.41547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.415 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.415607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.415 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.415679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.415 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:41.415747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.415795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"size_bytes\": 119, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.415858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"size_bytes\": 119, \"path\": \"/tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.41589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"workspace_name\": \"gracious-mirzakhani8\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:41.416115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.416 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.416197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.416 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"071b1431-dae4-4cb7-8813-e8755d14cd3d\", \"name\": \"agent1\", \"Auth\": null}, {\"id\": \"ca9f2437-218b-4cb2-88d8-80a1345751b9\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.420135+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.420145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.420151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.420311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.42041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:41.420481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_when_prev_opts_flag_is_set1359041455/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.420556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_when_prev_opts_flag_is_set1359041455/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.420602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_when_prev_opts_flag_is_set1359041455/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.420711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"workspace_name\": \"practical-mendel4\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:41.420859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.420873+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.420882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.420888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.420 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"719.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b70f83e9-12a6-4da6-9591-9b8ac8ba9389\"}\n"} -{"Time":"2022-12-07T09:15:41.420904+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.420909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.420913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.420 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.425537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.425 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"663µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae1eeac1-8079-4243-a42e-09032cfac79b\"}\n"} -{"Time":"2022-12-07T09:15:41.427936+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.427946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.427951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.427 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"664.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eeb82124-e008-4bc0-a2a0-8f10d9ce5b6a\"}\n"} -{"Time":"2022-12-07T09:15:41.42809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.428101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.428107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.428 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.42828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.428 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.428321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.428 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.429879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.42989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.429895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"662.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cfb1406d-db06-4342-9544-fd551ab71453\"}\n"} -{"Time":"2022-12-07T09:15:41.432681+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.432692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.432697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.432 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f50b1b49-63f5-46dd-8e8d-eed23551cd4e\"}\n"} -{"Time":"2022-12-07T09:15:41.437272+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.437304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.437311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"853.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4fa1e1f0-b6a8-44bd-9404-6348e6b5444c\"}\n"} -{"Time":"2022-12-07T09:15:41.43776+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.437768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.437773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"853.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1293dcee-8e61-470d-a3f9-6122e021b919\"}\n"} -{"Time":"2022-12-07T09:15:41.43778+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.437783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.437792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.437797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.437804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.437809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.437813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.43782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.437 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.446595+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.446633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.446641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.446 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"963.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ca208512-e768-4d7c-b483-8c842cd895d5\"}\n"} -{"Time":"2022-12-07T09:15:41.451611+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.451632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.451639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.451 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"888.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1c8ff800-70c2-4f04-9eb6-70878878aa4c\"}\n"} -{"Time":"2022-12-07T09:15:41.453467+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.453484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.45349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.453 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"973.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"228a7133-3c30-4847-bf1b-ff45051900be\"}\n"} -{"Time":"2022-12-07T09:15:41.455045+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.455086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.455092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.454 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"727.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e4ff5833-f1cf-4e30-9197-3c7c22d97d6b\"}\n"} -{"Time":"2022-12-07T09:15:41.455823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.455831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.45584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.455 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.455979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.455 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.456067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.456 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:41.456146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.456 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.456206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.456 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.456266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.456 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.456326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.456 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"workspace_name\": \"modest-agnesi2\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:41.456434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.456 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.456521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.456 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.45839+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.458409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.458415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"890.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b95ea980-64d2-4279-b8a7-ef7d689fb4b4\"}\n"} -{"Time":"2022-12-07T09:15:41.46288+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.462902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.462908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.461 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"856.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1a95ce59-9415-4bc1-9b87-7e8b6a447823\"}\n"} -{"Time":"2022-12-07T09:15:41.464054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.46407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.464076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.463 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.4045ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ab7a9781-12ab-494c-ac0f-7645bbf85725\"}\n"} -{"Time":"2022-12-07T09:15:41.464083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.463 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.464089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.463 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.464094+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.463 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.4641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.463 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.466718+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.466729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.466735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.466 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.46683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.466 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.466838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.466 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.466956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.466 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.471455+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.471475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.471481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"989.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db9b0633-6149-4995-9892-591086b7cd51\"}\n"} -{"Time":"2022-12-07T09:15:41.471802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.471809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.471813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.471 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.471818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.471 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.471944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.471 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.471952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.471 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.476771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.476 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.126875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a5ba9bd8-56fe-4ae6-aaa4-dca9285f266f\"}\n"} -{"Time":"2022-12-07T09:15:41.479239+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.479272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.47928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.478 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.479288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.478 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.479295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.478 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.479301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.478 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.479307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.479 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.48053+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.480542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.480555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.115292ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a230cc19-48a2-4541-8708-009c44878933\"}\n"} -{"Time":"2022-12-07T09:15:41.480564+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.480569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.480574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.480 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"908.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0e1d7339-4c5d-45f9-95ae-40fd9de9c214\"}\n"} -{"Time":"2022-12-07T09:15:41.482985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.48301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.483018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.482 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"945.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0e2001ca-1a17-4003-a7f9-494f6219ee02\"}\n"} -{"Time":"2022-12-07T09:15:41.487239+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.487259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.487266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.486 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"980.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"169f6ba2-4b70-48fb-a2a6-6eda8193e2a9\"}\n"} -{"Time":"2022-12-07T09:15:41.487423+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.487432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.487439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.487 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.07475ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"56f2c28d-ed96-44d6-a01d-269d47b331f8\"}\n"} -{"Time":"2022-12-07T09:15:41.488015+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.488023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.488029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.487 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.488134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.488 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.488174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.488 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.488182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.488 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"09fc9a33-d401-4014-aeb4-e48c97db5564\"}\n"} -{"Time":"2022-12-07T09:15:41.497023+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.497057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.497064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.496 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.155875ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bf772da5-9d41-4417-8fc6-d2a1c891fc59\"}\n"} -{"Time":"2022-12-07T09:15:41.501809+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.501843+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.501851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.501 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.536458ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"7eea2cde-307d-4256-8088-afa8294b9aa8\"}\n"} -{"Time":"2022-12-07T09:15:41.503586+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.503627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.503636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.503 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.344708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"13886953-8bb0-4894-8ad2-3c67d718f0a9\"}\n"} -{"Time":"2022-12-07T09:15:41.505201+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.505214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.505229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.505 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.055958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"44ae8170-08e1-42c8-a824-ef112f673ddb\"}\n"} -{"Time":"2022-12-07T09:15:41.507235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.507246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.507253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.506 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.507261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.506 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.507267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.507 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.507274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.507 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.508215+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.508227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.508234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.508 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.274083ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c394651e-ce18-4fd3-ae68-711817e0aaa9\"}\n"} -{"Time":"2022-12-07T09:15:41.509814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.509 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/organizations/a1f786ab-66d9-461e-b527-429d017e9dee/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.032292ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"a3eb3109-7255-4c2c-8d30-037a1af87385\"}\n"} -{"Time":"2022-12-07T09:15:41.51295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.512979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.512986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.512 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"58412c2f-4949-4b3c-b857-a4aa734d9ec6\"}\n"} -{"Time":"2022-12-07T09:15:41.512994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.512998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.513004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.512 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/organizations/a1f786ab-66d9-461e-b527-429d017e9dee/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.210042ms\", \"status_code\": 201, \"latency_ms\": 2, \"request_id\": \"b2a10d5f-df2f-4b0a-b23c-ccf0812f297a\"}\n"} -{"Time":"2022-12-07T09:15:41.513588+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.513595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.513603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.513 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"874µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"728baa2c-38dc-49ea-a20d-e611a77cf41b\"}\n"} -{"Time":"2022-12-07T09:15:41.51361+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.513613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.513618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:545: waiting for workspace build job 4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\n"} -{"Time":"2022-12-07T09:15:41.514475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.514506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.514514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.514 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.514637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.514 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.514646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.514 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.517407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.517417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.517424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.517 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.517713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.517 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.517784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.517 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"resource_count\": 1, \"resources\": [{\"name\": \"foo\", \"type\": \"aws_instance\", \"agents\": [{\"id\": \"071b1431-dae4-4cb7-8813-e8755d14cd3d\", \"name\": \"agent1\", \"Auth\": null}, {\"id\": \"ca9f2437-218b-4cb2-88d8-80a1345751b9\", \"name\": \"agent2\", \"Auth\": null}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.521309+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.521341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.521349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.521 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.156917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4ad5559f-b744-43dc-bd86-7492c792bc9b\"}\n"} -{"Time":"2022-12-07T09:15:41.522416+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.522452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.522461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.522 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.522613+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.522 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.522679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.522 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.526592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.526 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.255333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e449e05f-1922-43d2-903f-b49bce1a41bf\"}\n"} -{"Time":"2022-12-07T09:15:41.5282+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.528232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.52824+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.528 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.044083ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0da6f661-db6b-4213-adf0-dbdbb332329e\"}\n"} -{"Time":"2022-12-07T09:15:41.529687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.5297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.529708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.529 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.529715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.529 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.529722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.529 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.529728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.529 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.529734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.529 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.530346+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.530356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.530363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.530 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.040958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bbc92bfa-7eef-4a47-b535-71ee166d959c\"}\n"} -{"Time":"2022-12-07T09:15:41.538476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.538512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.538521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.142334ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1a71415d-7675-4f27-a7fe-3ffdc29d4562\"}\n"} -{"Time":"2022-12-07T09:15:41.53853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.538536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.538544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.142708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"26814ccd-dd5c-4f6e-b007-e47f451b112a\"}\n"} -{"Time":"2022-12-07T09:15:41.540014+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.540105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.540113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.539 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.093208ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"18611c54-2e62-4fbb-8231-b915c98e45b9\"}\n"} -{"Time":"2022-12-07T09:15:41.546655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.546695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.546704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.546 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.25275ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"02f07068-b9e0-4444-a6b7-8ce47745f2de\"}\n"} -{"Time":"2022-12-07T09:15:41.552358+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.552395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.552403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.551 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.287959ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d1cfa219-2abb-4def-b3dd-eb7c1fbeb693\"}\n"} -{"Time":"2022-12-07T09:15:41.553496+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.553507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.553514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.553 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.273583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"8a5474f7-b8ad-44c8-af31-548b98db16d4\"}\n"} -{"Time":"2022-12-07T09:15:41.55557+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.555589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.555597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.555 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.228667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"982918f6-e989-43ed-be78-920788fcae43\"}\n"} -{"Time":"2022-12-07T09:15:41.557644+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.557665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.557673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.557 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.557974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.557 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.558018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.557 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.563314+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.563344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.563354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.562 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.549291ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"8fab9aaa-fafe-4f10-abc8-8ab6f4df62e6\"}\n"} -{"Time":"2022-12-07T09:15:41.564256+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.564271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.564279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.563 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.306584ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"f198461b-f8ff-4fec-9ae1-46675e9b596c\"}\n"} -{"Time":"2022-12-07T09:15:41.566558+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.566583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.5666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.566 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.566648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.566 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.566656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.566 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.566661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.566 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.56667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.566 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.567679+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.567689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.567696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.567 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.256ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c0573e48-37c6-45b9-ac7b-49884e03b372\"}\n"} -{"Time":"2022-12-07T09:15:41.568446+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.568456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.568463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.568 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.56847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.568 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.568482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.568 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.568674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.568 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.568685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.568 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.571622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.571648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.571655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.571 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.366833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1d9ba527-de85-4e76-8824-18f029eb1140\"}\n"} -{"Time":"2022-12-07T09:15:41.572986+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.573004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.57301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.572 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.573129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.572 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.573147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.573 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.573156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.573 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.573297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.573 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.576353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.576 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.084167ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ade91de1-5a08-4bf4-82f6-7d23556014a8\"}\n"} -{"Time":"2022-12-07T09:15:41.578163+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.578177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.578183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.578 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"968.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6ea3ddb1-881e-4bea-8ba3-f1b394693e2b\"}\n"} -{"Time":"2022-12-07T09:15:41.580211+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.580235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.580241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.579 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.580248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.579 [DEBUG]\t(provisionerd-eager_hawking0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.58028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.580 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"428e3b6c-dcce-4116-a14a-edb21a69130b\"}\n"} -{"Time":"2022-12-07T09:15:41.580287+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.580292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.580298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.580 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"942.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"528c2c46-cea7-4b02-9670-598f51a69ade\"}\n"} -{"Time":"2022-12-07T09:15:41.588955+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.588988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.588996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.588 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.528583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b3df0608-60c5-4d9e-942e-db3bdc85c1ca\"}\n"} -{"Time":"2022-12-07T09:15:41.589009+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.589015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.58902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.588 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.448084ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"6b580b4e-730e-44a7-beac-a65ed49e7309\"}\n"} -{"Time":"2022-12-07T09:15:41.590514+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.590544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.590553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.089584ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"209b5e49-e4c9-4b8b-b190-56b9b1faf0c3\"}\n"} -{"Time":"2022-12-07T09:15:41.596772+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.596804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.596812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.596 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspacebuilds/e3650b38-1bf8-4754-8bc4-4e9e40934f45\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.341542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0e4993cf-dec8-433f-80ec-ac6454027ce4\"}\n"} -{"Time":"2022-12-07T09:15:41.598459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/003/.ssh/config\n"} -{"Time":"2022-12-07T09:15:41.598478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" configssh_test.go:551: Wrote 254\n"} -{"Time":"2022-12-07T09:15:41.606151+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.606193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.606202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.601 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.305292ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e65ef0ee-8238-41d7-a442-d3a79cd37bd6\"}\n"} -{"Time":"2022-12-07T09:15:41.606268+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.606291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.606298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.604 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.975083ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1a211727-2a04-4559-9490-06e4d71606ad\"}\n"} -{"Time":"2022-12-07T09:15:41.606973+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.606987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.606992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.606 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.066791ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"455e1174-8893-40a3-8d73-ff0ecb3709ee\"}\n"} -{"Time":"2022-12-07T09:15:41.607992+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.608008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.608033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.607 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"58.792µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"ee32e8c5-3d8a-4ff5-a698-2d42731421d5\"}\n"} -{"Time":"2022-12-07T09:15:41.608371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.608 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"38.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ff122d5-987c-4f2b-bb6b-4074a6292d49\"}\n"} -{"Time":"2022-12-07T09:15:41.608392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.608399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.608406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.608 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.608438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.608 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.608488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.608 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.608513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.608 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.608614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.608 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.61178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.611 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"776.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"090476a4-64a2-415d-9af7-2cd30d73fd76\"}\n"} -{"Time":"2022-12-07T09:15:41.612132+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.612154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.612161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.612 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"781.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9beb1223-fcab-4e0f-95fb-902abae32391\"}\n"} -{"Time":"2022-12-07T09:15:41.614593+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.614606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.614611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.614 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"612.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"63364146-7122-4306-9cf4-8f2f14c54aed\"}\n"} -{"Time":"2022-12-07T09:15:41.616879+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.61689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.616894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.616 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.616917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.616 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.616976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.616 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.616997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.616 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.617142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.617 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.61906+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.619071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.619076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.618 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.619083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.619 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.619115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.619 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.619164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.619 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.619257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.619 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.622165+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.622174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.62218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.622 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.279042ms\", \"status_code\": 200, \"latency_ms\": 13, \"request_id\": \"18675c15-8867-489a-a7d8-6f021a708816\"}\n"} -{"Time":"2022-12-07T09:15:41.623146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.623 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57528\", \"path\": \"/api/v2/templateversions/45621f32-2499-43da-9330-79a358eb2201/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"567.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4e9d321-8e40-41f4-a9fd-a58fcfe4a79b\"}\n"} -{"Time":"2022-12-07T09:15:41.623358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"Dry run, the following changes would be made to your SSH configuration:\"\n"} -{"Time":"2022-12-07T09:15:41.623375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.623379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \" * Use new SSH options\"\n"} -{"Time":"2022-12-07T09:15:41.623388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:41.623394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.623464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"--- /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:41.623475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.623478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.623482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.623 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.623488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.623494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.623498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"+++ /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_overwrite_config_when_using_--dry-run1266429432/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:41.623507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"@@ -4,4 +4,7 @@\"\n"} -{"Time":"2022-12-07T09:15:41.623512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \" # You should not hand-edit this section unless you are removing it, all\"\n"} -{"Time":"2022-12-07T09:15:41.623516+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.62352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.623524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.623 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.623536+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.62354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.623554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \" # changes will be lost when running \\\"coder config-ssh\\\".\"\n"} -{"Time":"2022-12-07T09:15:41.623561+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.623565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.623569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.623 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.623573+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.623577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.623584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \" #\"\n"} -{"Time":"2022-12-07T09:15:41.623589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"+# Last config-ssh options:\"\n"} -{"Time":"2022-12-07T09:15:41.623594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"+# :ssh-option=ForwardAgent=yes\"\n"} -{"Time":"2022-12-07T09:15:41.623598+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \"+#\"\n"} -{"Time":"2022-12-07T09:15:41.623606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:103: 2022-12-07 08:15:41.623: cmd: stdout: \" # ------------END-CODER------------\"\n"} -{"Time":"2022-12-07T09:15:41.623689+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.623697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.623701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.623 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.623732+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.623 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.623762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run"} -{"Time":"2022-12-07T09:15:41.623765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run\n"} -{"Time":"2022-12-07T09:15:41.62377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" ptytest.go:80: 2022-12-07 08:15:41.623: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:41.62386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" t.go:81: 2022-12-07 08:15:41.623 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:41.625735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:41.625813+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.625819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.627753+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.627764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.627768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.627 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"816.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5bca0dda-2c98-4666-9b6a-f98f5d9e7976\"}\n"} -{"Time":"2022-12-07T09:15:41.629526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.629544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.629549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.629 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"717.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"462818b6-8627-4822-8908-41c303649754\"}\n"} -{"Time":"2022-12-07T09:15:41.63014+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.630152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.630173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.630 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"195.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"571449f6-3f70-4d65-beef-f7fbcc7e3350\"}\n"} -{"Time":"2022-12-07T09:15:41.630508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.630 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"73.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ff3d2606-de35-493d-aa26-c2704d7568f4\"}\n"} -{"Time":"2022-12-07T09:15:41.630813+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.630822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.630827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.630 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"752.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"54b4fada-b819-4a2b-b539-8d52387ae265\"}\n"} -{"Time":"2022-12-07T09:15:41.631537+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.631548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.631553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.631 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"711.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8a391047-56d7-4504-b78a-d43ac4801fc0\"}\n"} -{"Time":"2022-12-07T09:15:41.632715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/organizations/25ab81a8-d905-42b4-9125-90b61229bd9b/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"901.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"454c2174-0670-43b8-b912-933f288bec59\"}\n"} -{"Time":"2022-12-07T09:15:41.632852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" configssh_test.go:542: waiting for template version job 419df21f-d7ea-451b-87a0-38b0a4ee58a5\n"} -{"Time":"2022-12-07T09:15:41.641769+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.641779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.641783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.641 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"903.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"67189318-8c23-4e09-8caf-f92f8f72854d\"}\n"} -{"Time":"2022-12-07T09:15:41.641792+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.641795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.641799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.641 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"854.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e452e834-88ae-4fd2-a315-a60d09d77f7a\"}\n"} -{"Time":"2022-12-07T09:15:41.641808+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.641811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.641815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.641 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"943.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7c5deb0f-f526-44bc-8652-f3651483e78c\"}\n"} -{"Time":"2022-12-07T09:15:41.651609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.651633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.651638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.651 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"576.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e71f226-04d0-4064-adf6-cda4c43adb30\"}\n"} -{"Time":"2022-12-07T09:15:41.652622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.652632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.652637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.652 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"501.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"10bbaf37-e112-4b24-bc92-a00d4076ef94\"}\n"} -{"Time":"2022-12-07T09:15:41.654752+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.654766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.654787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.654 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"502.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1064f08e-55b5-41aa-b762-0dc2c724cb79\"}\n"} -{"Time":"2022-12-07T09:15:41.658864+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.658872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.658876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.658 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.658886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.658 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.658924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.658 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.658974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.658 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.659103+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.659118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.659123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.659 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"594.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f6f6372d-ea02-4b89-815e-1b25dc0ecf75\"}\n"} -{"Time":"2022-12-07T09:15:41.659131+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.659135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.659139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.659 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.661543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"680.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"713828b6-07a5-404b-bc02-62dff6d09a85\"}\n"} -{"Time":"2022-12-07T09:15:41.661948+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.661959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.661963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.661 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"608.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cacfe4b0-73fd-43db-9009-28c417874257\"}\n"} -{"Time":"2022-12-07T09:15:41.664561+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.66457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.664575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.664 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"583.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b66e5a82-386f-4abb-b482-ec412b6fd829\"}\n"} -{"Time":"2022-12-07T09:15:41.667475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.667486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.667492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.667 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.66756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.667 [DEBUG]\t(provisionerd-stupefied_liskov4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.667625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.667 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"16aa231b-4941-4baa-a50c-cb2b969a201b\"}\n"} -{"Time":"2022-12-07T09:15:41.669692+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.669715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.669721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.669 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.669754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.669 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:41.669829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.669 [DEBUG]\t(provisionerd-reverent_mcnulty3)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.669906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.669 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"4bfca867-2fa4-4af0-8639-21785a1d4ab3\"}\n"} -{"Time":"2022-12-07T09:15:41.674336+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.674347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.674362+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.674 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.674391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.674 [DEBUG]\t(provisionerd-infallible_curran1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.674473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.674 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"fa29c5b1-6648-41b5-a8d8-63f7e87650f5\"}\n"} -{"Time":"2022-12-07T09:15:41.675636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.675 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspacebuilds/f1a730ce-1ccb-4d3f-83f3-9b72ebd2ff5c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"620.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4d513641-0fe2-4a8c-ab29-6c0fbbd671bb\"}\n"} -{"Time":"2022-12-07T09:15:41.676209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_when_prev_opts_flag_is_set1359041455/003/.ssh/config\n"} -{"Time":"2022-12-07T09:15:41.676412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" configssh_test.go:551: Wrote 314\n"} -{"Time":"2022-12-07T09:15:41.677983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.677992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.677996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.677 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspacebuilds/0d87a2d5-f882-41cb-b0f5-f9f8d4bba4d5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"670.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0bacabcd-bc0c-4d2d-b57b-746a562db22d\"}\n"} -{"Time":"2022-12-07T09:15:41.679872+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.679882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.679887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.679 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"633.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"91859fff-bb3d-487e-9a47-8c25e6702c77\"}\n"} -{"Time":"2022-12-07T09:15:41.680895+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.68091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.680917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.680 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"46.333µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"6e11bd35-640b-41d6-8328-76e1d994f153\"}\n"} -{"Time":"2022-12-07T09:15:41.681232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.681 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"32.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e948f804-459a-4303-8780-82a764f1b2c0\"}\n"} -{"Time":"2022-12-07T09:15:41.683099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.683118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.683125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.682 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"40.666µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"2693340b-201f-474f-b2b2-afb473adf2ad\"}\n"} -{"Time":"2022-12-07T09:15:41.68537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.683 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"78.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"096dcebc-7281-4dd1-b76a-6a7b88f40138\"}\n"} -{"Time":"2022-12-07T09:15:41.685479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.685486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.685492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.685 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.236333ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"6c2522bb-b24e-48b3-89de-d9812587e9d4\"}\n"} -{"Time":"2022-12-07T09:15:41.689619+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.689644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.68965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.689 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspacebuilds/4bd355a1-cf10-4666-be25-627399ed888e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.718458ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"579dfe64-6d9f-40d8-a8da-dcd4cb3fa39d\"}\n"} -{"Time":"2022-12-07T09:15:41.692465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.692475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.692478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.690 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.049333ms\", \"status_code\": 200, \"latency_ms\": 3, \"request_id\": \"d4f5de2d-e8c7-4e7b-a757-0e01315ad935\"}\n"} -{"Time":"2022-12-07T09:15:41.694135+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.694143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.694146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.694 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.956667ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"f8616fd1-7ec6-4954-9094-47828d2b4ef7\"}\n"} -{"Time":"2022-12-07T09:15:41.696225+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.696231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.696234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.696 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"99fac72e-7b9d-46b3-8d3c-c4026aa01fce\"}\n"} -{"Time":"2022-12-07T09:15:41.696495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.696 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"24µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d1aea78-59c7-4078-ad5b-4990883bbf32\"}\n"} -{"Time":"2022-12-07T09:15:41.698183+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.698195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.698198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.534167ms\", \"status_code\": 200, \"latency_ms\": 16, \"request_id\": \"ea1d9a22-4f9a-4ca3-8ea0-00ad7bbcc20a\"}\n"} -{"Time":"2022-12-07T09:15:41.698666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.698 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57548\", \"path\": \"/api/v2/templateversions/bfcc0824-ccfe-4e9d-9cc9-70e099602f79/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"291.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39c4f560-7036-4b1c-95d4-92ab0d3f10b4\"}\n"} -{"Time":"2022-12-07T09:15:41.698772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" ptytest.go:103: 2022-12-07 08:15:41.698: cmd: stdout: \"No changes to make.\"\n"} -{"Time":"2022-12-07T09:15:41.698833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" ptytest.go:80: 2022-12-07 08:15:41.698: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:41.698861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" t.go:81: 2022-12-07 08:15:41.698 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:41.699287+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.699294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.699297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.699 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.6825ms\", \"status_code\": 200, \"latency_ms\": 12, \"request_id\": \"a74e3239-6db3-4d6b-a4b8-929b0ff5792b\"}\n"} -{"Time":"2022-12-07T09:15:41.699604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set"} -{"Time":"2022-12-07T09:15:41.69961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set\n"} -{"Time":"2022-12-07T09:15:41.699612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:41.69964+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.699643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.701678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.701 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"88.709µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8dc92f5b-50e4-4c90-974c-36cecf938b96\"}\n"} -{"Time":"2022-12-07T09:15:41.701825+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.70183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.701833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.701 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57464\", \"path\": \"/api/v2/templateversions/222b2aa4-e22d-42b9-aefd-79ef56044ada/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9cf06fd0-c7e9-4ca7-9674-107d26b5cf7b\"}\n"} -{"Time":"2022-12-07T09:15:41.701888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.701896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.701898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.701 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"42.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2c00c095-5ba5-4080-8410-de0236b04c99\"}\n"} -{"Time":"2022-12-07T09:15:41.701938+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.70194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.701944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.701 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.21475ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"ca86be35-9a4c-4dd0-8496-4aab8c5ee7d3\"}\n"} -{"Time":"2022-12-07T09:15:41.701991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.702003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.701: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} -{"Time":"2022-12-07T09:15:41.70201+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.701: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.702013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.701: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:41.702015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.701: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.702017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" configssh_test.go:694: 2022-12-07 08:15:41.701: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_Hostnamesone_resource_with_two_agents535851124/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} -{"Time":"2022-12-07T09:15:41.70203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" configssh_test.go:695: 2022-12-07 08:15:41.702: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:41.70205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:41.702068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.702258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} -{"Time":"2022-12-07T09:15:41.702264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"For example, try running:\"\n"} -{"Time":"2022-12-07T09:15:41.702267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.702269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\\t$ ssh coder.gracious-mirzakhani8\"\n"} -{"Time":"2022-12-07T09:15:41.702312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" ptytest.go:80: 2022-12-07 08:15:41.702: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:41.702375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" t.go:81: 2022-12-07 08:15:41.702 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:41.702417+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.702419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.702421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57498\", \"path\": \"/api/v2/templateversions/1b412497-1a7d-448f-bd29-9d7095591adc/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8a0b3fb4-e496-4e02-a22e-04111ed022d8\"}\n"} -{"Time":"2022-12-07T09:15:41.702495+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.702503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.702505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.702 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c039207b-2504-43a7-ab00-64752fa16cc7\"}\n"} -{"Time":"2022-12-07T09:15:41.702552+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.702556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.702558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} -{"Time":"2022-12-07T09:15:41.70256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.702563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:41.702565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.702602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" configssh_test.go:575: 2022-12-07 08:15:41.702: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowConfig_file_is_created114952163/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} -{"Time":"2022-12-07T09:15:41.702607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" configssh_test.go:576: 2022-12-07 08:15:41.702: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:41.70264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:41.702645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.702864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} -{"Time":"2022-12-07T09:15:41.702872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"For example, try running:\"\n"} -{"Time":"2022-12-07T09:15:41.702874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.702877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:103: 2022-12-07 08:15:41.702: cmd: stdout: \"\\t$ ssh coder.elastic-ptolemy8\"\n"} -{"Time":"2022-12-07T09:15:41.702963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" ptytest.go:80: 2022-12-07 08:15:41.702: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:41.703017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" t.go:81: 2022-12-07 08:15:41.702 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:41.703255+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents"} -{"Time":"2022-12-07T09:15:41.703263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":"=== CONT TestConfigSSH_Hostnames/one_resource_with_two_agents\n"} -{"Time":"2022-12-07T09:15:41.703266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:41.703285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames","Output":"--- PASS: TestConfigSSH_Hostnames (0.00s)\n"} -{"Time":"2022-12-07T09:15:41.703289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Output":" --- PASS: TestConfigSSH_Hostnames/one_resource_with_one_agent (0.85s)\n"} -{"Time":"2022-12-07T09:15:41.703291+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_one_agent","Elapsed":0.85} -{"Time":"2022-12-07T09:15:41.703295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Output":" --- PASS: TestConfigSSH_Hostnames/two_resources_with_two_agents (1.11s)\n"} -{"Time":"2022-12-07T09:15:41.703296+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_two_agents","Elapsed":1.11} -{"Time":"2022-12-07T09:15:41.703298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Output":" --- PASS: TestConfigSSH_Hostnames/two_resources_with_one_agent (0.75s)\n"} -{"Time":"2022-12-07T09:15:41.7033+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/two_resources_with_one_agent","Elapsed":0.75} -{"Time":"2022-12-07T09:15:41.703301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Output":" --- PASS: TestConfigSSH_Hostnames/one_resource_with_two_agents (1.57s)\n"} -{"Time":"2022-12-07T09:15:41.703311+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames/one_resource_with_two_agents","Elapsed":1.57} -{"Time":"2022-12-07T09:15:41.703313+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_Hostnames","Elapsed":0} -{"Time":"2022-12-07T09:15:41.703315+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.703316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.703929+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.703934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.703936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.703 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/organizations/bdbdeeda-6706-467e-91d5-09aaf123d35e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"672µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8f89a14d-dcce-41f8-94b0-236e34f706e2\"}\n"} -{"Time":"2022-12-07T09:15:41.704006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created"} -{"Time":"2022-12-07T09:15:41.704012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created\n"} -{"Time":"2022-12-07T09:15:41.704014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:41.704017+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.704019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.704021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" configssh_test.go:542: waiting for template version job 1e244544-c6ca-4df5-82e2-a5fc1edddb3c\n"} -{"Time":"2022-12-07T09:15:41.704043+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.704047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.705132+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.705136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.705138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"412.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ba95d89f-3078-477c-be3e-41f94ac4ada2\"}\n"} -{"Time":"2022-12-07T09:15:41.705567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.705573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.705576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"72.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"21d24725-5ac6-4cd6-9311-e7a29b8b9bf1\"}\n"} -{"Time":"2022-12-07T09:15:41.705742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.705 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"34.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ebc0568a-7985-4d13-918d-f9de29876aa4\"}\n"} -{"Time":"2022-12-07T09:15:41.706291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"385.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bed66b9b-1f65-4e67-80eb-eb33d0c77358\"}\n"} -{"Time":"2022-12-07T09:15:41.706317+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.706321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.706323+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"88.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"abad4213-d870-4d1b-ad91-db9bda1028ba\"}\n"} -{"Time":"2022-12-07T09:15:41.706505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"27.416µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f877dc1e-9643-46d5-917c-ec83494d1ba3\"}\n"} -{"Time":"2022-12-07T09:15:41.706915+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.706925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.706927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/organizations/11827f28-bbc9-4a4a-98a5-f2cd06170eb5/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"470.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b884c86b-1dfa-45e8-ab24-d0470b0b4e65\"}\n"} -{"Time":"2022-12-07T09:15:41.706994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:542: waiting for template version job b8294ca2-03d5-47ef-9104-5d803df5b95b\n"} -{"Time":"2022-12-07T09:15:41.707001+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.707003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.707005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"340.709µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8eacd97f-bb8b-4955-9083-bd0d60a01eac\"}\n"} -{"Time":"2022-12-07T09:15:41.707627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.707 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/organizations/de28ba55-34c0-4ec1-87b4-9349043825b9/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"493.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4baf374e-5c5b-4840-825d-0036913ea451\"}\n"} -{"Time":"2022-12-07T09:15:41.707706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" configssh_test.go:542: waiting for template version job 11f9de78-3455-46c5-9d3c-50f44bb061f9\n"} -{"Time":"2022-12-07T09:15:41.709174+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.709178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.70918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.709 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"322.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6a0812d-7ea0-4f16-a93b-eb0dbabeece9\"}\n"} -{"Time":"2022-12-07T09:15:41.7092+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.709203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.709205+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.709 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.709225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.709 [DEBUG]\t(provisionerd-determined_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.709262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.709 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"32f4c198-81c3-4631-94f4-5a86e2af088e\"}\n"} -{"Time":"2022-12-07T09:15:41.711537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.711 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspacebuilds/20bb7cb8-18e9-48dc-9903-36f5d2fe6444\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"355.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"251ee5a0-045f-47a8-a190-a5130a8f0243\"}\n"} -{"Time":"2022-12-07T09:15:41.711749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/003/.ssh/config\n"} -{"Time":"2022-12-07T09:15:41.711826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:551: Wrote 313\n"} -{"Time":"2022-12-07T09:15:41.713821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.713 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.125µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"b2d72222-8581-404f-bbad-707b710cf7ba\"}\n"} -{"Time":"2022-12-07T09:15:41.713969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.713 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b2ff3c4-5a5a-4910-b031-b9b563a2661e\"}\n"} -{"Time":"2022-12-07T09:15:41.714326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \"\u003e New options differ from previous options:\"\n"} -{"Time":"2022-12-07T09:15:41.714331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.714333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \" New options: none\"\n"} -{"Time":"2022-12-07T09:15:41.714336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.714338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \" Previous options:\"\n"} -{"Time":"2022-12-07T09:15:41.714341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \" * ssh-option: ForwardAgent=yes\"\n"} -{"Time":"2022-12-07T09:15:41.714343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.714365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:575: 2022-12-07 08:15:41.714: cmd: matched \"Use new options?\" = \"\u003e New options differ from previous options:\\r\\n\\r\\n New options: none\\r\\n\\r\\n Previous options:\\r\\n * ssh-option: ForwardAgent=yes\\r\\n\\r\\n Use new options?\"\n"} -{"Time":"2022-12-07T09:15:41.714369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:576: 2022-12-07 08:15:41.714: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:41.71441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \" Use new options? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:41.714412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.714: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.714877+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.714885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.714888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.714 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e473bfc4-a892-44cc-b7f8-d4417330a74f\"}\n"} -{"Time":"2022-12-07T09:15:41.719664+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options"} -{"Time":"2022-12-07T09:15:41.719668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options\n"} -{"Time":"2022-12-07T09:15:41.71967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.719 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.491792ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"552ab037-b2e8-4eb6-abd0-c87aa72a843f\"}\n"} -{"Time":"2022-12-07T09:15:41.720138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.720 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57511\", \"path\": \"/api/v2/templateversions/e4324252-32d9-4184-aca3-95c01cb67069/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"267.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c75a74d-73e1-4248-8087-c13ce31562b2\"}\n"} -{"Time":"2022-12-07T09:15:41.720213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} -{"Time":"2022-12-07T09:15:41.720218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.72022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \" * Use new SSH options\"\n"} -{"Time":"2022-12-07T09:15:41.720222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:41.720226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.720259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:575: 2022-12-07 08:15:41.720: cmd: matched \"Continue?\" = \" (\\x1b[1myes\\x1b[0m/no) yes\\r\\n\\r\\n\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Use new SSH options\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_previous_options3213281353/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} -{"Time":"2022-12-07T09:15:41.720262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" configssh_test.go:576: 2022-12-07 08:15:41.720: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:41.720279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:41.720296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.720572+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} -{"Time":"2022-12-07T09:15:41.720576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"For example, try running:\"\n"} -{"Time":"2022-12-07T09:15:41.720578+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:41.720591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:41.720: cmd: stdout: \"\\t$ ssh coder.modest-agnesi2\"\n"} -{"Time":"2022-12-07T09:15:41.720622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" ptytest.go:80: 2022-12-07 08:15:41.720: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:41.720655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.720 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:41.721352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:41.721379+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:41.721382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:41.726175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.726 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"139.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cffdb084-1860-4dbb-9c7a-e29822239b9b\"}\n"} -{"Time":"2022-12-07T09:15:41.726474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.726 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"51.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3b0d07ae-19d0-49a9-aa0a-89427ff67943\"}\n"} -{"Time":"2022-12-07T09:15:41.72733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.727 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"575.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"de332836-226a-4a81-b333-ab9d0c58403f\"}\n"} -{"Time":"2022-12-07T09:15:41.728263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.728 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/organizations/bd9d78a1-d152-4025-b8b2-820c75c7b030/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"703.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ebf74127-a548-47b6-abea-7a15ee27cf06\"}\n"} -{"Time":"2022-12-07T09:15:41.728368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" configssh_test.go:542: waiting for template version job 8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\n"} -{"Time":"2022-12-07T09:15:41.729291+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.729294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.729296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.729 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:41.730366+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.730375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.730377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"379.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b8b31390-ab39-494a-bcdc-3e927d46c7fa\"}\n"} -{"Time":"2022-12-07T09:15:41.730381+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.730382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.730385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"79fc48ba-90ea-4027-b751-3bbc1cf211ef\"}\n"} -{"Time":"2022-12-07T09:15:41.733535+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.733541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.733544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b828c919-3f26-4f03-ad5c-994e645b051b\"}\n"} -{"Time":"2022-12-07T09:15:41.733638+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.733643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.733645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"af1b53b5-eef5-4a5f-86f3-95c5703d258a\"}\n"} -{"Time":"2022-12-07T09:15:41.733665+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.733668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.733695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"74e90872-5fef-4446-a3d7-41fa2248d3fc\"}\n"} -{"Time":"2022-12-07T09:15:41.740987+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.740993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.740997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.740 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"455.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e3f5b6ff-4c05-4974-b43a-8092b128b57f\"}\n"} -{"Time":"2022-12-07T09:15:41.75497+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:41.75498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:41.754985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a24b45c0-0764-4141-b9f4-82710328705b\"}\n"} -{"Time":"2022-12-07T09:15:41.754992+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.754995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.754997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9dc691e9-9b21-4f24-ba61-3b23f8cdc96c\"}\n"} -{"Time":"2022-12-07T09:15:41.75501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.755012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.755015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9aab9d4b-a064-4431-8013-221489394b40\"}\n"} -{"Time":"2022-12-07T09:15:41.757808+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.757816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.757819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.757 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cdcdd035-7d20-42d7-ae35-889809c643ca\"}\n"} -{"Time":"2022-12-07T09:15:41.758229+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.758234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.758237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"952bd57d-91d4-4fbe-807f-99961cf56a39\"}\n"} -{"Time":"2022-12-07T09:15:41.758353+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.758358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.758361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"326.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b79ba0d6-cd83-4be8-abd1-023152956707\"}\n"} -{"Time":"2022-12-07T09:15:41.764802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.764808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.76481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.764 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8d8290a7-38a7-43a3-ab2f-84cb3064e44a\"}\n"} -{"Time":"2022-12-07T09:15:41.779576+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.779584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.779588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.779653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.77971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:41.779758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_prompt_on_no_changes2701350071/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.779791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_prompt_on_no_changes2701350071/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.779816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_prompt_on_no_changes2701350071/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.779841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.779959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.779 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:41.779969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:41.779972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:41.779974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.779 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"369.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3a343de3-27d5-48bc-bd68-091f4ec95dde\"}\n"} -{"Time":"2022-12-07T09:15:41.779997+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.780002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.780006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.779 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"370.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06a25acf-1093-4cb4-bcdd-bc5e66e69361\"}\n"} -{"Time":"2022-12-07T09:15:41.780072+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.780075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.780078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.780 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"297742ab-b392-438b-b9fa-35d2006c792b\"}\n"} -{"Time":"2022-12-07T09:15:41.782783+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.78279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.782793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.782 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"363.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"36b6b81c-c616-42c6-a98d-8a0db8f33683\"}\n"} -{"Time":"2022-12-07T09:15:41.783305+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.783315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.783319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd75bc2f-327a-4034-8c0b-84fc9337bd2d\"}\n"} -{"Time":"2022-12-07T09:15:41.783465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.783471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.783475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96cc8897-cde3-4b36-8652-4b63d4355af0\"}\n"} -{"Time":"2022-12-07T09:15:41.789857+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.789864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.789868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.789 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"440.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c8ea03a-c136-4d46-bb9e-11a7e04abaac\"}\n"} -{"Time":"2022-12-07T09:15:41.802203+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.802209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.802212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.802 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:41.804226+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:41.804238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:41.804242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"448.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fe8306f7-24e2-4f03-9adb-026dffae7ecf\"}\n"} -{"Time":"2022-12-07T09:15:41.80458+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.804586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.804589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"516.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4716583-211a-4de5-ab9e-8be0a01b0cda\"}\n"} -{"Time":"2022-12-07T09:15:41.804708+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.80472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.804723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"475.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3cc3f1db-967d-4350-bae6-08a0f3e3b2ef\"}\n"} -{"Time":"2022-12-07T09:15:41.805002+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.805008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.805011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.804 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:41.805689+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.805697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.805701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.805 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:41.807827+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.807838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.807842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.807 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"29d3a595-a15a-415d-9e5b-76c4336e51ed\"}\n"} -{"Time":"2022-12-07T09:15:41.808405+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.808423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.808432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.808 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"171d55c1-a8ef-48e0-83e8-00ac7d9627b7\"}\n"} -{"Time":"2022-12-07T09:15:41.808515+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.80852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.808524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.808 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"499.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"09d3e616-8c07-4646-8e8d-fd0ab1160d61\"}\n"} -{"Time":"2022-12-07T09:15:41.814996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.815003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.815007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.814 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"464.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f4c2472c-9689-4602-9ca2-6926256e6ee4\"}\n"} -{"Time":"2022-12-07T09:15:41.826124+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:41.826133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:41.826137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.826 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:41.827874+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.827883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.827888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.827 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"12.5µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:41.829214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:41.829225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:41.829231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"515.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b34d7bfb-3f77-4d83-a806-b9e90bdf90e1\"}\n"} -{"Time":"2022-12-07T09:15:41.829655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.829665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.82967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"572.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"56496d9a-fbf7-40a0-bef4-539320abab26\"}\n"} -{"Time":"2022-12-07T09:15:41.829802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.829814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.82982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"569.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5ab77c0d-69aa-4dde-a6b3-c289d9d455b9\"}\n"} -{"Time":"2022-12-07T09:15:41.830118+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.83013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.830134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.830 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.830334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.830 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.83301+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.833021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.833025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.832 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"544.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0df8310e-d8c5-42d3-a214-b39c00db1618\"}\n"} -{"Time":"2022-12-07T09:15:41.833478+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.833486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.833491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.833 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"521.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1583e1f5-aecb-4dfa-939d-fd1da82f8a27\"}\n"} -{"Time":"2022-12-07T09:15:41.833712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.833722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.833727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.833 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"575.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8ef518e1-dd96-4215-aa89-137ccb4485d8\"}\n"} -{"Time":"2022-12-07T09:15:41.84011+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.840117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.840121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.840 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"547.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"baf017e8-1c26-4e01-8d97-39d57d531232\"}\n"} -{"Time":"2022-12-07T09:15:41.853425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.853435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.853439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:41.853595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:41.853707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:41.853784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.853835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.853882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.853933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:41.854069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.853 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:41.854354+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:41.854369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:41.854375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.854 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"683.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"00f01106-37a6-4f63-aab4-8502612fad17\"}\n"} -{"Time":"2022-12-07T09:15:41.854923+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.854937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.854942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.854 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"759.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"75fedfb8-b873-4e32-978c-332801e11fce\"}\n"} -{"Time":"2022-12-07T09:15:41.854991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.854995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.854 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"702.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"51a9ff37-6af9-4816-bd2e-241a8902db2b\"}\n"} -{"Time":"2022-12-07T09:15:41.855223+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.855235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.85524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} -{"Time":"2022-12-07T09:15:41.855389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} -{"Time":"2022-12-07T09:15:41.855478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:41.855543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.85561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.855687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.855724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} -{"Time":"2022-12-07T09:15:41.855931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.855 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:41.856006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.856011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.856015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.855 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} -{"Time":"2022-12-07T09:15:41.856165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.856 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} -{"Time":"2022-12-07T09:15:41.856262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.856 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:41.856345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.856437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.85649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.856534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.856 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} -{"Time":"2022-12-07T09:15:41.856704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.856 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:41.858072+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.858084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.85809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.857 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"679.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"119526d6-47e3-482e-a46c-cc71eddb32f8\"}\n"} -{"Time":"2022-12-07T09:15:41.858687+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.858699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.858705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.858 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"688.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"10029995-6938-4a5f-9a4f-0b363edc01a7\"}\n"} -{"Time":"2022-12-07T09:15:41.858888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.858898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.858905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.858 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"689µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57378c80-84d3-4b0c-95ca-16d8c93849f3\"}\n"} -{"Time":"2022-12-07T09:15:41.865237+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.865248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.865253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.865 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"740.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"77e8d5ee-e9ee-4369-8d83-f295921df584\"}\n"} -{"Time":"2022-12-07T09:15:41.869841+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:41.869852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:41.869858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.869 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:41.870007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.869 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:41.870105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.870 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:41.870185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.870256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.870322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.870378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/3166569989.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.870418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:41.870683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.870 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} -{"Time":"2022-12-07T09:15:41.878591+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:41.878642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:41.878669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.877 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:41.878676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.877 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:41.878681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.877 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:41.878734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.877 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run593224590/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.878741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.877 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run593224590/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.878747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.878 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run593224590/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:41.878752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.878 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:41.878757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.878 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:41.881032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.16325ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ac8cb053-e080-437d-8c1f-b29b4bd4de01\"}\n"} -{"Time":"2022-12-07T09:15:41.881062+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.881067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.881073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"926.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bb533f47-2d3f-4789-8de3-1be73296dfa2\"}\n"} -{"Time":"2022-12-07T09:15:41.881437+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.881448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.881463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.881474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.881545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.881565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.881636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.881686+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.881696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.881702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.082167ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"518a1834-a865-48ef-a141-133de8ec6edf\"}\n"} -{"Time":"2022-12-07T09:15:41.881726+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.881733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.881741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.881815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.88209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.881 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.882105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.882 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.883012+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.883027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.883034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.882 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"741.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d5864f2-e5b0-4a61-b66b-dca5ea960c8a\"}\n"} -{"Time":"2022-12-07T09:15:41.883733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.883749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.883754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.883 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"660.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3564c6b8-7ee5-4c20-b13c-e6383d67ac11\"}\n"} -{"Time":"2022-12-07T09:15:41.883763+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.883767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.883772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.883 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"678.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"52453c2f-31c8-4acc-8d57-811ec45a9d3d\"}\n"} -{"Time":"2022-12-07T09:15:41.890622+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.890655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.890662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.890 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.013667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"95bb446d-d4f6-4f7a-9b94-19e765eea633\"}\n"} -{"Time":"2022-12-07T09:15:41.901859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.901889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.901897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.901 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"33.375µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:41.908886+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.908937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.908946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.904 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"949.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2fa72144-24e7-4d87-98fe-02ded17bc8fe\"}\n"} -{"Time":"2022-12-07T09:15:41.908954+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:41.908958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:41.908963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.905 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.819791ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"74c994bb-0a0a-44d5-bb8c-7e9f24acd807\"}\n"} -{"Time":"2022-12-07T09:15:41.90897+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.908973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.908978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.906 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:41.908983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.906 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.910554+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.910569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.910575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.909 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} -{"Time":"2022-12-07T09:15:41.910582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.909 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.91059+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.910619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.910624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.909 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.053542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"997b8965-09c5-478d-afc7-902f5b13827a\"}\n"} -{"Time":"2022-12-07T09:15:41.910632+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.910635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.910639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.909 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.910645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.909 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} -{"Time":"2022-12-07T09:15:41.91065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.910 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"20.458µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:41.910656+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.910661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.910669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.910 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} -{"Time":"2022-12-07T09:15:41.910675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.910 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.910682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.910 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.91069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.910 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} -{"Time":"2022-12-07T09:15:41.913195+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.913218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.913248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.911 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"866.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53f6f6c8-3752-4921-ac0b-92d7cee1d592\"}\n"} -{"Time":"2022-12-07T09:15:41.913306+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.913314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.913318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.911 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"870µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b460851-8f87-4efa-be5b-61f232040a0c\"}\n"} -{"Time":"2022-12-07T09:15:41.913324+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.913327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.913331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.912 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.012709ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"333d345f-d1cf-4709-a279-3d3a34566e39\"}\n"} -{"Time":"2022-12-07T09:15:41.91334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.913 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"24.25µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:41.914672+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.914682+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.914687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.914 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"692.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd1219a0-2d91-4949-922c-7b8b4a1e22d1\"}\n"} -{"Time":"2022-12-07T09:15:41.921418+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:41.921444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:41.92145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.921 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:41.921683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.921 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.923389+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:41.923408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:41.923414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.923 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"19.041µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:41.931428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.929 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:41.931451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.929 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.931841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.931 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.51875ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"835391e4-4441-45fa-add6-cc6b1961e18b\"}\n"} -{"Time":"2022-12-07T09:15:41.932796+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.932811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.932935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"679.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"19d3247a-046b-4144-bc45-00aacc186373\"}\n"} -{"Time":"2022-12-07T09:15:41.932953+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.932958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.932962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"751.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11534f98-96a3-4ce0-87ed-8c6abe4f3939\"}\n"} -{"Time":"2022-12-07T09:15:41.932969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.932972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.932977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.932982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.932987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.932992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.932999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.933009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.932 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.933247+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.933252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.933254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44ef2b59-2330-405b-9bdd-d02447b3769f\"}\n"} -{"Time":"2022-12-07T09:15:41.933258+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.93326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.933262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"256.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"34aa8423-e497-4e60-92d1-e4ca83bcf4a8\"}\n"} -{"Time":"2022-12-07T09:15:41.933444+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.933473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.933477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.933 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"341.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6863a9a5-60de-44c3-bf47-39b89c9c68de\"}\n"} -{"Time":"2022-12-07T09:15:41.941207+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.941233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.941239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.941 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"936.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c570ba81-4a79-4cf2-a024-7479e426f06a\"}\n"} -{"Time":"2022-12-07T09:15:41.958775+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:41.958837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:41.958847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.956 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"834.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12faf469-131d-4bd9-98f2-4898abf0bf4c\"}\n"} -{"Time":"2022-12-07T09:15:41.958859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.958867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.958873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.956 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"902.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9e1b5c3d-81fd-465e-833d-ddacd2e5f4ba\"}\n"} -{"Time":"2022-12-07T09:15:41.958883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.958888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.958895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.957 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"948.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cb85e61b-d441-4b68-ae3e-bb204c2062f8\"}\n"} -{"Time":"2022-12-07T09:15:41.958909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.957 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:41.958918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.957 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.958926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.957 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.958934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.957 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.958942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.958 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.958949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.958 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:41.958957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.958 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:41.958964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.958 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.958974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.958 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:41.963864+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.963892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.963899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.960 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.0415ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"780ac30d-f9e2-496d-b35b-0d6c4f1a9cab\"}\n"} -{"Time":"2022-12-07T09:15:41.963907+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.96391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.963914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.38375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b017c9cc-9b46-491b-871a-4ef6320e6aae\"}\n"} -{"Time":"2022-12-07T09:15:41.96392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.963924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.963928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.961 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.095958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"12d7aaa0-da39-4fda-9779-9ba555f91091\"}\n"} -{"Time":"2022-12-07T09:15:41.963934+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.963937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.963941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.961 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} -{"Time":"2022-12-07T09:15:41.963946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.963951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.963956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.963961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.963969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.963974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.963978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} -{"Time":"2022-12-07T09:15:41.963999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.963 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} -{"Time":"2022-12-07T09:15:41.965098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} -{"Time":"2022-12-07T09:15:41.965108+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.965112+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.965116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} -{"Time":"2022-12-07T09:15:41.965122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.965127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.965132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.965137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.965142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.965149+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.965154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} -{"Time":"2022-12-07T09:15:41.965158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} -{"Time":"2022-12-07T09:15:41.965163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.964 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} -{"Time":"2022-12-07T09:15:41.965345+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.965353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.96536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.965 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"891.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e4287ccd-d319-4f75-958b-65f64038602a\"}\n"} -{"Time":"2022-12-07T09:15:41.97235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:41.972381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:41.972388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:41.972397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.972402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.972635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.972642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.972647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:41.972653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:41.972657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:41.972663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:41.973124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:41.973133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:41.973144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:41.97315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.973155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:41.973159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:41.973164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.973 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:41.973353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:41.973 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:41.973443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.973: cmd: stdout: \"\\x1b[1A\\r✔ Queued [837ms]\"\n"} -{"Time":"2022-12-07T09:15:41.973453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.973: cmd: stdout: \"⧗ \\x1b[;mSetting up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:41.973458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.973: cmd: stdout: \"\\x1b[1A\\r✔ Setting up [0ms]\"\n"} -{"Time":"2022-12-07T09:15:41.973464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.973: cmd: stdout: \"⧗ \\x1b[;mParsing template parameters\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:41.973469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.973: cmd: stdout: \"\\x1b[1A\\r✔ Parsing template parameters [51ms]\"\n"} -{"Time":"2022-12-07T09:15:41.973473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:41.973: cmd: stdout: \"⧗ \\x1b[;mDetecting persistent resources\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:41.983838+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:41.983868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:41.983874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.980 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:41.98388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.980 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.983886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.980 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.983892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.980 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.983902+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.980 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:41.983908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.980 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:41.983913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.980 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:41.983917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.543583ms\", \"status_code\": 200, \"latency_ms\": 3, \"request_id\": \"14bc61e9-d0e5-4ed1-a3ce-6b4f27fc6971\"}\n"} -{"Time":"2022-12-07T09:15:41.983923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.982 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:41.983929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:41.982 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:41.983935+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:41.983938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:41.983942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:41.983 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"732.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f67edc74-b5c3-4e93-8cdd-7a118f0a7e0b\"}\n"} -{"Time":"2022-12-07T09:15:41.988479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:41.988501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:41.988505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:41.987 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.452958ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"861c8404-1d1c-46bd-bc3e-fe11c5307dbf\"}\n"} -{"Time":"2022-12-07T09:15:41.988512+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:41.988516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:41.98852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:41.988 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"986.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd3c9684-2617-4542-ab86-6ca133fe9d81\"}\n"} -{"Time":"2022-12-07T09:15:41.988525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.988527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.988532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.988 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.988536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.988 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.98854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.988 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.98855+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:41.988554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:41.988557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:41.988 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.410625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"1741c193-0abc-49cf-8541-4b18f2632a89\"}\n"} -{"Time":"2022-12-07T09:15:41.988562+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.988568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.988573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.988 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8b8df48f-59e4-4624-8596-f4168509728d\"}\n"} -{"Time":"2022-12-07T09:15:41.988743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.988 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"303.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"386ca763-0174-477a-bd79-835c8f9519fe\"}\n"} -{"Time":"2022-12-07T09:15:41.989014+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:41.989023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:41.989027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:41.988 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ccf58725-a8ea-472a-9b94-724b4c35f3a4\"}\n"} -{"Time":"2022-12-07T09:15:41.989217+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:41.989229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:41.989232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.989 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/organizations/25ab81a8-d905-42b4-9125-90b61229bd9b/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7ed2ec71-f055-44a1-8516-d51f0df55a23\"}\n"} -{"Time":"2022-12-07T09:15:41.99+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:41.989 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/organizations/25ab81a8-d905-42b4-9125-90b61229bd9b/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"603.416µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5e27b759-7c7d-4c34-82bb-eb3f85d00705\"}\n"} -{"Time":"2022-12-07T09:15:41.990086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" configssh_test.go:545: waiting for workspace build job ea095fba-000b-4854-b219-eb94c97837f9\n"} -{"Time":"2022-12-07T09:15:42.00609+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.006113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.00612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.005 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"783.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"60b5d7c9-55f1-4dfc-8f2b-e04b249c581a\"}\n"} -{"Time":"2022-12-07T09:15:42.006128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.006132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.006136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.005 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"783.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9fdec6e4-5bc8-406f-bee9-ca0edcf599a9\"}\n"} -{"Time":"2022-12-07T09:15:42.006551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.006558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.006562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.006 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"663.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bef22a83-5747-416f-9032-792b6c0eb823\"}\n"} -{"Time":"2022-12-07T09:15:42.00834+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.00837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.008377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.007 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"702.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2eb1103f-7020-4a5b-b37f-135f2f3a1f70\"}\n"} -{"Time":"2022-12-07T09:15:42.008934+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.008942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.008988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.008 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"717.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bea24d76-3ad1-47a8-9599-c5589d3bec85\"}\n"} -{"Time":"2022-12-07T09:15:42.008996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.008999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.009003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.008 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:42.009009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.008 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.009016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.008 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.009022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.008 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:42.009027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.008 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:42.009122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.009 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:42.014702+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.014749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.014755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.014 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} -{"Time":"2022-12-07T09:15:42.01476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.014 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} -{"Time":"2022-12-07T09:15:42.014769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.014 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} -{"Time":"2022-12-07T09:15:42.014775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.014 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d42d8703-d05c-44c1-a17b-b415e8b9c4d2\"}\n"} -{"Time":"2022-12-07T09:15:42.015273+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.015279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.015284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.014 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} -{"Time":"2022-12-07T09:15:42.015289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.014 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} -{"Time":"2022-12-07T09:15:42.015293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.014 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} -{"Time":"2022-12-07T09:15:42.015299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.015 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"4d8648db-3746-4e81-a6a4-a8b4a70b63d8\"}\n"} -{"Time":"2022-12-07T09:15:42.01545+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.015457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.015461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.015 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"777.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"96fc6648-8d79-4418-860e-35c57627835d\"}\n"} -{"Time":"2022-12-07T09:15:42.016409+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.016418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.016423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.016 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"725.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ee0797a0-086f-4ae8-95a5-a30751ed0324\"}\n"} -{"Time":"2022-12-07T09:15:42.024269+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:42.02429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:42.024296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.023 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:42.024302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.024307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.024315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:42.024321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:42.024845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:42.024852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:42.024857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:42.024862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:42.024869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:42.025061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:42.02507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.024 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:42.025222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.025: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:42.025231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.025: cmd: stdout: \"✔ Detecting persistent resources [0ms]\"\n"} -{"Time":"2022-12-07T09:15:42.025235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.025: cmd: stdout: \"⧗ \\x1b[;mDetecting ephemeral resources\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:42.025239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.025: cmd: stdout: \"\\x1b[1A\\r✔ Detecting ephemeral resources [51ms]\"\n"} -{"Time":"2022-12-07T09:15:42.025243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.025: cmd: stdout: \"⧗ \\x1b[;mCleaning Up\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:42.030159+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.030179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.030186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"880.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a8bf2285-bb28-4b15-8d36-0a24f21b9bd1\"}\n"} -{"Time":"2022-12-07T09:15:42.030209+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.030213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.030217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.029 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"927.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9bc4aba5-48c9-40c8-a910-6ddf5d459edc\"}\n"} -{"Time":"2022-12-07T09:15:42.031+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.031025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.031032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.030 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"658.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b160999-d4aa-415c-8ba4-92b07ea13b96\"}\n"} -{"Time":"2022-12-07T09:15:42.036321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.036342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.036348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.033 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"642.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4dc7d83d-6d8f-4bce-bfb6-50eec64e206f\"}\n"} -{"Time":"2022-12-07T09:15:42.036356+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.036359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.036364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.035 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.805709ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"7e0f956b-854d-4364-813b-2b26c5cdbf19\"}\n"} -{"Time":"2022-12-07T09:15:42.03637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/organizations/11827f28-bbc9-4a4a-98a5-f2cd06170eb5/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"706.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e9ee618c-7a23-48b7-b78b-7f4b51c0f832\"}\n"} -{"Time":"2022-12-07T09:15:42.036397+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.0364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.036404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.036 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/organizations/de28ba55-34c0-4ec1-87b4-9349043825b9/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"825.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3be3176d-65d3-46e2-bef5-a2ec2a9cfb79\"}\n"} -{"Time":"2022-12-07T09:15:42.038831+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.03885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.038856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/organizations/11827f28-bbc9-4a4a-98a5-f2cd06170eb5/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.463667ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"e8e5b399-ff36-44ab-ada8-eee113dc2a66\"}\n"} -{"Time":"2022-12-07T09:15:42.038863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.038867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.038871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/organizations/de28ba55-34c0-4ec1-87b4-9349043825b9/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.615208ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"a8d76eac-0a8c-479d-a903-6915100f6e47\"}\n"} -{"Time":"2022-12-07T09:15:42.038877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" configssh_test.go:545: waiting for workspace build job bc2e975a-e24c-447a-a647-946c68dbe98f\n"} -{"Time":"2022-12-07T09:15:42.038881+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.038884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.038888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:545: waiting for workspace build job 9e9e30fa-f760-4987-9e3c-089152338222\n"} -{"Time":"2022-12-07T09:15:42.038893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.038896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.038904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:42.038909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.038914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.038922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:42.038926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:42.039476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.038 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:42.040498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.040511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.040516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.040 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.088333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"917e8dcc-e075-4d38-9038-6fa3d43124f6\"}\n"} -{"Time":"2022-12-07T09:15:42.04195+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.041962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.041966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.041 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.0295ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bbaf3a07-d20d-4c6f-83dc-72be842637ce\"}\n"} -{"Time":"2022-12-07T09:15:42.042042+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:42.042045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:42.042048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.041 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.539459ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c8541c96-88bd-4aa2-863e-7d317ece606c\"}\n"} -{"Time":"2022-12-07T09:15:42.056214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.056271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.056278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.055 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"822.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a64ff1f-88ec-4460-91c5-1ecfed28bb21\"}\n"} -{"Time":"2022-12-07T09:15:42.056291+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.056295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.056299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.055 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"790.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bb937cc9-2e37-4a17-b4e5-5d057c2a5067\"}\n"} -{"Time":"2022-12-07T09:15:42.056573+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.056579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.056605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.056 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"653.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33ec0470-011e-4165-8e32-ff538b78f3f4\"}\n"} -{"Time":"2022-12-07T09:15:42.059878+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.059899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.059904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.059 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:42.059911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.059 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:42.059918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.059 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:42.060012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.059 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"add64c6d-4865-4656-8269-aaea1fa4c3eb\"}\n"} -{"Time":"2022-12-07T09:15:42.06716+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.06718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.067186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.066 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.366333ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"67c5f2d8-0455-46d0-a7ce-b9671274f264\"}\n"} -{"Time":"2022-12-07T09:15:42.067194+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.067198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.067202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.066 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.595792ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"28a24108-78b6-4151-9a69-7244a76ba29d\"}\n"} -{"Time":"2022-12-07T09:15:42.068246+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.068258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.068264+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.067 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"716.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f872f08-ef90-457c-95e5-8499847606d7\"}\n"} -{"Time":"2022-12-07T09:15:42.068272+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.068276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.068281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.068 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"709.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ec66a182-20f5-48a6-9bc3-39984709434d\"}\n"} -{"Time":"2022-12-07T09:15:42.07501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:42.07503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:42.075036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.074 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:42.075044+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.074 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:42.07536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.075 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:42.07537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.075 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:42.075415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.075 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:42.075422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.075 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\"}\n"} -{"Time":"2022-12-07T09:15:42.075693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.075 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.0388625s\", \"status_code\": 101, \"latency_ms\": 1038, \"request_id\": \"70781cfb-e1e4-4ab3-b044-0bc2cf32e2ba\"}\n"} -{"Time":"2022-12-07T09:15:42.076688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.076 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"822µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61182dae-999a-46c1-895f-b11d1084b3e5\"}\n"} -{"Time":"2022-12-07T09:15:42.076889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.076: cmd: stdout: \"\\x1b[1A\\r✔ Cleaning Up [102ms]\"\n"} -{"Time":"2022-12-07T09:15:42.077798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.077 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"700.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"635122fe-a65b-4555-8101-1cc88b681c36\"}\n"} -{"Time":"2022-12-07T09:15:42.079419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.078 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"824.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"980f540f-e7c6-49b0-9d3b-af15f64ea1d5\"}\n"} -{"Time":"2022-12-07T09:15:42.079437+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.079442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.079447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.079 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"672.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"88847ca7-cad1-42ae-990f-1307a8bac8f1\"}\n"} -{"Time":"2022-12-07T09:15:42.080728+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:42.08074+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:42.080745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.080 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.050833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"de6a3f6d-af24-4677-888e-2893cb42ee65\"}\n"} -{"Time":"2022-12-07T09:15:42.080752+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.080756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.08076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.080 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"629.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ed67d85-dc36-4334-918b-4cbf525c919b\"}\n"} -{"Time":"2022-12-07T09:15:42.086032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:42.08605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:42.086056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.081 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/ddc53f1a-a846-498e-b19d-7ce91474c633\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"901.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1105ceb-7c59-40cb-82fd-358368839636\"}\n"} -{"Time":"2022-12-07T09:15:42.086077+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.086082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.086086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"879.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"71801a96-52d5-401c-a61e-66060f1371a8\"}\n"} -{"Time":"2022-12-07T09:15:42.086106+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.086109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.086113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.083 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/organizations/bdbdeeda-6706-467e-91d5-09aaf123d35e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"721.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"be065230-4249-492b-8e37-de0e3de863fa\"}\n"} -{"Time":"2022-12-07T09:15:42.086119+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:42.086122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:42.086127+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.084 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/1d842e1c-0674-4fdb-a3ec-f71067874190\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"688.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3bf12128-d9e9-4ac8-9ce9-d1effb4512fc\"}\n"} -{"Time":"2022-12-07T09:15:42.086133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.085 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"798.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"217325d7-307c-486e-a434-bfd206e20acd\"}\n"} -{"Time":"2022-12-07T09:15:42.086139+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.086143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.086147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.085 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/organizations/bdbdeeda-6706-467e-91d5-09aaf123d35e/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.642959ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"ecd53a16-3013-441a-946d-655e5bd4c5e5\"}\n"} -{"Time":"2022-12-07T09:15:42.086153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" configssh_test.go:545: waiting for workspace build job 8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\n"} -{"Time":"2022-12-07T09:15:42.08638+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:42.086387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:42.086395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.086: cmd: stdout: \"┌──────────┐\"\n"} -{"Time":"2022-12-07T09:15:42.0864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.086: cmd: stdout: \"│ Template │\"\n"} -{"Time":"2022-12-07T09:15:42.086404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.086: cmd: stdout: \"│ Preview │\"\n"} -{"Time":"2022-12-07T09:15:42.086408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.086: cmd: stdout: \"├──────────┤\"\n"} -{"Time":"2022-12-07T09:15:42.086412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.086: cmd: stdout: \"│ RESOURCE │\"\n"} -{"Time":"2022-12-07T09:15:42.086416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.086: cmd: stdout: \"├──────────┤\"\n"} -{"Time":"2022-12-07T09:15:42.086419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.086: cmd: stdout: \"└──────────┘\"\n"} -{"Time":"2022-12-07T09:15:42.087165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.087 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templates/a745dfb2-e349-43c4-8ee1-7346defa546c/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"755.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d64db719-f1e3-4401-8295-ab59f76834ea\"}\n"} -{"Time":"2022-12-07T09:15:42.087419+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:103: 2022-12-07 08:15:42.087: cmd: stdout: \"Updated version at Dec 7 09:15:42!\"\n"} -{"Time":"2022-12-07T09:15:42.089262+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.089276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.089282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.089 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:42.089292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.089 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:42.089352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.089 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:42.089459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.089 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"b0321b29-29c1-437d-b957-495e60b35c0a\"}\n"} -{"Time":"2022-12-07T09:15:42.089474+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.089477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.08948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.089 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"793.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ab55eba6-934f-4912-aa7a-50f16c93321d\"}\n"} -{"Time":"2022-12-07T09:15:42.089509+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.089515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.089525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.089 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"782.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b47011bd-f042-4fdb-a5c0-1137f160de27\"}\n"} -{"Time":"2022-12-07T09:15:42.089742+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.08975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.089753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.089 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"866.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c59783c-831a-4c0a-b9e9-a60cd0c5a6b5\"}\n"} -{"Time":"2022-12-07T09:15:42.089853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:42.089857+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:42.089861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.089 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templates/a745dfb2-e349-43c4-8ee1-7346defa546c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.186959ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0df41ba7-fcbb-497b-9acb-3a6f7d8c80be\"}\n"} -{"Time":"2022-12-07T09:15:42.090536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.090 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"424.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"efde397b-b634-43c7-a503-367e4d838a27\"}\n"} -{"Time":"2022-12-07T09:15:42.090712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.090722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.090726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.090 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"438.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1fd23d4d-8489-409d-8bc2-67b1e815bf6a\"}\n"} -{"Time":"2022-12-07T09:15:42.091132+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:42.091138+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:42.091141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.091 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a65c6f85-b81f-4eea-81fe-0e670990526d\"}\n"} -{"Time":"2022-12-07T09:15:42.094784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"28.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"3f8708c9-db34-4dfb-8cd1-2a0de5e832af\"}\n"} -{"Time":"2022-12-07T09:15:42.095036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"453b2601-10cf-4143-bffd-61946f0de320\"}\n"} -{"Time":"2022-12-07T09:15:42.095866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.095 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"537.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f04e414a-8424-455e-8ee3-beddc1a8698f\"}\n"} -{"Time":"2022-12-07T09:15:42.096653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.096 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templates/intelligent-euler0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"465.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e8ef42d-fd98-43fd-a62a-f50386e45daa\"}\n"} -{"Time":"2022-12-07T09:15:42.097745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.097 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ebe7470e-b181-44d7-a263-50b778112ba4\"}\n"} -{"Time":"2022-12-07T09:15:42.098937+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.098 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"910.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6d1a1238-9175-40a0-9530-725cf9eb80b2\"}\n"} -{"Time":"2022-12-07T09:15:42.099692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/909b64ca-55ab-4c74-9114-5d967924ba50\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"435.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2eda5fa1-840f-48d0-b469-b2cb35ccb42d\"}\n"} -{"Time":"2022-12-07T09:15:42.11202+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.112038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.112045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.003334ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"fa10020e-9e3e-42e2-bd99-c62322cccf65\"}\n"} -{"Time":"2022-12-07T09:15:42.112062+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.112065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.112067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"695.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d8a11cf-dc0b-472d-b160-4fb940e5e2db\"}\n"} -{"Time":"2022-12-07T09:15:42.112091+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.112093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.112096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"624.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2fcd7807-2ae4-4c04-8b4d-ef0182f8552a\"}\n"} -{"Time":"2022-12-07T09:15:42.112733+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.112746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.112749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/organizations/bd9d78a1-d152-4025-b8b2-820c75c7b030/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"421.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ca862e4f-48ea-4566-8e1a-e5d1609935a5\"}\n"} -{"Time":"2022-12-07T09:15:42.113963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.113 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/organizations/bd9d78a1-d152-4025-b8b2-820c75c7b030/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"957.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"46d3f20a-4970-47be-894f-9470425e8b09\"}\n"} -{"Time":"2022-12-07T09:15:42.114073+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.114084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.114088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"519.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"14eee9a3-43a6-42aa-b4c6-ea1cacc7c978\"}\n"} -{"Time":"2022-12-07T09:15:42.114095+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.1141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.114102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" configssh_test.go:545: waiting for workspace build job 11892955-80bc-4026-93ab-8563419ccfb2\n"} -{"Time":"2022-12-07T09:15:42.114221+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.114229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.114232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"567.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e7f90e8-b9a1-4d45-9be7-f04e9aa21874\"}\n"} -{"Time":"2022-12-07T09:15:42.114498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.114506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.11451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.114 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"502.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d59fb6bf-0570-42bd-926f-d50ad01f7f09\"}\n"} -{"Time":"2022-12-07T09:15:42.11575+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.115757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.115761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.115 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"466.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a007795-8650-4db6-a490-1ef377e64e00\"}\n"} -{"Time":"2022-12-07T09:15:42.120833+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.120842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.120845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.120 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.120953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.120 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.12103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.120 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:42.121068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.121 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_when_using_--yes2569395571/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.121103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.121 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_when_using_--yes2569395571/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.121139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.121 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_when_using_--yes2569395571/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.121167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.121 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"workspace_name\": \"stoic-hertz3\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:42.121268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.121 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.121302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.121 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.129955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.129 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"522.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9f74175c-490c-461a-8ba7-90a1e029196e\"}\n"} -{"Time":"2022-12-07T09:15:42.137629+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.137638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.137642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.137 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"599.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"85c96fe4-6826-4c72-9600-2ac7c6b44c52\"}\n"} -{"Time":"2022-12-07T09:15:42.13915+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.13916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.139164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"484.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12513651-3083-4aba-9de7-6b5882055483\"}\n"} -{"Time":"2022-12-07T09:15:42.13917+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.139173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.139178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"522.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5303561c-c291-45e4-a25d-c3ea75680af7\"}\n"} -{"Time":"2022-12-07T09:15:42.139437+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.139448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.139452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"656.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0be7a1ed-af53-4a96-a1df-63d4b64ae013\"}\n"} -{"Time":"2022-12-07T09:15:42.139731+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.139739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.139743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.139845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.139 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.139856+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.139859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.139864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"577.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ba920e7-af3e-4a23-8825-15f89ae1636c\"}\n"} -{"Time":"2022-12-07T09:15:42.1399+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.139905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.139909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.139 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:42.139944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.140013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.140022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.139 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.14005+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.140 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"workspace_name\": \"keen-antonelli3\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:42.140174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.140 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.140186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.140 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.140875+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.140882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.140885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.140 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"602.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7c94afd6-fafc-47a4-a7d4-b54d45e43b6a\"}\n"} -{"Time":"2022-12-07T09:15:42.15563+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.155639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.155643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.155 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"536.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9e0c89c1-8981-4c70-88e6-5a41753254f9\"}\n"} -{"Time":"2022-12-07T09:15:42.162541+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.162556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.162561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.162 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"591.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da91c2d2-80d5-4441-b2f4-0fc5490b8b10\"}\n"} -{"Time":"2022-12-07T09:15:42.1643+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.164315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.164326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.164 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"570.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"86e57331-d312-4301-bbdc-327546415234\"}\n"} -{"Time":"2022-12-07T09:15:42.164398+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.164405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.16441+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.164 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"588.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d8e0790-0de7-4dc1-a90a-8e8035d85011\"}\n"} -{"Time":"2022-12-07T09:15:42.164427+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.164431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.164436+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.164 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"583.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e7ec62af-e7c3-4fab-9f12-55f9b1c83753\"}\n"} -{"Time":"2022-12-07T09:15:42.165054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.165064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.165068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.164 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"719.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"63239428-304d-4632-b678-9a8823ac18c2\"}\n"} -{"Time":"2022-12-07T09:15:42.165872+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.16588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.165884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.165 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"561.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"934f2337-848b-49b5-a51a-20044146fb94\"}\n"} -{"Time":"2022-12-07T09:15:42.172174+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.172183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.172188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.172 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.172212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.172 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.172238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.172 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.172283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.172 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.181258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.181 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"955.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a96ff8b1-7722-4bef-8d92-7d87136ee4e0\"}\n"} -{"Time":"2022-12-07T09:15:42.188028+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.188073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.188081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.187 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.228792ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"574f96ef-29cc-4b35-8db5-e51c5f11fd14\"}\n"} -{"Time":"2022-12-07T09:15:42.189901+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.189916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.189923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.189 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"915.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f4e158a-7e3c-46a1-91d8-5eff42c5e9cc\"}\n"} -{"Time":"2022-12-07T09:15:42.189932+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.189936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.189942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.189 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"806.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ca01e0e5-9d10-48cb-9410-1a49b4bdbe4a\"}\n"} -{"Time":"2022-12-07T09:15:42.190617+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.190633+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.190639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.190 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"750.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b109694e-624a-4f9b-9071-d11aa2fabe7f\"}\n"} -{"Time":"2022-12-07T09:15:42.190649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.190653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.190658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.190 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.190752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.190 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.190773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.190 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.190784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.190 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.191105+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.191116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.191121+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"887.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"45f3de2c-121f-4825-ae47-05fbc4d3abf0\"}\n"} -{"Time":"2022-12-07T09:15:42.191704+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.191716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.191721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.191 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"774.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bbde455c-5f01-4c10-928c-f3ac4558b1ee\"}\n"} -{"Time":"2022-12-07T09:15:42.206871+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.206904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.206911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.206 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.037042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b543b226-b0a7-4b9c-993f-a83a707571e6\"}\n"} -{"Time":"2022-12-07T09:15:42.212989+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.213011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.213018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.212 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"978.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8a2e44ed-2739-4896-a7f8-83de5f03c584\"}\n"} -{"Time":"2022-12-07T09:15:42.214724+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.214755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.214763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.214 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"721.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6fdfc0d0-6dc2-4192-8e92-e9e91ef3efb9\"}\n"} -{"Time":"2022-12-07T09:15:42.214773+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.214777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.214782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.214 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"872.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"52ab96b5-aaa5-4e50-b0bc-6fc00c802742\"}\n"} -{"Time":"2022-12-07T09:15:42.223655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.223677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.223684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.215 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"823.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"09faa431-114e-488b-891a-347370ad1ae5\"}\n"} -{"Time":"2022-12-07T09:15:42.223693+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.223698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.223726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.219 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.325459ms\", \"status_code\": 200, \"latency_ms\": 3, \"request_id\": \"813da2ba-59fd-47ae-bc15-274d287e5ca2\"}\n"} -{"Time":"2022-12-07T09:15:42.223741+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.223745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.22375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.219 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.223756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.220 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.223763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.220 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:42.223769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.220 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.223775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.220 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.224019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.220 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.224059+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.220 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"workspace_name\": \"ecstatic-merkle8\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:42.224066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.220 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.224072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.222 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.224078+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.224083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.224087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.216 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.467041ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"d2832fc4-331f-4691-b897-5e6682aca023\"}\n"} -{"Time":"2022-12-07T09:15:42.224095+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.224099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.224103+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.222 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.224109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.223 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.224115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.223 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.229747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.229 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"552.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fc8d62c1-b855-45f9-b3bd-790a50e646dc\"}\n"} -{"Time":"2022-12-07T09:15:42.238111+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.238131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.238137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.238 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"858.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"48423a28-5067-4771-bbed-7541372f282b\"}\n"} -{"Time":"2022-12-07T09:15:42.239447+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.239459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.239465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.239 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"770.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bba01f20-04c3-48e9-b3d4-ef7d152f49f5\"}\n"} -{"Time":"2022-12-07T09:15:42.239618+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.239639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.239647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.239 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"759.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b536ec57-caed-48a3-be8a-5c47b842c6d8\"}\n"} -{"Time":"2022-12-07T09:15:42.239658+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.23967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.23968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.239 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"789.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b1e08f8-ce49-4927-8605-01b9da13400d\"}\n"} -{"Time":"2022-12-07T09:15:42.240217+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.240233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.240238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.240 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"735µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bd4125eb-b1fe-4188-be3b-6392ae0ac1df\"}\n"} -{"Time":"2022-12-07T09:15:42.241118+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.241134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.24114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.241 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.241191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.241208+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.241214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.241 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"814.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"789a5303-1bbf-40c2-a1d0-2d81d53dd4c2\"}\n"} -{"Time":"2022-12-07T09:15:42.241479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.241492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.241507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.241 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.241516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.241 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.259991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.260045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.260055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.259 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"4.040458ms\", \"status_code\": 200, \"latency_ms\": 4, \"request_id\": \"1a43f0df-ba5e-458a-9cd4-fd4086daf328\"}\n"} -{"Time":"2022-12-07T09:15:42.262883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.262917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.262925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.262 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.239958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"71f5c9b9-d51b-4e9b-809b-a3097408af6a\"}\n"} -{"Time":"2022-12-07T09:15:42.266186+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.266266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.266273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.264 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"971.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0959c361-844f-470d-8f77-c388b800fb33\"}\n"} -{"Time":"2022-12-07T09:15:42.266283+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.266288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.266292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.265 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.464042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"5af7821b-db3e-49b6-80f4-ddf0a3552dd6\"}\n"} -{"Time":"2022-12-07T09:15:42.266299+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.266303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.266307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.265 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"856.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fae61029-79bc-44fd-b1f3-bc917f39f7f8\"}\n"} -{"Time":"2022-12-07T09:15:42.266669+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.266677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.266684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.266 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"891.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f9ad4e2d-3aaa-4a7e-9165-19185c129469\"}\n"} -{"Time":"2022-12-07T09:15:42.267926+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.267938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.267945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.267 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"876.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"131a8623-5929-4bc5-a031-2c28cdad59ac\"}\n"} -{"Time":"2022-12-07T09:15:42.273439+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.273458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.273465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.273627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.273637+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.273642+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.273856+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.273865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.273871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.273963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.273971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.274051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.273 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.274119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.274 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.281187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.280 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.173125ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"65dd698f-2097-4a4c-bb54-1aa9806d1899\"}\n"} -{"Time":"2022-12-07T09:15:42.288527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.288552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.288558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.288 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.512958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2bd6794c-5861-4621-9b8e-3a36f96ac6fe\"}\n"} -{"Time":"2022-12-07T09:15:42.292955+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.292985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.292993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.134958ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"2445231f-e34a-4b17-8259-303266131daf\"}\n"} -{"Time":"2022-12-07T09:15:42.29305+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.293056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.29306+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.523375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3119012d-681f-484a-9460-b016b81e7aeb\"}\n"} -{"Time":"2022-12-07T09:15:42.293067+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.293073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.293077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.293084+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.293089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.293093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.2931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.293108+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.293113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.293122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.291 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.293211+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.293215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.29322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.293226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.293232+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.293236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.293241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.291 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:42.293257+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.29326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.293265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.291 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.293271+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.293274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.293278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run593224590/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.293287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run593224590/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.293293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run593224590/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.293298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"workspace_name\": \"gallant-cray8\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:42.293304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.292 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.293308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.292 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.293318+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.293321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.293325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.293 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"949.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f544a983-87ed-4740-b45a-dc3d688ca577\"}\n"} -{"Time":"2022-12-07T09:15:42.295635+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.29609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.296119+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.294 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.26975ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"3252f74d-7e49-4c16-936c-4285ae295331\"}\n"} -{"Time":"2022-12-07T09:15:42.296128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.296132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.296137+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.295 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.445083ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"71b6abe2-3494-4b71-a612-00983b4c97ca\"}\n"} -{"Time":"2022-12-07T09:15:42.306779+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.306814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.306821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.306 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.583833ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"5e13193f-605b-4dc0-95ab-06c522e5b826\"}\n"} -{"Time":"2022-12-07T09:15:42.318774+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.318813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.31882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.313 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.590167ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"161991d3-22e0-4413-a033-e8d8e3852aa2\"}\n"} -{"Time":"2022-12-07T09:15:42.31883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.318834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.31884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.315 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.226375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"cbb63f2f-e2e2-4a8c-87e4-d5b431beac10\"}\n"} -{"Time":"2022-12-07T09:15:42.318846+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.318894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.318899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.315 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"828.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0b3e6b75-66d7-401f-a2cd-f74511d02026\"}\n"} -{"Time":"2022-12-07T09:15:42.318906+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.318913+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.31892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.316 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"881.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c2faa829-72d8-492f-924d-291e5d17e3bb\"}\n"} -{"Time":"2022-12-07T09:15:42.318926+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.318931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.318942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.317 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"950.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"614daba0-10ad-4698-8cbf-4f80c00a9000\"}\n"} -{"Time":"2022-12-07T09:15:42.319243+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.319253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.319258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.140542ms\", \"status_code\": 200, \"latency_ms\": 3, \"request_id\": \"9dbd0fce-df14-498e-8015-3f830f987e6a\"}\n"} -{"Time":"2022-12-07T09:15:42.325434+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.325469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.325476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.324 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.325484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.324 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.325491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.324 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.325497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.324 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.32551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.324 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.325517+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.32552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.325525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.325 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.325531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.325 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.325538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.325 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.332178+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.332223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.332232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.332 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.372667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"53a9988f-1dcd-4c60-9bc2-d25694b5f2c4\"}\n"} -{"Time":"2022-12-07T09:15:42.339672+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.33971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.339721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.339 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.284667ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"de3deff2-4e84-45b2-9873-c76bd253a924\"}\n"} -{"Time":"2022-12-07T09:15:42.34789+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.347932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.347943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.341 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.378042ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f79073ba-c421-44b5-bcb8-a795e23bff59\"}\n"} -{"Time":"2022-12-07T09:15:42.348002+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.348011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.348018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.344 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.412916ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"f5dec680-e2f0-4ebe-a968-19b3d1e80edc\"}\n"} -{"Time":"2022-12-07T09:15:42.348034+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.348042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.348048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.344 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"4.497166ms\", \"status_code\": 200, \"latency_ms\": 4, \"request_id\": \"f5bd3ddc-872d-427d-8cc4-d3a4c6cae537\"}\n"} -{"Time":"2022-12-07T09:15:42.348085+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.348092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.348098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.345 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.348109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.345 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.348158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.345 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.348182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.345 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.348194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.345 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.348205+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.348212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.348221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.347 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.38475ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ccedfefd-51cd-4f0c-bf5b-9b8a9b7557db\"}\n"} -{"Time":"2022-12-07T09:15:42.348234+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.348243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.348253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.347 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.221167ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"27d3a87d-6708-434f-a677-8045126c19d8\"}\n"} -{"Time":"2022-12-07T09:15:42.348264+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.348268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.348282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.347 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.348289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.347 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.348302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.347 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.348309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.347 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.355654+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.355667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.355673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.355 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"718.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"206cb4b2-f6ab-4505-ba65-44cde2d672a0\"}\n"} -{"Time":"2022-12-07T09:15:42.35991+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.35995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.359958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.358 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.359966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.358 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.359973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.358 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:42.35998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.358 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.359988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.358 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.359994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.358 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.360001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.359 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"workspace_name\": \"eager-dhawan0\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:42.360007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.359 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.360014+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.359 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.367738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.367773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.367782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.365 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.784958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"8109ed84-0fa7-4117-934e-e7d39c483be1\"}\n"} -{"Time":"2022-12-07T09:15:42.367839+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.367845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.367851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.367 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.051667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f6901c09-0165-4aa1-9181-9e0050cbcd9e\"}\n"} -{"Time":"2022-12-07T09:15:42.367863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.367868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.367873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.367 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.072333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"16727ae4-b205-47a8-97d2-11ff3005b1bc\"}\n"} -{"Time":"2022-12-07T09:15:42.369398+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.369416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.369423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.369 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.069ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"cf92286a-357e-4ebf-bbea-fb36646744ab\"}\n"} -{"Time":"2022-12-07T09:15:42.369512+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.369526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.369534+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.369 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"943.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"64bd8a8a-bd45-439e-ac9d-0a8fdc0aa66b\"}\n"} -{"Time":"2022-12-07T09:15:42.36965+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.369662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.369674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.369 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"951.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e496f7f1-d973-4982-b9c3-813d591b4bbc\"}\n"} -{"Time":"2022-12-07T09:15:42.376305+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.376343+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.37635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.375 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.376365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.375 [DEBUG]\t(provisionerd-sleepy_shannon8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.376371+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.376374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.376379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.375 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.376386+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.376389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.376393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.375 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"119ce044-dcba-40e9-b515-ebdf0ceab3a1\"}\n"} -{"Time":"2022-12-07T09:15:42.3764+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.376404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.376409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.375 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.376416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.376 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.376422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.376 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.376428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.376 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.381174+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.381222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.381232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.380 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspacebuilds/9bc35b03-4974-4638-b688-b0604d5599e3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.293708ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"a16a61ef-0170-4138-bdc5-bfbecbe08c20\"}\n"} -{"Time":"2022-12-07T09:15:42.383188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_when_using_--yes2569395571/003/.ssh/config\n"} -{"Time":"2022-12-07T09:15:42.383664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" configssh_test.go:551: Wrote 314\n"} -{"Time":"2022-12-07T09:15:42.387581+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.387596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.3876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.387 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"765.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3f9c203-2608-47ac-ba31-af392a19d914\"}\n"} -{"Time":"2022-12-07T09:15:42.389645+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.389663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.389669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.389 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"751.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"80dfa171-f47a-42d0-91a7-5050a380c838\"}\n"} -{"Time":"2022-12-07T09:15:42.389678+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.389683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.38969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.389 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"742.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"627378d3-fa96-4c18-8957-771b62d406dc\"}\n"} -{"Time":"2022-12-07T09:15:42.389698+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.389714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.38979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.389 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"47.458µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"5f44f9fc-f473-4cf3-9da5-4f42f1fc8922\"}\n"} -{"Time":"2022-12-07T09:15:42.389802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.38981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.389815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.389 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"793.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5e60cb1b-65cf-4521-815e-83fdb8dca988\"}\n"} -{"Time":"2022-12-07T09:15:42.390056+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.390076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.390083+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.389 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"45.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a47f93b1-815e-4194-9d1a-68923b153059\"}\n"} -{"Time":"2022-12-07T09:15:42.390163+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.390186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.390192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.390 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"777.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"85b211c8-6ee7-4d0e-9219-e760c5af9c8e\"}\n"} -{"Time":"2022-12-07T09:15:42.391321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.391342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.391354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.391 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"804µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0514669e-1b26-40eb-a2e7-621ec859f45f\"}\n"} -{"Time":"2022-12-07T09:15:42.396853+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.396865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.39687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.396 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.396922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.396 [DEBUG]\t(provisionerd-cool_antonelli6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.397024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.396 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"e3b681cf-f470-4581-bc9d-0c3f7e7d8876\"}\n"} -{"Time":"2022-12-07T09:15:42.398378+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.398389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.398393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.398 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.39859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.398 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.398614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.398 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.404034+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes"} -{"Time":"2022-12-07T09:15:42.404067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes\n"} -{"Time":"2022-12-07T09:15:42.404073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.403 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.44275ms\", \"status_code\": 200, \"latency_ms\": 13, \"request_id\": \"256d7d70-dcb8-48ed-abd7-cfe23aa82a8e\"}\n"} -{"Time":"2022-12-07T09:15:42.405118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.405 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57567\", \"path\": \"/api/v2/templateversions/8c08123c-13dc-48cf-ba7e-5b981f012fe8/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"603.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9da50e5a-cedc-4275-8e2a-b44f4c734f08\"}\n"} -{"Time":"2022-12-07T09:15:42.405866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" ptytest.go:103: 2022-12-07 08:15:42.405: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} -{"Time":"2022-12-07T09:15:42.405879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" ptytest.go:103: 2022-12-07 08:15:42.405: cmd: stdout: \"For example, try running:\"\n"} -{"Time":"2022-12-07T09:15:42.405883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" ptytest.go:103: 2022-12-07 08:15:42.405: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.405888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" ptytest.go:103: 2022-12-07 08:15:42.405: cmd: stdout: \"\\t$ ssh coder.stoic-hertz3\"\n"} -{"Time":"2022-12-07T09:15:42.406021+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" ptytest.go:80: 2022-12-07 08:15:42.405: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:42.406099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" t.go:81: 2022-12-07 08:15:42.406 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:42.407733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:42.407803+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.407818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.410212+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.410225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.41023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.410 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.410245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.410 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.410274+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.410 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.410317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.410 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.41354+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.41356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.413565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.413 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"242.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0d0bbdc6-14b9-47a9-b2b6-8188780661c1\"}\n"} -{"Time":"2022-12-07T09:15:42.413962+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.413 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"85.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"eccd8874-d386-40bc-8950-aa467ce98136\"}\n"} -{"Time":"2022-12-07T09:15:42.414064+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.414072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.414076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.414 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"893.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b42ce2d0-0087-4818-bde6-b72affcf37a8\"}\n"} -{"Time":"2022-12-07T09:15:42.415462+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.415474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.415479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.041ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"cba942d2-085b-4a7a-9efa-4ad9ec94af10\"}\n"} -{"Time":"2022-12-07T09:15:42.415731+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.41575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.41576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"772.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"215dde21-314d-42eb-9afe-004ad237d35b\"}\n"} -{"Time":"2022-12-07T09:15:42.415911+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.415922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.415927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspacebuilds/9e9e30fa-f760-4987-9e3c-089152338222\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"936.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3e628a1e-6f2e-489d-b317-30f23cc29bed\"}\n"} -{"Time":"2022-12-07T09:15:42.415936+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.415939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.415942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"831.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"79c34c25-5d4d-4655-bea1-4a00c9008e4b\"}\n"} -{"Time":"2022-12-07T09:15:42.416113+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.416123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.416128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"765.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"52c40fab-6b7d-4a33-92df-bc913e8fc0d1\"}\n"} -{"Time":"2022-12-07T09:15:42.416456+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.416467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.416472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/003/.ssh/config\n"} -{"Time":"2022-12-07T09:15:42.416638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:551: Wrote 253\n"} -{"Time":"2022-12-07T09:15:42.416971+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.416978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.416986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.416 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/organizations/06168ee8-4c9a-4b21-b363-4a3c657f0f89/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.068375ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"851d22d4-d771-472d-8d64-3e0b4f26a4a0\"}\n"} -{"Time":"2022-12-07T09:15:42.416994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.416997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.417011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.416 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"747.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1acb1dd7-d02f-4e20-85ed-7b1fff848d95\"}\n"} -{"Time":"2022-12-07T09:15:42.417153+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.417162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.417166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:542: waiting for template version job 2f5b80de-ff1e-40df-991e-f8d21b7d4d82\n"} -{"Time":"2022-12-07T09:15:42.420526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.420535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.42054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.420 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"41.167µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"b4a76632-9556-41ea-afc3-13e7db3166b8\"}\n"} -{"Time":"2022-12-07T09:15:42.420804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.420 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"25.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"59d115a9-19e9-44e3-a672-3f8b4f5ffc04\"}\n"} -{"Time":"2022-12-07T09:15:42.421435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \"\u003e New options differ from previous options:\"\n"} -{"Time":"2022-12-07T09:15:42.421442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.421447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \" New options:\"\n"} -{"Time":"2022-12-07T09:15:42.42145+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \" * ssh-option: ForwardAgent=yes\"\n"} -{"Time":"2022-12-07T09:15:42.421457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.421465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \" Previous options: none\"\n"} -{"Time":"2022-12-07T09:15:42.421473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.421536+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:575: 2022-12-07 08:15:42.421: cmd: matched \"Use new options?\" = \"\u003e New options differ from previous options:\\r\\n\\r\\n New options:\\r\\n * ssh-option: ForwardAgent=yes\\r\\n\\r\\n Previous options: none\\r\\n\\r\\n Use new options?\"\n"} -{"Time":"2022-12-07T09:15:42.421555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:576: 2022-12-07 08:15:42.421: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:42.421608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \" Use new options? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:42.42162+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.421: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.427502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.427586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.42762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.427 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.42765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.427 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.427657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.427 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.427664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.427 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.427669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.427 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.432355+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options"} -{"Time":"2022-12-07T09:15:42.432366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options\n"} -{"Time":"2022-12-07T09:15:42.432369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.432 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.195208ms\", \"status_code\": 200, \"latency_ms\": 11, \"request_id\": \"54248d59-548c-441c-9f81-d7d3f6ae7e40\"}\n"} -{"Time":"2022-12-07T09:15:42.433354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.433 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57625\", \"path\": \"/api/v2/templateversions/b8294ca2-03d5-47ef-9104-5d803df5b95b/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"605.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e3113242-97ab-432a-886c-28873bd4a7c2\"}\n"} -{"Time":"2022-12-07T09:15:42.433586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.433: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} -{"Time":"2022-12-07T09:15:42.433594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.433: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.433597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.433: cmd: stdout: \" * Use new SSH options\"\n"} -{"Time":"2022-12-07T09:15:42.433602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.433: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:42.433673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.433: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.434592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:575: 2022-12-07 08:15:42.434: cmd: matched \"Continue?\" = \" (\\x1b[1myes\\x1b[0m/no) yes\\r\\n\\r\\n\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Use new SSH options\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowPrompt_for_new_options_when_there_are_no_previous_options3907748736/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} -{"Time":"2022-12-07T09:15:42.434623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" configssh_test.go:576: 2022-12-07 08:15:42.434: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:42.434779+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.434: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:42.434786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.434: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.435348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.435: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} -{"Time":"2022-12-07T09:15:42.435363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.435: cmd: stdout: \"For example, try running:\"\n"} -{"Time":"2022-12-07T09:15:42.435368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.435: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.435385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:103: 2022-12-07 08:15:42.435: cmd: stdout: \"\\t$ ssh coder.keen-antonelli3\"\n"} -{"Time":"2022-12-07T09:15:42.435401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" ptytest.go:80: 2022-12-07 08:15:42.435: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:42.435513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" t.go:81: 2022-12-07 08:15:42.435 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:42.43665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:42.436705+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.436711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.437644+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.43765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.437653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.437 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"629.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"95ea2a42-69e1-4dd1-850e-60bba8da5c8d\"}\n"} -{"Time":"2022-12-07T09:15:42.439374+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.439386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.43939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.439 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"121.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5ced7607-5e29-4d3e-8a86-f5a451fe308c\"}\n"} -{"Time":"2022-12-07T09:15:42.439603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.439 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"44.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d619834c-c9dc-4430-b85f-9f6bb96d2091\"}\n"} -{"Time":"2022-12-07T09:15:42.439715+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.439723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.439726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.439 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"506.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9f651811-5fc8-4a1b-878d-0234bd4b37db\"}\n"} -{"Time":"2022-12-07T09:15:42.43983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.439835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.439839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.439 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"560.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ce74afa8-efb8-4fd5-9d8b-cc3a25bf6abb\"}\n"} -{"Time":"2022-12-07T09:15:42.440283+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.440287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.44029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.440 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"469.083µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"879814c3-c3a5-4605-b4c0-a715ef311ca7\"}\n"} -{"Time":"2022-12-07T09:15:42.440331+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.440339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.440342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.440 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"486.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39af7136-c99a-4b97-b10f-d4ee93ebaea6\"}\n"} -{"Time":"2022-12-07T09:15:42.441153+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.441158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.441161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.441 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/organizations/fc89f23a-0974-4a78-aa0b-83c100bc0624/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"672.958µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5af1b1c2-b556-44b2-8b59-eac0182819c6\"}\n"} -{"Time":"2022-12-07T09:15:42.441167+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.441169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.441172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.441 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"460µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1adf028a-f5a3-4f26-a033-85a4b22a813d\"}\n"} -{"Time":"2022-12-07T09:15:42.441257+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.441261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.441263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" configssh_test.go:542: waiting for template version job 6b0b9fdd-18bc-4d6e-9482-3058593efa05\n"} -{"Time":"2022-12-07T09:15:42.443325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.443329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.443332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.443 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"434.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"995d7f9a-ea80-4318-859d-f07c0694cc3f\"}\n"} -{"Time":"2022-12-07T09:15:42.449396+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.449401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.449404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.449 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.449408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.449 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.449435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.449 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.449457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.449 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.449501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.449 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.461215+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.461226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.46123+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.461 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.461386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.461 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.461395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.461 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.463705+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.463711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.463714+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.463 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"638.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e5f1ab45-5c01-4cce-a361-240b4d705299\"}\n"} -{"Time":"2022-12-07T09:15:42.464026+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.464034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.464037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.463 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"433.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bca06b89-faa6-47d3-bc75-8302c97c36cc\"}\n"} -{"Time":"2022-12-07T09:15:42.464067+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.464077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.46408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.464 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"371.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"29d3fe17-b5d3-4070-b4a4-92f5191c2825\"}\n"} -{"Time":"2022-12-07T09:15:42.464614+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.46462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.464634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.464 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b0d5666f-3cc3-47e2-965c-9075b573b225\"}\n"} -{"Time":"2022-12-07T09:15:42.465682+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.465689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.465692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.465 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9e770560-d9f8-4c88-aac4-c6f75bf351df\"}\n"} -{"Time":"2022-12-07T09:15:42.466882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.466887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.46689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.466 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1721955a-0897-48dc-94cd-0117d60d7b1c\"}\n"} -{"Time":"2022-12-07T09:15:42.467669+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.467674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.467677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.467 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"340.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"63848ba0-8a8d-4bab-899b-eb8deeb716fe\"}\n"} -{"Time":"2022-12-07T09:15:42.478698+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.478704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.478706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.478 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.478754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.478 [DEBUG]\t(provisionerd-infallible_williamson4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.478839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.478 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"6f18daac-0769-4acc-98a9-48cf8503287e\"}\n"} -{"Time":"2022-12-07T09:15:42.487721+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.487728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.48773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.487 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f66a8994-8ded-41c8-a5ba-217836e65b65\"}\n"} -{"Time":"2022-12-07T09:15:42.489001+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.489007+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.489011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.488 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"396.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a26f90d-c1a2-4b9e-9bf5-a56ace6497bb\"}\n"} -{"Time":"2022-12-07T09:15:42.489158+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.489166+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.489169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.489 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspacebuilds/4a6dfb9d-ba87-4488-a72d-ec2d75e04cf4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"424.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"156f0af4-02c5-40f0-9390-22c36d101f96\"}\n"} -{"Time":"2022-12-07T09:15:42.489474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/003/.ssh/config\n"} -{"Time":"2022-12-07T09:15:42.4896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:551: Wrote 314\n"} -{"Time":"2022-12-07T09:15:42.489664+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.489668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.489671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.489 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"397.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a36801d8-0993-4716-93eb-ee9e209201aa\"}\n"} -{"Time":"2022-12-07T09:15:42.490684+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.49069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.490694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.490 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7e36c62d-8860-4d8e-9bcd-6bb6fcb1f0e4\"}\n"} -{"Time":"2022-12-07T09:15:42.491859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.49187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.491873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.491 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"388.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"23466e3f-eafc-4726-beb8-c4040407956a\"}\n"} -{"Time":"2022-12-07T09:15:42.492531+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.492542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.492545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.492 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.375µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"9e76e939-319f-4322-ae56-749d1fe483e0\"}\n"} -{"Time":"2022-12-07T09:15:42.492695+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.492706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.49271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.492 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"369.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8d84513-1fdf-4a1d-bc25-471d8d646502\"}\n"} -{"Time":"2022-12-07T09:15:42.492797+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.492806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.49281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.492 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"49891658-89da-450b-8b63-d4b91221e8f4\"}\n"} -{"Time":"2022-12-07T09:15:42.493266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \"\u003e New options differ from previous options:\"\n"} -{"Time":"2022-12-07T09:15:42.493276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.49328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \" New options:\"\n"} -{"Time":"2022-12-07T09:15:42.493283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \" * ssh-option: ForwardAgent=no\"\n"} -{"Time":"2022-12-07T09:15:42.493288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.493291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \" Previous options:\"\n"} -{"Time":"2022-12-07T09:15:42.493293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \" * ssh-option: ForwardAgent=yes\"\n"} -{"Time":"2022-12-07T09:15:42.493296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.493341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:575: 2022-12-07 08:15:42.493: cmd: matched \"Use new options?\" = \"\u003e New options differ from previous options:\\r\\n\\r\\n New options:\\r\\n * ssh-option: ForwardAgent=no\\r\\n\\r\\n Previous options:\\r\\n * ssh-option: ForwardAgent=yes\\r\\n\\r\\n Use new options?\"\n"} -{"Time":"2022-12-07T09:15:42.493346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:576: 2022-12-07 08:15:42.493: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:42.493378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \" Use new options? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:42.493386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.493: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.500385+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.50039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.500394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.500 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.500437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.500 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.500455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.500 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.500476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.500 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.500544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.500 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.501343+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no"} -{"Time":"2022-12-07T09:15:42.501348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no\n"} -{"Time":"2022-12-07T09:15:42.50135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.501 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"8.326958ms\", \"status_code\": 200, \"latency_ms\": 8, \"request_id\": \"58feaf85-434e-40ce-be52-94ed35f0c219\"}\n"} -{"Time":"2022-12-07T09:15:42.501986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.501 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57586\", \"path\": \"/api/v2/templateversions/5b8982e5-1a44-43c8-81ef-0c4d3762103c/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9839c9ef-c48a-485d-8057-3c7c97d3fd6c\"}\n"} -{"Time":"2022-12-07T09:15:42.502089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.502: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} -{"Time":"2022-12-07T09:15:42.502095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.502: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.502097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.502: cmd: stdout: \" * Use new SSH options\"\n"} -{"Time":"2022-12-07T09:15:42.502101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.502: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:42.502108+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.502: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.502164+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:575: 2022-12-07 08:15:42.502: cmd: matched \"Continue?\" = \" (\\x1b[1myes\\x1b[0m/no) yes\\r\\n\\r\\n\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Use new SSH options\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_changes_when_continue_=_no2666824234/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} -{"Time":"2022-12-07T09:15:42.502179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" configssh_test.go:576: 2022-12-07 08:15:42.502: cmd: stdin: \"no\\r\"\n"} -{"Time":"2022-12-07T09:15:42.502207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:103: 2022-12-07 08:15:42.502: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) no\"\n"} -{"Time":"2022-12-07T09:15:42.502328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" ptytest.go:80: 2022-12-07 08:15:42.502: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:42.502367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" t.go:81: 2022-12-07 08:15:42.502 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:42.503488+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:42.503518+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.503523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.512116+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.512124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.512128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.512 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:42.512132+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.512135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.512136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.512 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.512182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.512 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.512188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.512 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.512194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.512 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.512255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.512 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.513642+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.513648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.513651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.513 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a77f891f-8c51-4ab7-a9d6-eeff7ecf4eb1\"}\n"} -{"Time":"2022-12-07T09:15:42.514533+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.514539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.514543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.514 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"470.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5ea24f14-1f7e-4f5b-91a0-369b9bd3553a\"}\n"} -{"Time":"2022-12-07T09:15:42.516321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.516325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.516328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.516 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"397µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"29539695-9a34-4698-af9c-2eaac6b9add5\"}\n"} -{"Time":"2022-12-07T09:15:42.516332+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.516337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.516339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.516 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"410.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bcdf79d0-9b91-4baa-8dce-6c92a9e0a066\"}\n"} -{"Time":"2022-12-07T09:15:42.518579+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.518584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.518586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.518 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61dc9f37-3f67-4138-89a6-33e968db93d2\"}\n"} -{"Time":"2022-12-07T09:15:42.518665+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.518669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.518671+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.518 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"455.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3e5ae6c5-b1ab-4a5d-9671-1fb5da281cff\"}\n"} -{"Time":"2022-12-07T09:15:42.533452+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.533469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.533472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.533538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.533592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:42.533623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.533658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.533673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.533691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"workspace_name\": \"epic-poincare8\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:42.533792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.533799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.533 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.53693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5396bde0-6a9e-4319-ac7f-3440949d1928\"}\n"} -{"Time":"2022-12-07T09:15:42.538722+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.538728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.538731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.538 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:42.538964+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.53897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.538973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f58fb1e-5964-4f8f-b5aa-67e56bd13602\"}\n"} -{"Time":"2022-12-07T09:15:42.539486+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.539491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.539493+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.539 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"269.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e297666a-44db-4f76-948f-7b09e2c282f1\"}\n"} -{"Time":"2022-12-07T09:15:42.54052+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.540526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.54053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.540 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"255.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b2491835-d227-406d-8a44-3181ced0057a\"}\n"} -{"Time":"2022-12-07T09:15:42.541739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.541744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.541746+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.541 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"256.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c7caa147-e509-4172-8fbf-94a0a71bdc25\"}\n"} -{"Time":"2022-12-07T09:15:42.542531+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.542538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.54254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.542 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"233.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"793769f3-1807-454a-b355-600b7ca63b0d\"}\n"} -{"Time":"2022-12-07T09:15:42.551667+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.55168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.551683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.551 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.551703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.551 [DEBUG]\t(provisionerd-youthful_chandrasekhar1)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.551739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.551 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"17f72f15-eb73-407b-89a3-58d77c1051a0\"}\n"} -{"Time":"2022-12-07T09:15:42.551868+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.551882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.551885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.551 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.551943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.551 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.551974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.551 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:42.552006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.551 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_prompt_on_no_changes2701350071/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.552023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.552 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_prompt_on_no_changes2701350071/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.552045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.552 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_prompt_on_no_changes2701350071/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.552061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.552 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"workspace_name\": \"funny-jones7\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:42.552165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.552 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.552169+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.552 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.562651+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.56266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.562662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.562664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.562676+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.562677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.562679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.562681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.562688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.56269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.562691+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.562693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.562694+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:42.562696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.562698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.5627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.562702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.562704+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.562705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.562706+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.562708+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.562709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.56271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.562 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:42.562912+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.56292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.562923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.562 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b47b27bb-8973-414e-b5fe-fda930801839\"}\n"} -{"Time":"2022-12-07T09:15:42.564082+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.564129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.56431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.563 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b0631cb8-5a43-4b61-b683-cdc0abdbc3ca\"}\n"} -{"Time":"2022-12-07T09:15:42.565599+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.565607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.56561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.565 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspacebuilds/11892955-80bc-4026-93ab-8563419ccfb2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"362.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a1a156af-3db6-420e-9aba-cff6b7ae819f\"}\n"} -{"Time":"2022-12-07T09:15:42.566023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run593224590/003/.ssh/config\n"} -{"Time":"2022-12-07T09:15:42.566038+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.56604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.566042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.566 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"73dc5d85-1af1-436c-9348-cf7eb0b1877f\"}\n"} -{"Time":"2022-12-07T09:15:42.566116+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.566171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.566173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" configssh_test.go:551: Wrote 320\n"} -{"Time":"2022-12-07T09:15:42.567356+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.567363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.567365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.567 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7fe7cbc5-b040-42e0-9dbd-9deff3faf817\"}\n"} -{"Time":"2022-12-07T09:15:42.56791+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.567917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.56792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.567 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"286.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f89b836a-adf3-4a7a-aada-124b2555cd28\"}\n"} -{"Time":"2022-12-07T09:15:42.568064+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run"} -{"Time":"2022-12-07T09:15:42.56807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run\n"} -{"Time":"2022-12-07T09:15:42.568072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.567 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.042µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"474869cc-0937-4754-a5f5-79867c557efb\"}\n"} -{"Time":"2022-12-07T09:15:42.568263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.568 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd1647d1-f9d1-44c5-afb6-b9b64af1029b\"}\n"} -{"Time":"2022-12-07T09:15:42.574368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.574 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.596334ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"de5a4055-5b22-4511-a106-26f50e1e5c80\"}\n"} -{"Time":"2022-12-07T09:15:42.575001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.574 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57639\", \"path\": \"/api/v2/templateversions/8f3ad9e4-43ee-4f98-96f6-df2f8f55f9fb/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2aa349fd-6adf-4b1d-9c61-51065107ee8b\"}\n"} -{"Time":"2022-12-07T09:15:42.575198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" ptytest.go:103: 2022-12-07 08:15:42.575: cmd: stdout: \"No changes to make.\"\n"} -{"Time":"2022-12-07T09:15:42.575222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" ptytest.go:80: 2022-12-07 08:15:42.575: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:42.575383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" t.go:81: 2022-12-07 08:15:42.575 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:42.576173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:42.576186+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.57619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.585491+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.585537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.585541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.585 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.585544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.585 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.585546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.585 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.585548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.585 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.587981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"490.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"58af2765-72db-4d5a-8044-597bef732d90\"}\n"} -{"Time":"2022-12-07T09:15:42.589057+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.589226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.589232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.588 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.589237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.589 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.589239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.589 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:42.589241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.589 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.589243+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.589 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.589245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.589 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.589247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.589 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.589284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.589 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:42.590003+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.59002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.590029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"55bcfdc1-9d0b-4d04-90c8-4f9399fa3885\"}\n"} -{"Time":"2022-12-07T09:15:42.591981+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.591992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.591995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.591 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"693.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b92a1077-9ccd-4b80-a95d-d1187e2087c7\"}\n"} -{"Time":"2022-12-07T09:15:42.593322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.593354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.593361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.593 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"411.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"73a6e7c5-4549-47ee-8465-8b7cb963ae3d\"}\n"} -{"Time":"2022-12-07T09:15:42.596027+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.596037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.596041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.594 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.275083ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"7284d44f-afd1-4363-8848-dbc1d80775b5\"}\n"} -{"Time":"2022-12-07T09:15:42.601329+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.601381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.601399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.601 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"226.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"45e4e543-6800-4635-b042-5b9b43851e1f\"}\n"} -{"Time":"2022-12-07T09:15:42.60177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.601 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"134.916µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"83d1b85e-6879-49d2-a5c2-442db3f53bc3\"}\n"} -{"Time":"2022-12-07T09:15:42.602436+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.602467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.60247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.602 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.602473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.602 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.602486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.602 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.602489+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.602491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.602495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.602 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"451.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"aa625701-c321-4e46-a214-8dbc9011eaac\"}\n"} -{"Time":"2022-12-07T09:15:42.602499+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.602501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.602503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.602 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.603257+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.603265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.603268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/organizations/4d994c04-1e5d-4888-b3bb-45b97f28c20e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"539.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e78588c2-112e-4408-8c12-178d7340b2c5\"}\n"} -{"Time":"2022-12-07T09:15:42.603877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.603 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/organizations/4d994c04-1e5d-4888-b3bb-45b97f28c20e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"336.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0c1b6bc4-7d0e-4859-a9ea-0b8ac6f2a411\"}\n"} -{"Time":"2022-12-07T09:15:42.603963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" agent_test.go:49: waiting for template version job 6db1a143-8931-4a94-8942-f46d485850b2\n"} -{"Time":"2022-12-07T09:15:42.609626+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.609635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.609638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.609 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.667µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:42.611894+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.61192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.611927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.611 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ab5f8cb-adde-4481-821a-cc3c09752d89\"}\n"} -{"Time":"2022-12-07T09:15:42.61295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.612963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.612966+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.612 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.612969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.612971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.612973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.612 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.612974+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.612976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.61298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.612 [DEBUG]\t(provisionerd-trusting_allen6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.612987+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.612 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"b92ea7e8-c915-4220-a3dc-aa2c99ff674c\"}\n"} -{"Time":"2022-12-07T09:15:42.613116+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.61312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.613128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.613 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.614183+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.6142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.614202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.614 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspacebuilds/bc2e975a-e24c-447a-a647-946c68dbe98f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"61d8e8ed-77bd-407f-bd82-6e1e287ec842\"}\n"} -{"Time":"2022-12-07T09:15:42.617912+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.617946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.617954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.617 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"534.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8a9ab00-a825-43ba-90d4-1990ca594156\"}\n"} -{"Time":"2022-12-07T09:15:42.618418+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.618472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.618485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.617 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"37.084µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"3020d17c-1c05-4646-b7c9-d1c2aa559ca2\"}\n"} -{"Time":"2022-12-07T09:15:42.619173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.618 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"67.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62829e1a-7a5b-4f6d-ac47-191eab7060d7\"}\n"} -{"Time":"2022-12-07T09:15:42.62099+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.62101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.621017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.619 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.408958ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"eda0d0a2-d777-4eb1-b5f6-89c730b54527\"}\n"} -{"Time":"2022-12-07T09:15:42.621024+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.621028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.621032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.620 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.240167ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"8387d91f-4241-4486-80af-7db4a63bff55\"}\n"} -{"Time":"2022-12-07T09:15:42.630799+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.630812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.630814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.630 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"963.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"31f7c134-4753-47fb-ba39-0a4d1b7080ec\"}\n"} -{"Time":"2022-12-07T09:15:42.631395+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run"} -{"Time":"2022-12-07T09:15:42.631398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run\n"} -{"Time":"2022-12-07T09:15:42.631401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.631 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.068334ms\", \"status_code\": 200, \"latency_ms\": 11, \"request_id\": \"016dcec3-5df5-49bf-8a14-b3013f2a6e2a\"}\n"} -{"Time":"2022-12-07T09:15:42.631996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.631 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57626\", \"path\": \"/api/v2/templateversions/11f9de78-3455-46c5-9d3c-50f44bb061f9/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"368.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c61d558-857a-4b10-874c-2b476631d328\"}\n"} -{"Time":"2022-12-07T09:15:42.632211+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} -{"Time":"2022-12-07T09:15:42.632217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.632219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:42.632222+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.632266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" configssh_test.go:575: 2022-12-07 08:15:42.632: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowDo_not_prompt_for_new_options_on_first_run257912324/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} -{"Time":"2022-12-07T09:15:42.632282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" configssh_test.go:576: 2022-12-07 08:15:42.632: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:42.632376+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:42.632403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.632697+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} -{"Time":"2022-12-07T09:15:42.632702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"For example, try running:\"\n"} -{"Time":"2022-12-07T09:15:42.632705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.632707+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:103: 2022-12-07 08:15:42.632: cmd: stdout: \"\\t$ ssh coder.eager-dhawan0\"\n"} -{"Time":"2022-12-07T09:15:42.632786+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" ptytest.go:80: 2022-12-07 08:15:42.632: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:42.632811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" t.go:81: 2022-12-07 08:15:42.632 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:42.633588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:42.633606+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.633609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.63597+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.635975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.635977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.635 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.636095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.636 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.636115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.636 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.63729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"424.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a36c1c95-5089-4a39-91c5-0bc7e1a4d794\"}\n"} -{"Time":"2022-12-07T09:15:42.637921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.637925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.637927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.637 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"6.959µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:42.639453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.639 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.639543+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.639 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.641048+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.641053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.641056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.641 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"350.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06df2d88-8d87-45a2-a062-b7a7ff0a00ce\"}\n"} -{"Time":"2022-12-07T09:15:42.642052+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.642056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.642058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.642 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"322.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7dce1222-0fd7-4283-9cb7-d1bde20a88d9\"}\n"} -{"Time":"2022-12-07T09:15:42.642954+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.642959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.642961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.642 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4c5f1014-fb05-4d19-8621-0c1484ba9de1\"}\n"} -{"Time":"2022-12-07T09:15:42.653602+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.653612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.653615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.653 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.653713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.653 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.653736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.653 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.655578+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.655584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.655586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.655 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"453.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6adad252-7dde-4329-99aa-828567f54095\"}\n"} -{"Time":"2022-12-07T09:15:42.662329+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.662344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.662348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.662 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"76f93a3d-3343-4c63-8fcb-f2e5d0741a5c\"}\n"} -{"Time":"2022-12-07T09:15:42.66324+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.663245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.663247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.66325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.663252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.663257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.663303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.663352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.663356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.663423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.663433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.663 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.665776+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.665782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.665787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.665 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"286.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20a8bc52-6821-405c-bfe9-7e9123afd2ee\"}\n"} -{"Time":"2022-12-07T09:15:42.666661+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.666665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.666667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.666 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"242.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fe56d3e5-fda0-44f5-9f84-0d58c22b9ad1\"}\n"} -{"Time":"2022-12-07T09:15:42.667713+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.667719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.667721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.667 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"caef2421-e53c-4780-9408-5d87e33fb917\"}\n"} -{"Time":"2022-12-07T09:15:42.680491+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.6805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.680502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.680 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"326.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f3a2e4a1-3489-4f20-b2e8-aba75e4c8db1\"}\n"} -{"Time":"2022-12-07T09:15:42.686888+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.686895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.686897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.686 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.6869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.686 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.686969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.686 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.686982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.686 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.686996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.686 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.687246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.687 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8e1c7bc8-f898-4bc6-99cf-7bb3bd783611\"}\n"} -{"Time":"2022-12-07T09:15:42.68982+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.689825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.689828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.689832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.689856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.689863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.68988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.68989+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.689907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.690006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.689 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.690036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.690 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.690503+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.690508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.69051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.690 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"285.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ac80ffe2-1e09-4a9b-89a4-ef4f73574ea0\"}\n"} -{"Time":"2022-12-07T09:15:42.69177+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.691775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.691778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.691 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"241.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"30d40ac2-ab0e-414d-967e-99e4e5127a9f\"}\n"} -{"Time":"2022-12-07T09:15:42.692653+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.692661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.692664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.692 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2081de90-43a2-48c8-992c-a43e12bdc9c4\"}\n"} -{"Time":"2022-12-07T09:15:42.700078+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.700084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.700086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.700 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:42.704315+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.704319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.704321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.704 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.704324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.704 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.704327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.704 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.70438+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.704 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.70444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.704 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.704604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.704609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.704611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.704 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"246.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"42651648-a172-41ad-830d-6b9a7b1aaeee\"}\n"} -{"Time":"2022-12-07T09:15:42.712318+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.712322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.712324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.712 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"289.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2826acf7-54ee-40e5-8ea4-75f0aac4236b\"}\n"} -{"Time":"2022-12-07T09:15:42.713651+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.713655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.713657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.713 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.713661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.713 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.713679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.713 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.713698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.713 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.71372+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.713 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.713753+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.713 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.715696+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.715702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.71571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.715 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"251.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d860386-b8b7-4275-b42f-b1c4739119dc\"}\n"} -{"Time":"2022-12-07T09:15:42.716734+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.716738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.716743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.716 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"247.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"83372f9d-213d-4f58-aa04-622b58c7ecfe\"}\n"} -{"Time":"2022-12-07T09:15:42.717615+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.71762+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.717627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.717 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"241µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f01cdbdd-0344-4ec5-8179-7329eb491b39\"}\n"} -{"Time":"2022-12-07T09:15:42.730407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.730413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.730414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.730 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"243.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f0385b22-5814-4a4f-afde-1041d4e08e2a\"}\n"} -{"Time":"2022-12-07T09:15:42.737083+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.737088+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.73709+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.737 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.737092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.737 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.737095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.737 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.737097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.737 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.73716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.737 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.737196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.737 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"252.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2fa0949e-f215-4a40-b18f-4413700436c3\"}\n"} -{"Time":"2022-12-07T09:15:42.74047+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.740475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.740477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.740 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.74048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.740 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.740501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.740 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.740527+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.740 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.740551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.740 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.740594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.740 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.740878+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.740885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.740887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.740 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"290.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"acae28fa-0f53-4fc1-8fb8-ce5ce09733ad\"}\n"} -{"Time":"2022-12-07T09:15:42.74165+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.741654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.741656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.741 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"225.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d55e353-fadb-4166-9285-8ad19d76611d\"}\n"} -{"Time":"2022-12-07T09:15:42.742577+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.742586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.742588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.742 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"257.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3180f07c-28c8-4f46-8e5c-af682280c4f6\"}\n"} -{"Time":"2022-12-07T09:15:42.750863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.750872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.750874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.750 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.75093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.750 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.750981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.750 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:42.750997+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.750 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"size_bytes\": 2, \"path\": \"/tmp/TestWorkspaceAgentAzure3749321051/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.751015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.750 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAzure3749321051/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.751034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAzure3749321051/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.751048+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.751 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.751126+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.751 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:42.75304+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.753045+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.753047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.752 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"89.416µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c3868bc8-5303-4635-a48f-43167057ae0d\"}\n"} -{"Time":"2022-12-07T09:15:42.75321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.753 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"34.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"97059173-ce30-4d32-ac91-5e0b16425eaa\"}\n"} -{"Time":"2022-12-07T09:15:42.753764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.753 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"52de64b7-ad90-4cde-a7e6-bd39c18caf6a\"}\n"} -{"Time":"2022-12-07T09:15:42.754314+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.754318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.754319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"267.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"343c057d-b055-4d29-a93b-4ddf588a56e3\"}\n"} -{"Time":"2022-12-07T09:15:42.754376+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.754382+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.754385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/organizations/97761f7a-09ce-4fc6-bf13-d8f709bf737b/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.334µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b19c593e-c9c1-4d8e-b301-e568fa1ff44b\"}\n"} -{"Time":"2022-12-07T09:15:42.754447+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.754452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.754455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.754497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.754511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.754515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.754533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.754848+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.754852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.754853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.754 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/organizations/97761f7a-09ce-4fc6-bf13-d8f709bf737b/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"843b5e37-f84b-4405-8893-30381cad9167\"}\n"} -{"Time":"2022-12-07T09:15:42.754931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" agent_test.go:165: waiting for template version job c861bc99-a807-47cd-8c1d-5a91e0083bac\n"} -{"Time":"2022-12-07T09:15:42.76222+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.762225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.762227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.762 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"253.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd96dc73-8177-4e2d-80d2-6681d3ba9570\"}\n"} -{"Time":"2022-12-07T09:15:42.764002+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.764008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.764011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.763 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.764015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.763 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.764027+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.764 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.76406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.764 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"37b8331e-c58d-41cf-87f7-d492b19c49b0\"}\n"} -{"Time":"2022-12-07T09:15:42.765621+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.765625+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.76563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.765 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"249.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bb32c734-2004-4942-baa7-aa27a5c693d8\"}\n"} -{"Time":"2022-12-07T09:15:42.76666+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.766666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.766668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.766 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"225.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6c039698-f0ea-412b-82f5-b58c90d1091f\"}\n"} -{"Time":"2022-12-07T09:15:42.767556+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.76756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.767562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.767 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"236.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c22b3093-c8c0-4c29-bec4-1312c949ea07\"}\n"} -{"Time":"2022-12-07T09:15:42.768003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.767 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/organizations/06168ee8-4c9a-4b21-b363-4a3c657f0f89/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"243.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d18f2003-05c3-4edd-b1a5-34c54c7d502a\"}\n"} -{"Time":"2022-12-07T09:15:42.768715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.768 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/organizations/06168ee8-4c9a-4b21-b363-4a3c657f0f89/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"520.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a93b21c3-e16b-492f-85b3-32dc16558a15\"}\n"} -{"Time":"2022-12-07T09:15:42.768798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:545: waiting for workspace build job 85d029ff-5d97-4c3c-95a8-207c87a1c47c\n"} -{"Time":"2022-12-07T09:15:42.780341+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.780349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.780352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.780 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"231.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"098359b8-b550-429b-8e45-02c73da883f9\"}\n"} -{"Time":"2022-12-07T09:15:42.780374+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.780377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.780379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.780 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"242.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"09c98ac7-30ea-4193-84dd-1987d259aed1\"}\n"} -{"Time":"2022-12-07T09:15:42.78672+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.786736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.786748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.786 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"785ac4f7-30a5-4bcb-bfe5-101eb5d1869e\"}\n"} -{"Time":"2022-12-07T09:15:42.787249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.787 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.787277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.787 [DEBUG]\t(provisionerd-crazy_lederberg7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.787303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.787 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"02cb739f-cb39-4caf-96a6-93bbece4899a\"}\n"} -{"Time":"2022-12-07T09:15:42.790651+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.790657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.790659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.790 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.790665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.790 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.790684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.790 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.790715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.790 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"4a2c27ab-68f5-40b0-8c6b-dce43a94407a\"}\n"} -{"Time":"2022-12-07T09:15:42.790841+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.790845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.790848+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.790 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"244.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"70f62814-6bae-4099-a655-b64494a41dbe\"}\n"} -{"Time":"2022-12-07T09:15:42.791689+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.791693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.791695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.791 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"240.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cc3262b1-54f5-4120-b1c7-f423a9b0840e\"}\n"} -{"Time":"2022-12-07T09:15:42.792133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.792 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/organizations/fc89f23a-0974-4a78-aa0b-83c100bc0624/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"234.167µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"6556898a-513d-4951-ada0-05a1ffdd4997\"}\n"} -{"Time":"2022-12-07T09:15:42.792837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.792 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/organizations/fc89f23a-0974-4a78-aa0b-83c100bc0624/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"518.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"71e5ce2a-83d8-4296-a461-e0fbde4d5491\"}\n"} -{"Time":"2022-12-07T09:15:42.79292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" configssh_test.go:545: waiting for workspace build job 8915e63c-b5f1-4696-af2e-5d98a797b239\n"} -{"Time":"2022-12-07T09:15:42.794323+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.794328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.794329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.794 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"249.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3e63cff7-33de-40e2-b316-805e4cf3b7e8\"}\n"} -{"Time":"2022-12-07T09:15:42.798825+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.798828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.798831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.798 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"11.875µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:42.801434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.801 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.801566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.801 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.804566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.804 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"241.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a2e50966-e41b-4eb2-8422-73ddd2b2a132\"}\n"} -{"Time":"2022-12-07T09:15:42.804604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.804608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.80461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.804 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.804661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.804 [DEBUG]\t(provisionerd-peaceful_fermi0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.804672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.804 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"1199a97b-4fed-4721-8c36-cbec5e3bfc5c\"}\n"} -{"Time":"2022-12-07T09:15:42.805333+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.805337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.805338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.805 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"232.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7fba2ce-ae34-4cd1-ab5e-decb43041010\"}\n"} -{"Time":"2022-12-07T09:15:42.812128+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.812132+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.812134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.812 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspacebuilds/8fef9fc2-26f3-42b0-991b-ddd3b5fd5a31\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"247.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a231c04-efa0-4487-85a2-575914942664\"}\n"} -{"Time":"2022-12-07T09:15:42.812392+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/003/.ssh/config\n"} -{"Time":"2022-12-07T09:15:42.812445+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" configssh_test.go:551: Wrote 253\n"} -{"Time":"2022-12-07T09:15:42.814299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.814 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"17.708µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"13798336-528f-43da-a771-b68bc99c89ec\"}\n"} -{"Time":"2022-12-07T09:15:42.814615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.814 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"724f9873-645e-4a12-9dcc-47d88ccb0c5b\"}\n"} -{"Time":"2022-12-07T09:15:42.815551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.815558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.81556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.815 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspacebuilds/ea095fba-000b-4854-b219-eb94c97837f9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a91051a-b835-4a8f-b26f-13dcfd119eb3\"}\n"} -{"Time":"2022-12-07T09:15:42.815927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowNo_prompt_on_no_changes2701350071/003/.ssh/config\n"} -{"Time":"2022-12-07T09:15:42.815979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" configssh_test.go:551: Wrote 314\n"} -{"Time":"2022-12-07T09:15:42.817058+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.817063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.817065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.817 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"90.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3761c87c-a2da-432e-99b2-b4d84d1d2ccc\"}\n"} -{"Time":"2022-12-07T09:15:42.817279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.817 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"31.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a61fbbe0-7d65-44ec-9f8d-e26955e8089b\"}\n"} -{"Time":"2022-12-07T09:15:42.81781+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.817815+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.817817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.817 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"fa3b7571-e7ff-4676-9c1e-d2c6fd67cf11\"}\n"} -{"Time":"2022-12-07T09:15:42.81786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.817874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.817876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.817 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"386.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2e6142d3-9176-4289-888b-104c59f349cb\"}\n"} -{"Time":"2022-12-07T09:15:42.81799+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.817998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.818+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.817 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8b72a58c-1956-4b66-b744-07d29c13b495\"}\n"} -{"Time":"2022-12-07T09:15:42.818366+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.818371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.818374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.818 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"286.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7b472ca6-1969-4eaa-8720-8f2b3b9fbbb3\"}\n"} -{"Time":"2022-12-07T09:15:42.818551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.818556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.818558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.818 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/organizations/7b6b98bb-5412-4210-ad57-bfe4b3d6ee8a/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"528.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"990c60c2-5836-4fca-9522-297cb06b440a\"}\n"} -{"Time":"2022-12-07T09:15:42.818974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.818 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/organizations/7b6b98bb-5412-4210-ad57-bfe4b3d6ee8a/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"257.334µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0ba12a72-a3ab-45cd-9ff7-7a4275279324\"}\n"} -{"Time":"2022-12-07T09:15:42.819063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" agent_test.go:107: waiting for template version job 59e1fb14-3ad6-4fd1-8914-f9176610c90d\n"} -{"Time":"2022-12-07T09:15:42.819179+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.819186+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.81919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.819 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"70ce5951-9276-480f-8055-5c96967fda01\"}\n"} -{"Time":"2022-12-07T09:15:42.825766+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.825781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.825797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.825 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"7.495583ms\", \"status_code\": 200, \"latency_ms\": 7, \"request_id\": \"6886b49d-8347-441b-a3c0-2b4a84e749df\"}\n"} -{"Time":"2022-12-07T09:15:42.826324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.826 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57603\", \"path\": \"/api/v2/templateversions/419df21f-d7ea-451b-87a0-38b0a4ee58a5/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"294.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"695af480-836b-414d-ba66-cdb2c4340a2b\"}\n"} -{"Time":"2022-12-07T09:15:42.826453+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" ptytest.go:103: 2022-12-07 08:15:42.826: cmd: stdout: \"No changes to make.\"\n"} -{"Time":"2022-12-07T09:15:42.826463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.826465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.826469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.826 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.556625ms\", \"status_code\": 200, \"latency_ms\": 11, \"request_id\": \"4448672f-2485-4a91-81c9-f8b1fce4311d\"}\n"} -{"Time":"2022-12-07T09:15:42.826568+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.826573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.826575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" ptytest.go:80: 2022-12-07 08:15:42.826: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:42.826632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" t.go:81: 2022-12-07 08:15:42.826 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:42.827072+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.827076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.827078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.827 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57618\", \"path\": \"/api/v2/templateversions/1e244544-c6ca-4df5-82e2-a5fc1edddb3c/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"55efdd31-cb24-4a47-bbe2-9499affd673e\"}\n"} -{"Time":"2022-12-07T09:15:42.827218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} -{"Time":"2022-12-07T09:15:42.827225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.827227+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:42.82723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.827233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" configssh_test.go:575: 2022-12-07 08:15:42.827: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowAdds_newline_at_EOF2258716877/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} -{"Time":"2022-12-07T09:15:42.827238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" configssh_test.go:576: 2022-12-07 08:15:42.827: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:42.827263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:42.827268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.827474+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes"} -{"Time":"2022-12-07T09:15:42.827479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes\n"} -{"Time":"2022-12-07T09:15:42.827481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:42.827505+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:42.82751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:42.827644+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF"} -{"Time":"2022-12-07T09:15:42.827649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF\n"} -{"Time":"2022-12-07T09:15:42.827651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} -{"Time":"2022-12-07T09:15:42.827653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"For example, try running:\"\n"} -{"Time":"2022-12-07T09:15:42.827655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.827659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:103: 2022-12-07 08:15:42.827: cmd: stdout: \"\\t$ ssh coder.epic-poincare8\"\n"} -{"Time":"2022-12-07T09:15:42.827699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" ptytest.go:80: 2022-12-07 08:15:42.827: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:42.827736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" t.go:81: 2022-12-07 08:15:42.827 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:42.82862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:42.828643+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates"} -{"Time":"2022-12-07T09:15:42.828646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":"=== CONT TestTemplateList/NoTemplates\n"} -{"Time":"2022-12-07T09:15:42.829956+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:42.829963+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:42.829965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"99.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3ce1395d-7811-4874-9d06-7bd748b4bb54\"}\n"} -{"Time":"2022-12-07T09:15:42.830182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"48.459µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"66659d07-8308-4e72-9826-fdf9c7ba7c1b\"}\n"} -{"Time":"2022-12-07T09:15:42.830248+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.830253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.830267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"382.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7187c8b8-f649-445c-95b3-0ce72e1d320e\"}\n"} -{"Time":"2022-12-07T09:15:42.830682+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates"} -{"Time":"2022-12-07T09:15:42.830687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":"=== CONT TestTemplateList/NoTemplates\n"} -{"Time":"2022-12-07T09:15:42.830689+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" t.go:81: 2022-12-07 08:15:42.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57739\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"83.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f77823e4-8a12-46ee-8f86-f257657bd8a9\"}\n"} -{"Time":"2022-12-07T09:15:42.830795+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:42.830799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:42.830802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"398.292µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2a985a23-9dc1-492c-98b8-43691ae6f50a\"}\n"} -{"Time":"2022-12-07T09:15:42.830866+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates"} -{"Time":"2022-12-07T09:15:42.830874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":"=== CONT TestTemplateList/NoTemplates\n"} -{"Time":"2022-12-07T09:15:42.830876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" t.go:81: 2022-12-07 08:15:42.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57739\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"39.833µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"da819d97-ce27-421e-a05a-2b6fa19675d9\"}\n"} -{"Time":"2022-12-07T09:15:42.830999+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.831003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.831006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.830 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"430.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d625a2f0-5a21-4900-bfd6-de9bc5983fb9\"}\n"} -{"Time":"2022-12-07T09:15:42.831455+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:42.831459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:42.831461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.831 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/organizations/4c078594-ccaa-40a8-87cf-c5e6d3ec3a86/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"491.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"825e71e6-1d66-44bd-bedf-48a4fc1b5236\"}\n"} -{"Time":"2022-12-07T09:15:42.831531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" templatelist_test.go:21: waiting for template version job efc83f98-7732-4302-8631-7ece953e32b7\n"} -{"Time":"2022-12-07T09:15:42.832729+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates"} -{"Time":"2022-12-07T09:15:42.832736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":"=== CONT TestTemplateList/NoTemplates\n"} -{"Time":"2022-12-07T09:15:42.832738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" t.go:81: 2022-12-07 08:15:42.832 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57739\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.625µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"ae1e76b9-d7d3-4dc7-8e5c-7b7b07159ee2\"}\n"} -{"Time":"2022-12-07T09:15:42.832908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" t.go:81: 2022-12-07 08:15:42.832 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57739\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e30f6168-ab50-4858-b8c9-eea1e1de2ddb\"}\n"} -{"Time":"2022-12-07T09:15:42.833457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" t.go:81: 2022-12-07 08:15:42.833 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57739\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.209µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"93a61fcf-0885-4040-84df-3cc51271eaf3\"}\n"} -{"Time":"2022-12-07T09:15:42.838721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" t.go:81: 2022-12-07 08:15:42.838 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57739\", \"path\": \"/api/v2/organizations/fec7c9b1-6e92-4439-b608-dc06581244d6/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.080166ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"13f7b402-241b-4742-920b-507127443cdd\"}\n"} -{"Time":"2022-12-07T09:15:42.838847+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" ptytest.go:103: 2022-12-07 08:15:42.838: cmd: stdout: \"\u003e No templates found in testuser! Create one:\"\n"} -{"Time":"2022-12-07T09:15:42.838853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" ptytest.go:103: 2022-12-07 08:15:42.838: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.838855+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" ptytest.go:103: 2022-12-07 08:15:42.838: cmd: stdout: \" $ coder templates create \u003cdirectory\u003e\"\n"} -{"Time":"2022-12-07T09:15:42.838858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" ptytest.go:103: 2022-12-07 08:15:42.838: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:42.838861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" templatelist_test.go:69: 2022-12-07 08:15:42.838: cmd: matched \"No templates found in\" = \"\u003e No templates found in\"\n"} -{"Time":"2022-12-07T09:15:42.838876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" templatelist_test.go:70: 2022-12-07 08:15:42.838: cmd: matched \"testuser\" = \" testuser\"\n"} -{"Time":"2022-12-07T09:15:42.838882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" templatelist_test.go:71: 2022-12-07 08:15:42.838: cmd: matched \"Create one:\" = \"! Create one:\"\n"} -{"Time":"2022-12-07T09:15:42.83892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" ptytest.go:80: 2022-12-07 08:15:42.838: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:42.83942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:42.839446+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName"} -{"Time":"2022-12-07T09:15:42.839449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName","Output":"=== CONT TestTemplatePull/NoName\n"} -{"Time":"2022-12-07T09:15:42.840921+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:42.840924+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:42.843386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.843 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"90.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"2fc4412d-ef37-4bbe-b633-5409a2f6a67d\"}\n"} -{"Time":"2022-12-07T09:15:42.843564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.843 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"38.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"96329a4c-7ed9-4f6d-8c44-a7efb963e170\"}\n"} -{"Time":"2022-12-07T09:15:42.843914+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.843921+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.843923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.843 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"420.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7bdc648d-e2d4-4032-a1bb-e200a51692f9\"}\n"} -{"Time":"2022-12-07T09:15:42.844161+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:42.844168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:42.84417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.844 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.042µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"586d67ec-043e-460f-8e4e-878d4e7a9119\"}\n"} -{"Time":"2022-12-07T09:15:42.844777+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.844783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.844794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.844 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cf5a2211-5ac1-4677-b5bc-a187595d0001\"}\n"} -{"Time":"2022-12-07T09:15:42.84483+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:42.844836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:42.844838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.844 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/organizations/9ef329ad-0fb4-4e8a-8035-89acd959e76f/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"518.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bd3ac57a-da93-4c03-8588-90b4f0bbe1a6\"}\n"} -{"Time":"2022-12-07T09:15:42.844893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" templatepull_test.go:86: waiting for template version job ec38815c-e23c-412f-909d-d06f50e631a6\n"} -{"Time":"2022-12-07T09:15:42.84495+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.844953+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.844955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.844 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"340.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e1dac23d-6e6a-405e-b93a-c4cd72e5f361\"}\n"} -{"Time":"2022-12-07T09:15:42.85243+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.85244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.852443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.852447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.852478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.852488+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.852497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.852501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:42.852506+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.852508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.852513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.852569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.852591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.852609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.852782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.852807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.852 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.855456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.855 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"821dbe71-529c-4ec3-a19e-55c13b64fd29\"}\n"} -{"Time":"2022-12-07T09:15:42.855862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.855867+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.855869+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.855 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"338.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f2b01b55-8af7-427d-9058-84929f5e7b32\"}\n"} -{"Time":"2022-12-07T09:15:42.857688+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:42.857691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:42.857693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.857 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"329.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bd80feff-9f04-4c57-87c7-08702ed78ae8\"}\n"} -{"Time":"2022-12-07T09:15:42.869301+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.869309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.869312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.869 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cb1398db-ff7e-47ef-9888-6d293c9cce17\"}\n"} -{"Time":"2022-12-07T09:15:42.86932+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.869322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.869326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.869 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"346.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"963a3a7e-56af-4a84-864a-6cac07245f1c\"}\n"} -{"Time":"2022-12-07T09:15:42.869467+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.869478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.869481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.869 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"247.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ab28da2e-25e9-4e2e-be11-194db638d97e\"}\n"} -{"Time":"2022-12-07T09:15:42.870353+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:42.870358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:42.870361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.870 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"271.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33cc5f2e-54dd-4a5c-98a6-cda2a3776db0\"}\n"} -{"Time":"2022-12-07T09:15:42.880446+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.880458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.880461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4cfc9b26-7bc8-4a1a-8aff-8d950d19309e\"}\n"} -{"Time":"2022-12-07T09:15:42.880466+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.880467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.88047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.880 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4ddfe51a-a176-4716-98e8-acfece2e9b02\"}\n"} -{"Time":"2022-12-07T09:15:42.882108+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:42.882113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:42.882115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.882 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d8f5ed8a-e7a5-42a8-b109-ac6b8dc4b6a9\"}\n"} -{"Time":"2022-12-07T09:15:42.894283+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.894292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.894295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.894 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"494.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"096e4dc0-df62-4041-a13a-7efb0ea73a16\"}\n"} -{"Time":"2022-12-07T09:15:42.894392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.894402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.894404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.894 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"361.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c60e93bb-b5ff-4455-9113-eb8c0c7f42f3\"}\n"} -{"Time":"2022-12-07T09:15:42.894555+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.894567+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.894569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.894 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"348.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f58a25b-47d0-4e8a-854e-5a1db5ccec40\"}\n"} -{"Time":"2022-12-07T09:15:42.895453+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:42.89546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:42.895465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.895 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"340.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5935c835-e0f7-4dc0-8fe1-955a5d08957d\"}\n"} -{"Time":"2022-12-07T09:15:42.903348+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.903359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.903363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:42.903369+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.903371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.903373+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.903409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.903423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:42.903444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.903475+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.903479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.903481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:42.903486+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.903487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.90349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.903553+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.90356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.903563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:42.903578+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.903581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.903584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.903588+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.90359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.903596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"size_bytes\": 2, \"path\": \"/tmp/TestWorkspaceAgentGoogleCloud3993542410/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.903623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentGoogleCloud3993542410/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.903648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentGoogleCloud3993542410/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.903666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:42.903764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.903 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:42.904567+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.904571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.904573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.904 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"388.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f21aa0b2-57e5-458e-8084-f34f31e649c3\"}\n"} -{"Time":"2022-12-07T09:15:42.905411+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.905416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.905418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.905 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"81379658-486d-47ed-84ae-9875e752bf7f\"}\n"} -{"Time":"2022-12-07T09:15:42.907189+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:42.907193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:42.907195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.907 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"336.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1108ed79-524f-41a2-b2fa-e15cda599983\"}\n"} -{"Time":"2022-12-07T09:15:42.916945+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.916969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.916973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.916 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:42.916978+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:42.91698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:42.916983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.916 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} -{"Time":"2022-12-07T09:15:42.917099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} -{"Time":"2022-12-07T09:15:42.917133+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:42.91718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.917194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.91722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.917244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/3166569989.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.917266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} -{"Time":"2022-12-07T09:15:42.917383+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.917 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} -{"Time":"2022-12-07T09:15:42.918679+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.918685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.918688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.918 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e1df3fd9-cfca-4bfe-991e-23123782d8b6\"}\n"} -{"Time":"2022-12-07T09:15:42.919302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.919308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.919311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.919 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"332.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40057a66-1c8b-43a1-8653-267a6ca51eef\"}\n"} -{"Time":"2022-12-07T09:15:42.919576+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.919585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.919587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.919 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"336.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"56bf3c1d-1f09-4760-933f-ff6b2a9f7ba7\"}\n"} -{"Time":"2022-12-07T09:15:42.920353+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:42.920359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:42.920361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.920 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"287.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"065ea00b-067b-4469-a3e4-490dcb46fced\"}\n"} -{"Time":"2022-12-07T09:15:42.929214+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:42.929218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:42.929221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.929 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:42.929735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.929742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.929745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.929 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"389.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"341d9173-abab-4111-b8ba-d5879d03ddb3\"}\n"} -{"Time":"2022-12-07T09:15:42.930414+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.93042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.930422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.930 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"332.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5da5b51c-3b08-4e22-b614-9e9b87b27c2a\"}\n"} -{"Time":"2022-12-07T09:15:42.932229+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:42.932233+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:42.932235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"374.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c81ac86b-af93-4546-b7cb-bd199bb8f54e\"}\n"} -{"Time":"2022-12-07T09:15:42.942848+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:42.942853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:42.942856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.942 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:42.943498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.943506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.943509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.943 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0e50c886-ac85-4b47-98ae-22fa658b6e2c\"}\n"} -{"Time":"2022-12-07T09:15:42.944401+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.944406+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.944409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.944 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d3a9e42a-0bba-4197-a8c7-2c07cf400d9c\"}\n"} -{"Time":"2022-12-07T09:15:42.944555+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.94456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.944564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.944 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1ba4067-0cf0-4573-a87d-15337ff0b32b\"}\n"} -{"Time":"2022-12-07T09:15:42.945431+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:42.945437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:42.945439+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.945 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a2a65f82-1b07-42d6-b1da-6db93a490387\"}\n"} -{"Time":"2022-12-07T09:15:42.952252+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.952262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.952265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.952 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"22.083µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:42.953893+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.953901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.953905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.953 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.953911+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.953914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.953918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.953 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:42.953928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.953929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.953932+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.953 [INFO]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"resource_name\": \"somename\", \"resource_type\": \"someinstance\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:42.954032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.953 [INFO]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\", \"resource_name\": \"somename\", \"resource_type\": \"someinstance\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:42.95404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.953 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.954046+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.953 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.954075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.954 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"3b8673ce-30cb-4f1d-a2cc-441f6e889298\"}\n"} -{"Time":"2022-12-07T09:15:42.9541+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.954105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.954109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.954 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:42.954557+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.954565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.954569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.954 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/templateversions/6db1a143-8931-4a94-8942-f46d485850b2\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"404.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e284109a-0e37-4fd4-9a53-ae41f0b52fc4\"}\n"} -{"Time":"2022-12-07T09:15:42.955546+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.955554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.955558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.955 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"451.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"14804abf-ba82-4bc4-8a02-472702db9b61\"}\n"} -{"Time":"2022-12-07T09:15:42.955784+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.955789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.955792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.955 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/organizations/4d994c04-1e5d-4888-b3bb-45b97f28c20e/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"934.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ef60debe-7aab-4cd2-b006-06d3d3c3a8ca\"}\n"} -{"Time":"2022-12-07T09:15:42.9559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" agent_test.go:51: waiting for workspace build job ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\n"} -{"Time":"2022-12-07T09:15:42.957207+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:42.957212+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:42.957215+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.957 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d4db973f-3293-4b5e-9ca0-7763da849663\"}\n"} -{"Time":"2022-12-07T09:15:42.968144+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.968156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.968159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:42.968167+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:42.968171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:42.968174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} -{"Time":"2022-12-07T09:15:42.968276+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.968284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.96829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:42.968295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:42.968298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:42.9683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} -{"Time":"2022-12-07T09:15:42.968328+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.968336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.968339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:42.968391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"size_bytes\": 2, \"path\": \"/tmp/TestWorkspaceAgentAWS3412012430/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.968416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAWS3412012430/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.968452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAWS3412012430/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.968493+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:42.968603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.968 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:42.968717+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.968725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.968729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.968 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2090a947-5bab-42f9-937c-9f265a99b5fb\"}\n"} -{"Time":"2022-12-07T09:15:42.96944+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.969447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.969451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.969 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bb266257-6dcc-4fdf-b229-392fc629c7a5\"}\n"} -{"Time":"2022-12-07T09:15:42.969653+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.969661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.969664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.969 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"414.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"26b0e81d-e642-49aa-bd70-9f60c32aeee8\"}\n"} -{"Time":"2022-12-07T09:15:42.970551+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:42.970556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:42.970559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.970 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"840b1f96-cb39-44ba-a603-de7535eb27ce\"}\n"} -{"Time":"2022-12-07T09:15:42.979425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:42.979432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:42.979435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:42.979517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:42.979587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:42.97961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateListListTemplates3295948017/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.979651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateListListTemplates3295948017/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.979696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateListListTemplates3295948017/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.97971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:42.979838+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.979 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:42.980598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:42.980606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:42.980609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:42.980 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"418.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"29e8f358-56fe-48ff-b6c2-c09aa96d5a9f\"}\n"} -{"Time":"2022-12-07T09:15:42.981548+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:42.981553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:42.981556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:42.981 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"452.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1e2e5fa1-ce1a-4765-8f09-0f7404461df0\"}\n"} -{"Time":"2022-12-07T09:15:42.982165+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:42.982173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:42.982192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:42.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"431.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"694cc33c-40a6-4165-9dbd-f58db1af0f50\"}\n"} -{"Time":"2022-12-07T09:15:42.993337+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:42.993348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:42.993352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:42.993487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:42.993538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"size_bytes\": 4096}\n"} -{"Time":"2022-12-07T09:15:42.993608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"size_bytes\": 40, \"path\": \"/tmp/TestTemplatePullToFile3821239648/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.993667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePullToFile3821239648/002/1.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.993708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePullToFile3821239648/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.993761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePullToFile3821239648/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:42.993789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:42.993988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:622\u003e\t(*Runner).runTemplateImportParse\tparse job logged\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"level\": \"TRACE\", \"output\": \"c7c8306b-331a-4111-b67f-6b8fface30c4\"}\n"} -{"Time":"2022-12-07T09:15:42.99403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.993 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:42.994215+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:42.994225+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:42.994229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:42.994 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"719.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a7988d31-d4ff-4b33-83fe-1c2a3ecb778f\"}\n"} -{"Time":"2022-12-07T09:15:42.994595+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:42.994607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:42.994611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:42.994 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"560.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a38d2cb3-8a78-4733-9647-e4a676f9506d\"}\n"} -{"Time":"2022-12-07T09:15:42.994878+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:42.994888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:42.994896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:42.994 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"553.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f04ac4ac-93c9-4a17-823f-285d91896b84\"}\n"} -{"Time":"2022-12-07T09:15:42.995632+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:42.99564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:42.995647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:42.995 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"509µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fd0fe3df-90ca-4392-ac60-8eec563de985\"}\n"} -{"Time":"2022-12-07T09:15:43.005184+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.005192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.005196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:43.005202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.005272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.005282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.005294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.005338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:43.005358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:43.005632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.005675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:43.005741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.005 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"545.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"535e24ab-756c-49cf-8df4-3a6405125852\"}\n"} -{"Time":"2022-12-07T09:15:43.006618+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.006636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.006639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.006 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"501.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bc10cfb7-89fa-41a9-be65-26e1c367618b\"}\n"} -{"Time":"2022-12-07T09:15:43.007233+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.007241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.007244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.007 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"481.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4768e8e9-db35-4d18-a8c6-333ca7d190cc\"}\n"} -{"Time":"2022-12-07T09:15:43.01607+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.016077+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.016081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.016 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"33.083µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:43.018402+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.018411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.018416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} -{"Time":"2022-12-07T09:15:43.018426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.018471+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.018518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.018532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.018575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} -{"Time":"2022-12-07T09:15:43.0187+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} -{"Time":"2022-12-07T09:15:43.018716+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:43.018722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:43.018811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:43.018821+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:43.018827+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.018831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.018835+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:43.018876+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.018879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.018883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"request_id\": \"041e3f9a-592d-4b53-aa7c-4e6513dcd54d\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:43.019015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"request_id\": \"041e3f9a-592d-4b53-aa7c-4e6513dcd54d\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:43.019032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.019055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.01906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.018 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"607.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f9c0df8-ae2b-4e2b-9bce-85065fac0672\"}\n"} -{"Time":"2022-12-07T09:15:43.019244+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.019267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.019272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.019 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.019278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.019281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.019285+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"request_id\": \"041e3f9a-592d-4b53-aa7c-4e6513dcd54d\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:43.019385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\", \"request_id\": \"041e3f9a-592d-4b53-aa7c-4e6513dcd54d\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:43.019699+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.019713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.019719+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"627.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"30e2fdeb-5789-4906-af10-3644112009a1\"}\n"} -{"Time":"2022-12-07T09:15:43.019932+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.01994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.019944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.019 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"582.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3b2ed9e4-c940-48a9-aa81-bf3643ee4448\"}\n"} -{"Time":"2022-12-07T09:15:43.020782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.020792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.020796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.020 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"583.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c969bad-02de-4cb4-9f93-49b2e30208cc\"}\n"} -{"Time":"2022-12-07T09:15:43.02942+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.029428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.029431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.029 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"8.875µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:43.029977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.029 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:43.030198+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.030 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.030755+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.030764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.030769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.030 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"579.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b0f837de-e1b1-48c8-9512-839117ac7520\"}\n"} -{"Time":"2022-12-07T09:15:43.031716+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.031724+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.031728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.031 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"580.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8b48258b-0670-49dc-84d5-f9dc7b1a8e13\"}\n"} -{"Time":"2022-12-07T09:15:43.032459+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.032473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.032477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"610.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f3c3083d-c9da-4420-9d07-d4a7455d4182\"}\n"} -{"Time":"2022-12-07T09:15:43.042924+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.042934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.042939+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.042 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"10.541µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:43.044054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.044065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.044071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.043 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"736.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"33818db9-0a2c-4c02-8101-9cc404d45a90\"}\n"} -{"Time":"2022-12-07T09:15:43.044251+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.044257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.044262+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.04451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.044524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.044529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:43.044537+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.044541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.044545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.044 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.044555+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.044 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:43.044675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"size_bytes\": 2, \"path\": \"/tmp/TestWorkspaceAgentAzure3749321051/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.044752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAzure3749321051/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.044768+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.044774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.044778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.044 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.044787+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.044792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.044796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAzure3749321051/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.044845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"workspace_name\": \"blissful-tu6\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:43.044983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.044994+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.044999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"840.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5320cf4e-85f2-43f0-8318-880743f21d6e\"}\n"} -{"Time":"2022-12-07T09:15:43.045064+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.045073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.045113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.044 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"742.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eff7d965-9312-45bd-bfc4-f99d4890ce92\"}\n"} -{"Time":"2022-12-07T09:15:43.04512+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.045124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.045128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.045 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.045178+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.045 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.045862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.045876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.045881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.045 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"683.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"964c7b38-9408-46a9-a352-be3665b00dc6\"}\n"} -{"Time":"2022-12-07T09:15:43.056152+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.056163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.056167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.056 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:43.056246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.056 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.056319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.056 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.056344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.056 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:43.056353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.056 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:43.056525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.056 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:43.058725+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.058827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.058836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.079625ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e8d4805e-7e16-45f6-97aa-d2149efb5341\"}\n"} -{"Time":"2022-12-07T09:15:43.058845+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.058849+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.058853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.559583ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"4690ba7c-273e-43d6-bfbe-9dd7af48de4c\"}\n"} -{"Time":"2022-12-07T09:15:43.059914+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.05993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.059938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.059 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"2.941084ms\", \"status_code\": 200, \"latency_ms\": 2, \"request_id\": \"7a9c64dd-82bd-443a-aac4-a764bc28f172\"}\n"} -{"Time":"2022-12-07T09:15:43.069621+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.069644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.06965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.069 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:43.069912+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.069929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.069934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.069 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} -{"Time":"2022-12-07T09:15:43.06994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.069944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.069947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.069 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.070234+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.070244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.070628+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.069 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:186\u003e\t(*Runner).Run\tsending FailedJob\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} -{"Time":"2022-12-07T09:15:43.07064+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.070644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.070649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.069 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.070695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.070 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.070729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.070 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.070759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.070 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:43.070903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.070 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:43.071241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.071 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.071339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.071 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:43.071386+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.071396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.071401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.627667ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b52978e8-e84c-45cf-b4e2-049d42e24858\"}\n"} -{"Time":"2022-12-07T09:15:43.071409+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.071413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.071418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.409709ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"8b9dcbff-8f35-4c3e-ab0d-0d10752376c5\"}\n"} -{"Time":"2022-12-07T09:15:43.071427+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.071431+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.071434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"928.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"41d0d02f-5971-4b7c-aa59-8948ba66a103\"}\n"} -{"Time":"2022-12-07T09:15:43.071461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.071466+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.07147+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.071 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.680209ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"36a2bf51-0801-4349-97ac-e17efbaa630b\"}\n"} -{"Time":"2022-12-07T09:15:43.081185+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.081195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.0812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:43.081207+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.081253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.081294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.081332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.081359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:43.081387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:43.081615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.081663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:43.081883+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.081893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.081904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"701.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ddcfa25-fe15-4d1d-ae32-c723fb27e441\"}\n"} -{"Time":"2022-12-07T09:15:43.081974+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.081981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.08199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.081 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"755.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ec7db2fe-de87-4aa9-b950-17cf85d4e134\"}\n"} -{"Time":"2022-12-07T09:15:43.082355+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.082364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.082368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.082 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"591.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8f92a5fa-4331-444a-8824-b3a6afe07f0e\"}\n"} -{"Time":"2022-12-07T09:15:43.094346+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.094363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.094369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"588.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"73a1e2ef-db39-40c9-a718-0f34a7a95596\"}\n"} -{"Time":"2022-12-07T09:15:43.09468+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.09469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.094696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"615.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"56bfd724-346b-4c08-9669-1ab18d35c99f\"}\n"} -{"Time":"2022-12-07T09:15:43.094705+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.094712+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.094715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:43.094761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.094782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.094851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.094864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"stage\": \"Parse parameters\", \"output\": \"c7c8306b-331a-4111-b67f-6b8fface30c4\"}\n"} -{"Time":"2022-12-07T09:15:43.094894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.094958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:43.094995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:43.09508+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.095092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.095097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.094 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"691.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ac1a528-d32c-4223-831f-42aab39feedd\"}\n"} -{"Time":"2022-12-07T09:15:43.095235+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.095245+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.09525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.095 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.095259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.095 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:43.09535+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.095359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.095364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.095 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.095375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.095 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.095409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.095 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.095447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.095 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.095915+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.095926+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.09593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.095 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"722.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a177c4d-4f95-4583-ab55-9b8fd4176b04\"}\n"} -{"Time":"2022-12-07T09:15:43.105333+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.10535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.105355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/909b64ca-55ab-4c74-9114-5d967924ba50\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"903.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4b0a3373-4f17-4be2-8910-df46e1e54c92\"}\n"} -{"Time":"2022-12-07T09:15:43.105899+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.105908+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.105914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.105 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"662.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0f9d9563-34a9-4e2a-9ae6-667333837868\"}\n"} -{"Time":"2022-12-07T09:15:43.106655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.106 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:43.10674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.106 [INFO]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"resource_name\": \"somename\", \"resource_type\": \"someinstance\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:43.106755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.106 [INFO]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\", \"resource_name\": \"somename\", \"resource_type\": \"someinstance\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:43.10684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.106 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:43.106851+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.106856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.106868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.106 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"715µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b24d6a04-69e6-4d25-90b7-3d215b160310\"}\n"} -{"Time":"2022-12-07T09:15:43.10691+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.10692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.106925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.106 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:43.10699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.106 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"29528686-90b3-49d5-aa77-f85746d5f282\"}\n"} -{"Time":"2022-12-07T09:15:43.107525+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.107537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.107542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.107 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"717.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c229970-ba1a-4269-8f57-9b9ab2ffafeb\"}\n"} -{"Time":"2022-12-07T09:15:43.119979+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.120006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.120013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.119 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"963.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"46b37f11-58be-41a9-8afe-74a6008abb9f\"}\n"} -{"Time":"2022-12-07T09:15:43.120021+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.120025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.120029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.119 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"687.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57b84223-395b-46fd-86c7-9f18cf04f668\"}\n"} -{"Time":"2022-12-07T09:15:43.120832+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.120845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.12085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.120 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"696.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"14933d5d-f40a-4d83-9ef8-c7b074826e27\"}\n"} -{"Time":"2022-12-07T09:15:43.121408+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.121415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.12142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:470\u003e\t(*Server).FailJob\tFailJob starting\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} -{"Time":"2022-12-07T09:15:43.121425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.121428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.121432+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"642.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d8598951-e3fa-42ff-8e2f-b22400827abb\"}\n"} -{"Time":"2022-12-07T09:15:43.121444+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.121447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.121451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} -{"Time":"2022-12-07T09:15:43.121455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.121 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:191\u003e\t(*Runner).Run\tsent FailedJob\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} -{"Time":"2022-12-07T09:15:43.121459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"655fa245-39bc-4fec-aa19-0dd924f05271\"}\n"} -{"Time":"2022-12-07T09:15:43.122282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/909b64ca-55ab-4c74-9114-5d967924ba50/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.020559709s\", \"status_code\": 101, \"latency_ms\": 1020, \"request_id\": \"041e3f9a-592d-4b53-aa7c-4e6513dcd54d\"}\n"} -{"Time":"2022-12-07T09:15:43.122296+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.122299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.122303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:43.122308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.122313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.122318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:43.122322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:43.122327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.121 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:43.122419+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.122428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.122434+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.122 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/909b64ca-55ab-4c74-9114-5d967924ba50\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"704.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1be4fdb3-9658-4b2d-bb1b-854bd72d0fc1\"}\n"} -{"Time":"2022-12-07T09:15:43.123485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.123 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/909b64ca-55ab-4c74-9114-5d967924ba50\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"707.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5c51a2e3-ddb5-4e57-a6df-4c1a5acad55f\"}\n"} -{"Time":"2022-12-07T09:15:43.124531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.124 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/909b64ca-55ab-4c74-9114-5d967924ba50/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"714.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9a22df0a-8346-4a6a-bcb5-ca7db07bccdd\"}\n"} -{"Time":"2022-12-07T09:15:43.125489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.125 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/909b64ca-55ab-4c74-9114-5d967924ba50/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eaba0669-866a-4fe5-ad49-c80fe7adef09\"}\n"} -{"Time":"2022-12-07T09:15:43.126391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.126 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f239cea3-2326-4017-ac80-5595be6a4421\"}\n"} -{"Time":"2022-12-07T09:15:43.127311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.127 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"614.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"67e98185-41e5-4980-88d1-3db8efeb7f31\"}\n"} -{"Time":"2022-12-07T09:15:43.128961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.128 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.26325ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"c4f3d373-fcd7-4ee9-a381-42a9d0f363aa\"}\n"} -{"Time":"2022-12-07T09:15:43.129978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.129 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"620.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"944f7a16-3ec5-45f0-a8fa-900ad82246c1\"}\n"} -{"Time":"2022-12-07T09:15:43.130772+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.13078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.130793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.130 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/templateversions/c861bc99-a807-47cd-8c1d-5a91e0083bac\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"564.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"be26f17e-d18e-475a-8c88-59dd568166be\"}\n"} -{"Time":"2022-12-07T09:15:43.131787+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.131796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.131799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.131 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:43.131806+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.131817+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.131822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.131 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"568.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ecc415cb-b6f6-4ce9-a0be-0221697c5760\"}\n"} -{"Time":"2022-12-07T09:15:43.131829+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.131834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.131837+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.131 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.131904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.131 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.131927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.131 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:43.131986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.131 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:43.132028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.131 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:43.132425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.132 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"657.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0eb0ae8d-aaee-4da9-8419-6f37e0c8400a\"}\n"} -{"Time":"2022-12-07T09:15:43.132439+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.132444+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.132449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.132 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/organizations/97761f7a-09ce-4fc6-bf13-d8f709bf737b/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.229625ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"8ef7cbb8-9f5a-4d81-bd55-06489456b131\"}\n"} -{"Time":"2022-12-07T09:15:43.132573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" agent_test.go:167: waiting for workspace build job 0a2be663-5a42-4d36-8892-5f3a44d53efc\n"} -{"Time":"2022-12-07T09:15:43.144978+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.144995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.145019+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.144 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"677.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8039c7a8-8283-4298-bff1-14f2740e2f37\"}\n"} -{"Time":"2022-12-07T09:15:43.145071+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.14508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.145091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.144 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"683.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f3adffb7-33f7-416b-9349-d6eca84a35db\"}\n"} -{"Time":"2022-12-07T09:15:43.1451+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.145105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.14511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.144 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"697.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c1641e9-8a4f-4b76-819e-841f2182bf15\"}\n"} -{"Time":"2022-12-07T09:15:43.145463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.145473+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.145478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:43.14549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.145539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.145589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:43.145653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:43.145712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.145723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.145729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.145744+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.145748+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.145752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:43.145937+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.14595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.145957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.145966+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.145972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.145976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.145 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"671.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2466a378-915e-4f1f-89fe-51b2da01f164\"}\n"} -{"Time":"2022-12-07T09:15:43.145986+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.145991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.145995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.145 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.15789+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.157903+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.157907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.157 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"649.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6ac9d7ab-2b4f-4865-b087-73a25c55eeb0\"}\n"} -{"Time":"2022-12-07T09:15:43.157969+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.157976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.15798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.157 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"696.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7b85192-11f6-4d91-b247-dbc7aa793f2e\"}\n"} -{"Time":"2022-12-07T09:15:43.15863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.158643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.158648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.158 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"719.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f5cd0004-764a-433c-b193-b71e998e3048\"}\n"} -{"Time":"2022-12-07T09:15:43.167649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.16769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.167739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.167 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.168029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.167 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.168038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.167 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:43.16866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.167 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.168677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.168 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.168685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.168 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.168692+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.168 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"workspace_name\": \"silly-goldwasser1\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:43.168699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.168 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.168705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.168 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.169983+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.169998+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.170004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.169 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.2795ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"ee4bd885-f04f-4288-b641-f80730cca3e6\"}\n"} -{"Time":"2022-12-07T09:15:43.170316+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.170324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.170329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.170 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"885.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"247bc17b-26d1-44d3-a739-8951a31aa716\"}\n"} -{"Time":"2022-12-07T09:15:43.171496+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.171508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.171515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.171 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"871.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"72db56f9-a583-4258-a9dc-ce016ecff8de\"}\n"} -{"Time":"2022-12-07T09:15:43.171524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.171528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.171533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.171 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"838.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1ae9b221-db7b-4e58-91e1-d7b3266fbfc6\"}\n"} -{"Time":"2022-12-07T09:15:43.172412+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.172421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.172426+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.172 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:43.172551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.172 [INFO]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"resource_name\": \"somename\", \"resource_type\": \"someinstance\", \"transition\": \"start\"}\n"} -{"Time":"2022-12-07T09:15:43.172562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.172 [INFO]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:605\u003e\t(*Server).CompleteJob\tinserting template import job resource\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\", \"resource_name\": \"somename\", \"resource_type\": \"someinstance\", \"transition\": \"stop\"}\n"} -{"Time":"2022-12-07T09:15:43.172656+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.172 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:43.172667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.172 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:43.172852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.172 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8f02499e-03be-4a3e-a275-eeb7674ae380\"}\n"} -{"Time":"2022-12-07T09:15:43.182689+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.182718+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.182726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.182 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.067834ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0cbf1332-69cd-49a4-a35a-67af7cbb5ab5\"}\n"} -{"Time":"2022-12-07T09:15:43.182735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.182739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.182744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.182 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"798.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"05d55a71-3e75-4996-b903-3700127e948b\"}\n"} -{"Time":"2022-12-07T09:15:43.18328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.182 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:43.183294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.183 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:43.183301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.183 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:43.183307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.183 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d9a6e794-44c5-4bed-ab41-aff2f14bf27f\"}\n"} -{"Time":"2022-12-07T09:15:43.18428+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.184289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.184294+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.184 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"920.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d505c386-7592-4288-ab73-a5a62e19f52c\"}\n"} -{"Time":"2022-12-07T09:15:43.185267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.18547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.185577+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:43.185668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"size_bytes\": 2, \"path\": \"/tmp/TestWorkspaceAgentGoogleCloud3993542410/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.185737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentGoogleCloud3993542410/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.185808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentGoogleCloud3993542410/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.185876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"workspace_name\": \"gifted-hertz7\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:43.18608+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.185 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.186152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.186 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.19944+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.199481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.199492+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.195 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.248333ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"6553f765-aa89-4e8d-8c2f-d4015e999234\"}\n"} -{"Time":"2022-12-07T09:15:43.199503+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.199509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.199516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.195 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/templateversions/59e1fb14-3ad6-4fd1-8914-f9176610c90d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.239917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"bfd1cdfb-7eb4-4d49-9774-6d463a14df51\"}\n"} -{"Time":"2022-12-07T09:15:43.199526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.199532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.19954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.197 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.627334ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"e285add1-d69d-48fa-9a80-0853293015f0\"}\n"} -{"Time":"2022-12-07T09:15:43.202293+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.202318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.202324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.199 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:43.202332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.199 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:43.202339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.199 [DEBUG]\t(provisionerd-nostalgic_brahmagupta8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:43.202345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.200 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"47e9adbe-dec2-4f93-8a23-d1627a08bb9e\"}\n"} -{"Time":"2022-12-07T09:15:43.202352+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.202356+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.20236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.200 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/organizations/7b6b98bb-5412-4210-ad57-bfe4b3d6ee8a/members/me/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"3.89225ms\", \"status_code\": 201, \"latency_ms\": 3, \"request_id\": \"65f7ad80-3332-4e79-a952-cc9a3397d1be\"}\n"} -{"Time":"2022-12-07T09:15:43.204511+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.204542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.20455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.202 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templateversions/ec38815c-e23c-412f-909d-d06f50e631a6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"964.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0f8ce76b-45a4-45c4-ab58-158c06a063db\"}\n"} -{"Time":"2022-12-07T09:15:43.20456+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.204565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.20457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" agent_test.go:109: waiting for workspace build job 7d830772-f996-428b-b890-dc2c451b6c80\n"} -{"Time":"2022-12-07T09:15:43.204576+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.204581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.204586+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.202 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.204592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.202 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.204624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.202 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.20463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.202 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.204644+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.203 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.205054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.205066+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.205072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.204 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/organizations/9ef329ad-0fb4-4e8a-8035-89acd959e76f/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.82575ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"348f1265-0de4-4990-8d4f-64acad88e597\"}\n"} -{"Time":"2022-12-07T09:15:43.208076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.099083ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"32aee547-781b-4bf7-a03e-40aad96f8cbc\"}\n"} -{"Time":"2022-12-07T09:15:43.208119+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.208124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.20813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.098917ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0b1320fd-e681-4ccf-bc76-ed41d66a491e\"}\n"} -{"Time":"2022-12-07T09:15:43.21237+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.21238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.212385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/efc83f98-7732-4302-8631-7ece953e32b7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"956.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fa6e8238-e852-49d6-89d0-11662bc3ba0b\"}\n"} -{"Time":"2022-12-07T09:15:43.212392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.212396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.2124+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"996.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1f9d8cf-8032-4a84-bf58-700b4f64cc13\"}\n"} -{"Time":"2022-12-07T09:15:43.212407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.212411+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.212415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.211 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/organizations/9ef329ad-0fb4-4e8a-8035-89acd959e76f/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.7235ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"46bedff0-8b1d-45d1-9558-2f417920328b\"}\n"} -{"Time":"2022-12-07T09:15:43.212481+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.212497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.212504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.212 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/organizations/4c078594-ccaa-40a8-87cf-c5e6d3ec3a86/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.945583ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"16fe7424-8c95-459d-b4e8-5fb2b221fd6a\"}\n"} -{"Time":"2022-12-07T09:15:43.212639+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.212652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.212657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.212 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.212841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.212 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.21299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.212 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:43.213091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.212 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.213116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.213 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.213185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.213 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"size_bytes\": 2, \"path\": \"/tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.213202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.213 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"workspace_name\": \"hungry-chatterjee0\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:43.213474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.213 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.213487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.213 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.213693+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.213702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.213708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.213 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"694.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b439d33f-09da-4937-9fa1-41c0a0a212d5\"}\n"} -{"Time":"2022-12-07T09:15:43.215346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.215 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/organizations/4c078594-ccaa-40a8-87cf-c5e6d3ec3a86/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.291208ms\", \"status_code\": 201, \"latency_ms\": 1, \"request_id\": \"d24d638c-57de-430a-be1e-0ee707b5047e\"}\n"} -{"Time":"2022-12-07T09:15:43.215524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" templatelist_test.go:25: waiting for template version job 73bfa419-0a02-43b2-8c86-971e0426881e\n"} -{"Time":"2022-12-07T09:15:43.218671+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.218683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.218688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.218 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"43.209µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"7c30cc3d-2e4b-4f2f-ad65-dd161a0aaa6b\"}\n"} -{"Time":"2022-12-07T09:15:43.219324+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.218 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"41.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4aeb838-2e2e-448a-87b0-9031a02948c2\"}\n"} -{"Time":"2022-12-07T09:15:43.219341+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.219346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.219351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.219 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"813.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"37c2954a-7506-4869-a694-1268194a2c68\"}\n"} -{"Time":"2022-12-07T09:15:43.220348+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.220461+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.22047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.219 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.220478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.219 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.220485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.219 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.220491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.219 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.220498+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.220504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.220508+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.220 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"735.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"97a58884-d630-40d5-a946-eb5afed549a3\"}\n"} -{"Time":"2022-12-07T09:15:43.220527+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.22053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.220535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.220 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.016542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"96e97f18-8207-40c2-9ed3-c9a1b1cda274\"}\n"} -{"Time":"2022-12-07T09:15:43.22138+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile"} -{"Time":"2022-12-07T09:15:43.221397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":"=== CONT TestTemplatePull/ToFile\n"} -{"Time":"2022-12-07T09:15:43.221402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.221 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/organizations/9ef329ad-0fb4-4e8a-8035-89acd959e76f/templates/gifted-nightingale6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"620.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2510ce2d-9086-42b5-9339-70bb7cf5e579\"}\n"} -{"Time":"2022-12-07T09:15:43.222506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.222 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/templates/2b2a4f24-93e5-4bc7-84dc-f493a6de0f80/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"728.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"36409854-84e7-413b-8115-36386d692885\"}\n"} -{"Time":"2022-12-07T09:15:43.2236+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.223 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57749\", \"path\": \"/api/v2/files/d15c8d43-3741-486c-9692-ccbb678d37b4\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"647.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e5259dbe-243c-43b1-a2e7-e327c6a9dfea\"}\n"} -{"Time":"2022-12-07T09:15:43.223943+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" templatepull_test.go:118: 2022-12-07 08:15:43.223: cmd: matched \"already exists\" = \"\u003e \\\"/tmp/TestTemplatePullToFile3821239648/003/actual.tar\\\" already exists\"\n"} -{"Time":"2022-12-07T09:15:43.223959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" templatepull_test.go:119: 2022-12-07 08:15:43.223: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:43.224061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" ptytest.go:103: 2022-12-07 08:15:43.223: cmd: stdout: \"\u003e \\\"/tmp/TestTemplatePullToFile3821239648/003/actual.tar\\\" already exists, do you want to overwrite it? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:43.224463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" ptytest.go:80: 2022-12-07 08:15:43.224: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:43.224685+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" t.go:81: 2022-12-07 08:15:43.224 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:43.226371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:43.226454+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.226467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.230516+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.23053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.230535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.229 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.23054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.229 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.230544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.230 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:43.230554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.230 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateListListTemplates3295948017/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.230559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.230 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateListListTemplates3295948017/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.230562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.230 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateListListTemplates3295948017/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.230565+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.230 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.230658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.230 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:43.231264+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.23128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.231284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.230 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.324541ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"c4fb7c3e-2cd9-4c40-b343-fd0ddfe45c82\"}\n"} -{"Time":"2022-12-07T09:15:43.232207+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.232239+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.232409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.232 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"202.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"45c46ca6-9532-45b8-a661-cdfac2327a59\"}\n"} -{"Time":"2022-12-07T09:15:43.232945+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.232952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.232956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.232 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"896.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"57aec3c1-06da-4f06-a6ac-10293fb80948\"}\n"} -{"Time":"2022-12-07T09:15:43.232962+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.232965+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.232968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.232 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"82.791µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"be9d71f6-6613-4a12-b340-956035047fe2\"}\n"} -{"Time":"2022-12-07T09:15:43.233916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.233 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"665.25µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"9decf74a-7a4d-4ec4-80ed-b6c36a1ed37b\"}\n"} -{"Time":"2022-12-07T09:15:43.234337+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.234374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.234386+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.234 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"714.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"864636e4-0141-4cf8-aa82-352aac0d26db\"}\n"} -{"Time":"2022-12-07T09:15:43.235098+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.235113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.235118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.235 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/organizations/7dcd4d30-d852-4826-97b1-a1ada8075804/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"951.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f0769fc4-d104-43ea-85e1-ded3f868f9fd\"}\n"} -{"Time":"2022-12-07T09:15:43.235303+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" templatepull_test.go:48: waiting for template version job f7825a2e-9821-42c5-a05b-d9fda1b29ea0\n"} -{"Time":"2022-12-07T09:15:43.236441+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.23645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.236454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.236 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.236472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.236 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.236503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.236 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.23653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.236 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.242908+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.242918+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.242922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.242 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"645.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a14d651-3a5f-45f5-bf75-c6843d20690d\"}\n"} -{"Time":"2022-12-07T09:15:43.244222+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.244229+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.244231+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.244 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"448.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d292c200-26f8-4805-b017-888a9bfa2efd\"}\n"} -{"Time":"2022-12-07T09:15:43.245044+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.245049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.245052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.244 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"503.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ae96c641-48e4-43aa-9b4f-46bd6b197b0b\"}\n"} -{"Time":"2022-12-07T09:15:43.253648+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.253663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.253666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.253 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.253668+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.253 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.253672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.253 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.253674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.253 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.253744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.253 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.253801+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.253825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.253827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.253 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"376.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"51ed1043-94f1-46af-9188-73f21a9b4e6a\"}\n"} -{"Time":"2022-12-07T09:15:43.256615+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.256621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.256623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.256 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"285.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40ee9c4b-068d-48aa-b73b-0ac7e318b990\"}\n"} -{"Time":"2022-12-07T09:15:43.258217+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.258224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.258234+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.258 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a29ed1a4-7113-4096-aba8-59614ed92bbb\"}\n"} -{"Time":"2022-12-07T09:15:43.261334+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.261347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.26135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.261 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"448.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0efb591e-3387-417a-adf3-d2f21804701a\"}\n"} -{"Time":"2022-12-07T09:15:43.263862+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.263874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.263877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.263 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.263883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.263 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.263886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.263 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.26393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.263 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.266267+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.266272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.266275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.266 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"332.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4464d04-f61d-4a6c-b877-4c5e438ade47\"}\n"} -{"Time":"2022-12-07T09:15:43.268579+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.268584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.268587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.268 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"289µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7997f901-0e12-4b45-8636-971c2103243e\"}\n"} -{"Time":"2022-12-07T09:15:43.269425+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.269437+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.26944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.269 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"317.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"674eeee8-7ea1-4fa1-9c68-6917b2f40f0e\"}\n"} -{"Time":"2022-12-07T09:15:43.269816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.269 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.27003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.269 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.270035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.269 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.27926+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.279276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.279278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.279 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bbbea92c-524e-4163-96ba-62dbd7679fb8\"}\n"} -{"Time":"2022-12-07T09:15:43.2808+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.28081+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.280812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.280 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.280977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.280 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.281393+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.281398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.2814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.281 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dfee8afa-56c1-4ec7-8456-103d273c6153\"}\n"} -{"Time":"2022-12-07T09:15:43.283114+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.283118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.28312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.283 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"99531632-12db-49e8-9d08-660dca40136b\"}\n"} -{"Time":"2022-12-07T09:15:43.285892+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.285897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.285898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.285 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"254µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"63cbf1d4-ce07-4898-81e0-063da82e0bf0\"}\n"} -{"Time":"2022-12-07T09:15:43.286729+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.28674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.286743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.286 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.286852+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.286 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.286873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.286 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.291667+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.291676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.291679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.291 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"70e650ec-3439-4be1-998a-c45d4fb59d7f\"}\n"} -{"Time":"2022-12-07T09:15:43.293453+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.293456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.293458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.293 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"260.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7b47e75a-894c-4476-b53b-9c4b688b422d\"}\n"} -{"Time":"2022-12-07T09:15:43.294344+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.294351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.294353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.294 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"301.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f92031d6-1490-480e-b148-0f5d4525c215\"}\n"} -{"Time":"2022-12-07T09:15:43.304243+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.304267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.304273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.303 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.304279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.304 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:43.304284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.304 [DEBUG]\t(provisionerd-hungry_jackson5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.304289+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.304 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"1f23a148-89ac-4172-87d2-dadd80cdc9d7\"}\n"} -{"Time":"2022-12-07T09:15:43.304548+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.304553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.304557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.304 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"921.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9158ec0c-8c11-4458-a6bf-5d675928705d\"}\n"} -{"Time":"2022-12-07T09:15:43.307156+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.307184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.307191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.307 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspacebuilds/ab6e891a-5d64-4ae1-b497-fc3dedc5d98b\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"809.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"180e0cb2-138b-425d-b422-8ada599af7c0\"}\n"} -{"Time":"2022-12-07T09:15:43.309465+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.309481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.309487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.309 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.342958ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"652c1acb-5f8f-4572-8178-bc69d34b977c\"}\n"} -{"Time":"2022-12-07T09:15:43.31141+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.311423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.311429+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.311 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"709.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4b551dda-f5e1-4e76-bf98-c9a7021372fd\"}\n"} -{"Time":"2022-12-07T09:15:43.311815+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.311823+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.311828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" agent_test.go:63: waiting for workspace agents (workspace 3ce79da1-0253-457b-805e-b3d89ae81a3f)\n"} -{"Time":"2022-12-07T09:15:43.314411+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.314425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.314427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.314 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.314509+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.314 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.314539+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.314 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.316111+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.316116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.316118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.316 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"289.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"eb0e8877-ce00-48c5-9f76-c7445b6e2d6b\"}\n"} -{"Time":"2022-12-07T09:15:43.318863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.318878+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.318884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.318 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"611.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"db138ebb-8ed4-446a-b57e-865fdea5e794\"}\n"} -{"Time":"2022-12-07T09:15:43.319516+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.31955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.319557+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.319 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"550.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ce9c1e2-9fa4-414d-98c2-c221f27202d2\"}\n"} -{"Time":"2022-12-07T09:15:43.320226+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.320 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.32024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.320 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.320272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.320 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.320314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.320 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.320389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.320 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.328673+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.328677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.328679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.32873+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.328767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:43.328803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"size_bytes\": 31, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.328832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.328854+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.328885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/3166569989.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.328919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.329042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.328 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"parameter_schemas\": [{\"name\": \"region\", \"description\": \"description\", \"allow_override_source\": true, \"default_destination\": {\"scheme\": 1}}]}\n"} -{"Time":"2022-12-07T09:15:43.329049+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.329051+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.329053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.329 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"337.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4aeac218-5883-4834-87c1-cfb9ba0f4579\"}\n"} -{"Time":"2022-12-07T09:15:43.330877+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.330891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.330894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.330 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:43.330999+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.331008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.331013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.330 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.331022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.330 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.331039+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.331 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.331064+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.331 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.331091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.331 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.33113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.331 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.33116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.331 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.331325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.331 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.331374+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.331 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.333228+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.333232+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.333235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.333 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"222d6117-5d1f-4d8c-a6c8-dbd768ea55d5\"}\n"} -{"Time":"2022-12-07T09:15:43.336259+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.336268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.336272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.336 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"446.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8ff715f9-ee39-45b2-b0ab-3882c4af1f8f\"}\n"} -{"Time":"2022-12-07T09:15:43.337003+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.33701+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.337013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.336 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.337033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.336 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.337058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.337 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.337087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.337 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.337158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.337 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.337584+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.337592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.337595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.337 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"557.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4327df01-0edb-4261-b457-4c4a77b85b9d\"}\n"} -{"Time":"2022-12-07T09:15:43.337733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.341449+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.341456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.341459+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.341 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"394.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d8da5c44-ce82-4982-8983-76986bc05318\"}\n"} -{"Time":"2022-12-07T09:15:43.343591+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.343596+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.343599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.343 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"349.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"55aa054b-6d75-47f7-a311-342daf935abb\"}\n"} -{"Time":"2022-12-07T09:15:43.344253+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.344257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.344259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.344 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"297.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"726087c8-289e-423b-9d01-11c36cb15c00\"}\n"} -{"Time":"2022-12-07T09:15:43.35421+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.354218+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.354221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.354 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"385.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"04967576-2537-4a6b-a965-7105dbcc9998\"}\n"} -{"Time":"2022-12-07T09:15:43.358524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.35853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.358533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.358 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"359.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"39d712ca-55bf-400b-b8b6-a00c589652e0\"}\n"} -{"Time":"2022-12-07T09:15:43.360944+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.360949+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.360951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.360 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"347.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b44ce1b8-131c-4d40-9aac-fe02a44917f2\"}\n"} -{"Time":"2022-12-07T09:15:43.362382+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.362387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.362389+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.362 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6f11c8eb-f6d0-4ca0-874c-cd89a89a5127\"}\n"} -{"Time":"2022-12-07T09:15:43.362511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.364919+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.364923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.364925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.364 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.364929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.364 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.36495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.364 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.364968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.364 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.365024+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.364 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.366027+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.36603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.366032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.365 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"291.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6835e2e6-a1b6-4fbc-ac9d-e930c0a40931\"}\n"} -{"Time":"2022-12-07T09:15:43.368614+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.368618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.368621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.368 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"298.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"27a74a74-e83a-4ba3-a050-ce8829342f84\"}\n"} -{"Time":"2022-12-07T09:15:43.369289+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.369293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.369295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.369 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"310µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b7fc92d4-a4e6-40b7-b44d-8163cc527471\"}\n"} -{"Time":"2022-12-07T09:15:43.370607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.370 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.370626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.370 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.370653+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.370 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.370657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.370 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.370708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.370 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.378902+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.378919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.378928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.378 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e3a5b2a0-b9f4-4d9a-baa6-8183601f39a2\"}\n"} -{"Time":"2022-12-07T09:15:43.379151+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.379155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.379157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.379 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.379272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.379 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.381172+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.381179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.381182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.381266+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.381314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"size_bytes\": 4096}\n"} -{"Time":"2022-12-07T09:15:43.381349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"size_bytes\": 40, \"path\": \"/tmp/TestTemplatePullStdout4132114214/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.381558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePullStdout4132114214/002/1.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.38176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePullStdout4132114214/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.381892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePullStdout4132114214/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.381909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.381 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.382162+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.382171+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.382176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.382 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.382244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.382 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.382253+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.382 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.382307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.382 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.382348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.382 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.382358+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.382 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.382601+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.38261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.382612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.382 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:622\u003e\t(*Runner).runTemplateImportParse\tparse job logged\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"level\": \"TRACE\", \"output\": \"835db55d-053b-4959-9b6f-f86024098153\"}\n"} -{"Time":"2022-12-07T09:15:43.382726+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.382 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:43.383495+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.383501+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.383503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.383 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"609.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f30db63d-2312-448e-8250-eb5d11b1e8da\"}\n"} -{"Time":"2022-12-07T09:15:43.387662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.387 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.387675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.387 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.387705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.387 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.387773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.387 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.387929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.387 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.388445+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.388449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.388451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.388 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"722.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6fea0ae0-1092-41e7-b6a7-487dc0a25759\"}\n"} -{"Time":"2022-12-07T09:15:43.388524+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.388533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.388535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.388 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"786.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2cf53d88-7f5f-4e83-b980-219693e73920\"}\n"} -{"Time":"2022-12-07T09:15:43.388655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.39115+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.391155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.391158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.391 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c739c039-62e9-4115-b664-7fb064d388ac\"}\n"} -{"Time":"2022-12-07T09:15:43.393589+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.393594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.393597+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.393 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"319.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b488f3a-5d97-4a3d-9aef-ce244c1b7cda\"}\n"} -{"Time":"2022-12-07T09:15:43.394274+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.394281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.394283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.394 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cd8f7f71-dcef-45fc-858f-e41db38f955b\"}\n"} -{"Time":"2022-12-07T09:15:43.404095+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.404101+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.404102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.404 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"306.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"451b0211-5f21-4092-9171-207457247b8c\"}\n"} -{"Time":"2022-12-07T09:15:43.408427+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.408433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.408435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.408 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"270.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a3e8312-936b-4e24-a34e-0254f67c00a3\"}\n"} -{"Time":"2022-12-07T09:15:43.410816+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.410819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.41082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.410 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"227.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e2c21c18-6c14-4290-8a95-27f738e29562\"}\n"} -{"Time":"2022-12-07T09:15:43.412325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.412331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.412332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.412 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40a416d8-30dc-4192-84d8-0de0f85fb5ce\"}\n"} -{"Time":"2022-12-07T09:15:43.41241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.415473+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.415477+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.415479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.415 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.415484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.415 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.415502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.415 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.415522+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.415 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.415553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.415 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.415866+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.41587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.415872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.415 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"228.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a8703a2d-5a48-4d95-9e2f-a1719d6cab77\"}\n"} -{"Time":"2022-12-07T09:15:43.418494+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.418497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.418499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.418 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"240.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c3342bfe-e04b-4607-b0a9-2d1b9a4c7fb8\"}\n"} -{"Time":"2022-12-07T09:15:43.419216+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.419219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.419221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.419 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"269.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d6f7f4b9-981e-425c-8ead-4f4c74a31bdf\"}\n"} -{"Time":"2022-12-07T09:15:43.420956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.420 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.420961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.420 [DEBUG]\t(provisionerd-affectionate_rubin2)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.421002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.420 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"9d24535d-6a4f-4e71-95c1-cc67ab67c3fa\"}\n"} -{"Time":"2022-12-07T09:15:43.428727+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.428733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.428735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.428 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"21.125µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:43.428931+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.428934+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.428936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.428 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"87ef07b6-706e-4284-ad28-d63d80e69c7e\"}\n"} -{"Time":"2022-12-07T09:15:43.429277+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.429281+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.429282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.429293+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.429304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.429322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.429337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.429347+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.429365+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.429398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:43.429408+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:43.429425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:43.429465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:43.429469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:43.429475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.42948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.4295+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:43.42954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:43.429571+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.429 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:43.432777+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.432782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.432784+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.432 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.432786+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.432788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.432789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.432 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.432792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.432 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.432796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.432 [DEBUG]\t(provisionerd-fervent_stonebraker0)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.432799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.432 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"55e900d0-dcda-4224-a21d-9b26f4a578a7\"}\n"} -{"Time":"2022-12-07T09:15:43.432802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.432803+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.432805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.432 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.433051+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.433055+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.433057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.433 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0a6c44b7-46a4-44ae-af84-d8ab81206969\"}\n"} -{"Time":"2022-12-07T09:15:43.435873+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.435877+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.435879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.435 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9c3e57dd-4351-4ff4-aa23-675ae30b500b\"}\n"} -{"Time":"2022-12-07T09:15:43.437243+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.437248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.43725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.437 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"890a4f69-6b1a-406c-a2fd-3839f515460c\"}\n"} -{"Time":"2022-12-07T09:15:43.437338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.438095+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.438098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.4381+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.438 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.43811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.438 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:43.438135+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.438 [DEBUG]\t(provisionerd-stupefied_montalcini8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.438161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.438 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8378c3c8-0df0-4611-bf8f-8aacddee88cc\"}\n"} -{"Time":"2022-12-07T09:15:43.441156+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.441159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.441161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.441 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/templateversions/73bfa419-0a02-43b2-8c86-971e0426881e\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"232.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"202f01ae-149e-4f37-9b63-73eac15d17df\"}\n"} -{"Time":"2022-12-07T09:15:43.441643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.441 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/organizations/4c078594-ccaa-40a8-87cf-c5e6d3ec3a86/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"253.291µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"847b10fc-0b76-4f44-90bb-7cf8086dafda\"}\n"} -{"Time":"2022-12-07T09:15:43.443479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.443483+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.443485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.443 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9832fb6e-9898-444e-9d2e-9055d4e717e5\"}\n"} -{"Time":"2022-12-07T09:15:43.443676+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.44368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.443681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.443 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.208µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"78747851-56d5-49e9-a872-023e402ceea7\"}\n"} -{"Time":"2022-12-07T09:15:43.443841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.443 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"16.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7322c60f-3b83-4232-8830-01cb46a9e51c\"}\n"} -{"Time":"2022-12-07T09:15:43.444248+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.444252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.444254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.444 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspacebuilds/85d029ff-5d97-4c3c-95a8-207c87a1c47c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c8ace941-2644-4870-9bf9-1add660b7b54\"}\n"} -{"Time":"2022-12-07T09:15:43.444278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.44428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.444282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.444 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2c10e390-3e9b-4ea3-b8fc-c852b658d71a\"}\n"} -{"Time":"2022-12-07T09:15:43.444467+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.44447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.444472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/003/.ssh/config\n"} -{"Time":"2022-12-07T09:15:43.444552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:551: Wrote 320\n"} -{"Time":"2022-12-07T09:15:43.446279+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.446 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"15.834µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"9bd8c838-f908-4a5b-8d6e-eb590c5c9039\"}\n"} -{"Time":"2022-12-07T09:15:43.446409+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.446 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a560679a-c9cc-46bb-bed0-4ebb0af8d4d9\"}\n"} -{"Time":"2022-12-07T09:15:43.446733+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \"\u003e New options differ from previous options:\"\n"} -{"Time":"2022-12-07T09:15:43.446738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:43.446741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \" New options:\"\n"} -{"Time":"2022-12-07T09:15:43.446743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \" * ssh-option: ForwardAgent=yes\"\n"} -{"Time":"2022-12-07T09:15:43.446745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:43.446747+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \" Previous options: none\"\n"} -{"Time":"2022-12-07T09:15:43.446756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:43.4469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:575: 2022-12-07 08:15:43.446: cmd: matched \"Use new options?\" = \"\u003e New options differ from previous options:\\r\\n\\r\\n New options:\\r\\n * ssh-option: ForwardAgent=yes\\r\\n\\r\\n Previous options: none\\r\\n\\r\\n Use new options?\"\n"} -{"Time":"2022-12-07T09:15:43.446906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:576: 2022-12-07 08:15:43.446: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:43.446909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \" Use new options? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:43.446917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.446: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:43.449698+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates"} -{"Time":"2022-12-07T09:15:43.449702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":"=== CONT TestTemplateList/ListTemplates\n"} -{"Time":"2022-12-07T09:15:43.449704+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.449 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57738\", \"path\": \"/api/v2/organizations/4c078594-ccaa-40a8-87cf-c5e6d3ec3a86/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.236125ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"d6b76ebc-d387-4238-9eeb-2d1993247834\"}\n"} -{"Time":"2022-12-07T09:15:43.449876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" ptytest.go:103: 2022-12-07 08:15:43.449: cmd: stdout: \"NAME LAST UPDATED USED BY \"\n"} -{"Time":"2022-12-07T09:15:43.449882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" ptytest.go:103: 2022-12-07 08:15:43.449: cmd: stdout: \"bold-perlman7 December 7, 2022 - active developers \"\n"} -{"Time":"2022-12-07T09:15:43.449884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" ptytest.go:103: 2022-12-07 08:15:43.449: cmd: stdout: \"dreamy-ptolemy9 December 7, 2022 - active developers \"\n"} -{"Time":"2022-12-07T09:15:43.449887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" templatelist_test.go:47: 2022-12-07 08:15:43.449: cmd: matched \"bold-perlman7\" = \"NAME LAST UPDATED USED BY \\r\\nbold-perlman7\"\n"} -{"Time":"2022-12-07T09:15:43.449889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" templatelist_test.go:47: 2022-12-07 08:15:43.449: cmd: matched \"dreamy-ptolemy9\" = \" December 7, 2022 - active developers \\r\\ndreamy-ptolemy9\"\n"} -{"Time":"2022-12-07T09:15:43.449914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" ptytest.go:80: 2022-12-07 08:15:43.449: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:43.449979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" t.go:81: 2022-12-07 08:15:43.449 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:43.450532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:43.450545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList","Output":"--- PASS: TestTemplateList (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.450548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Output":" --- PASS: TestTemplateList/NoTemplates (0.01s)\n"} -{"Time":"2022-12-07T09:15:43.45055+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/NoTemplates","Elapsed":0.01} -{"Time":"2022-12-07T09:15:43.450553+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Output":" --- PASS: TestTemplateList/ListTemplates (0.62s)\n"} -{"Time":"2022-12-07T09:15:43.450555+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateList/ListTemplates","Elapsed":0.62} -{"Time":"2022-12-07T09:15:43.450557+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateList","Elapsed":0} -{"Time":"2022-12-07T09:15:43.450559+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract"} -{"Time":"2022-12-07T09:15:43.45056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":"=== CONT TestTemplateInit/Extract\n"} -{"Time":"2022-12-07T09:15:43.451751+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.451764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.451767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.451 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.122084ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"edd80e0b-0466-4730-8475-29adaf18f710\"}\n"} -{"Time":"2022-12-07T09:15:43.452466+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract"} -{"Time":"2022-12-07T09:15:43.452474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":"=== CONT TestTemplateInit/Extract\n"} -{"Time":"2022-12-07T09:15:43.452476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \"A template defines infrastructure as code to be provisioned for individual \"\n"} -{"Time":"2022-12-07T09:15:43.452478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \"developer workspaces. Select an example to be copied to the active directory: \"\n"} -{"Time":"2022-12-07T09:15:43.452479+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:43.452481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \"Extracting \\x1b[;maws-ecs-container\\x1b[0m to ./../../../../../tmp/TestTemplateInitExtract335406681/001...\"\n"} -{"Time":"2022-12-07T09:15:43.452686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \"Create your template by running:\"\n"} -{"Time":"2022-12-07T09:15:43.452693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \" \"\n"} -{"Time":"2022-12-07T09:15:43.452695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \" \\x1b[;mcd \"\n"} -{"Time":"2022-12-07T09:15:43.452696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \" ./../../../../../tmp/TestTemplateInitExtract335406681/001 \"\n"} -{"Time":"2022-12-07T09:15:43.452698+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \" \u0026\u0026 coder templates create\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:43.452705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:43.452708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:103: 2022-12-07 08:15:43.452: cmd: stdout: \"Examples provide a starting point and are expected to be edited! 🎨 \"\n"} -{"Time":"2022-12-07T09:15:43.45271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" ptytest.go:80: 2022-12-07 08:15:43.452: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:43.453071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit","Output":"--- PASS: TestTemplateInit (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.453075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Output":" --- PASS: TestTemplateInit/Extract (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.453078+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit/Extract","Elapsed":0} -{"Time":"2022-12-07T09:15:43.45308+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateInit","Elapsed":0} -{"Time":"2022-12-07T09:15:43.453081+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile"} -{"Time":"2022-12-07T09:15:43.453082+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile","Output":"=== CONT TestCreateParameterMapFromFile/CreateParameterMapFromFile\n"} -{"Time":"2022-12-07T09:15:43.453172+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.453176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.453177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.453 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57661\", \"path\": \"/api/v2/templateversions/2f5b80de-ff1e-40df-991e-f8d21b7d4d82/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"414.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6f3795bf-cf0f-4253-ba16-2658527b607c\"}\n"} -{"Time":"2022-12-07T09:15:43.453271+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} -{"Time":"2022-12-07T09:15:43.453275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:43.453277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \" * Use new SSH options\"\n"} -{"Time":"2022-12-07T09:15:43.45328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:43.453282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:43.453349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:575: 2022-12-07 08:15:43.453: cmd: matched \"Continue?\" = \" (\\x1b[1myes\\x1b[0m/no) yes\\r\\n\\r\\n\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Use new SSH options\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_not_moved_on_re-run_with_new_options1621766981/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} -{"Time":"2022-12-07T09:15:43.453355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" configssh_test.go:576: 2022-12-07 08:15:43.453: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:43.45342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:43.453425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:43.453444+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename"} -{"Time":"2022-12-07T09:15:43.453448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename","Output":"=== CONT TestCreateParameterMapFromFile/WithInvalidFilename\n"} -{"Time":"2022-12-07T09:15:43.45348+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML"} -{"Time":"2022-12-07T09:15:43.453485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML","Output":"=== CONT TestCreateParameterMapFromFile/WithInvalidYAML\n"} -{"Time":"2022-12-07T09:15:43.453642+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.453649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.453654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} -{"Time":"2022-12-07T09:15:43.453657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"For example, try running:\"\n"} -{"Time":"2022-12-07T09:15:43.453659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:43.453663+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:103: 2022-12-07 08:15:43.453: cmd: stdout: \"\\t$ ssh coder.silly-goldwasser1\"\n"} -{"Time":"2022-12-07T09:15:43.453696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" ptytest.go:80: 2022-12-07 08:15:43.453: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:43.453736+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.453741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.453743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.453 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"425.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"38eab6a1-7915-4aab-b31b-a0cdd330eaf9\"}\n"} -{"Time":"2022-12-07T09:15:43.453782+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.453785+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.453788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" t.go:81: 2022-12-07 08:15:43.453 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:43.453916+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples"} -{"Time":"2022-12-07T09:15:43.453922+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples","Output":"=== CONT Test_formatExamples/No_examples\n"} -{"Time":"2022-12-07T09:15:43.453924+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename"} -{"Time":"2022-12-07T09:15:43.453925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename","Output":"=== CONT TestCreateParameterMapFromFile/WithEmptyFilename\n"} -{"Time":"2022-12-07T09:15:43.453928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile","Output":"--- PASS: TestCreateParameterMapFromFile (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.45393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile","Output":" --- PASS: TestCreateParameterMapFromFile/CreateParameterMapFromFile (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.453932+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/CreateParameterMapFromFile","Elapsed":0} -{"Time":"2022-12-07T09:15:43.453935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename","Output":" --- PASS: TestCreateParameterMapFromFile/WithInvalidFilename (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.453936+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidFilename","Elapsed":0} -{"Time":"2022-12-07T09:15:43.453938+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML","Output":" --- PASS: TestCreateParameterMapFromFile/WithInvalidYAML (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.45394+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithInvalidYAML","Elapsed":0} -{"Time":"2022-12-07T09:15:43.453942+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename","Output":" --- PASS: TestCreateParameterMapFromFile/WithEmptyFilename (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.453943+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile/WithEmptyFilename","Elapsed":0} -{"Time":"2022-12-07T09:15:43.453944+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestCreateParameterMapFromFile","Elapsed":0} -{"Time":"2022-12-07T09:15:43.453945+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands"} -{"Time":"2022-12-07T09:15:43.453946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands","Output":"=== CONT Test_formatExamples/No_description_outputs_commands\n"} -{"Time":"2022-12-07T09:15:43.453949+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples"} -{"Time":"2022-12-07T09:15:43.45395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples","Output":"=== CONT Test_formatExamples/Output_examples\n"} -{"Time":"2022-12-07T09:15:43.453952+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples","Output":"--- PASS: Test_formatExamples (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.453954+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples","Output":" --- PASS: Test_formatExamples/No_examples (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.453956+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_examples","Elapsed":0} -{"Time":"2022-12-07T09:15:43.453957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands","Output":" --- PASS: Test_formatExamples/No_description_outputs_commands (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.453959+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/No_description_outputs_commands","Elapsed":0} -{"Time":"2022-12-07T09:15:43.453961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples","Output":" --- PASS: Test_formatExamples/Output_examples (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.453964+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples/Output_examples","Elapsed":0} -{"Time":"2022-12-07T09:15:43.453966+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_formatExamples","Elapsed":0} -{"Time":"2022-12-07T09:15:43.453967+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges"} -{"Time":"2022-12-07T09:15:43.453969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges","Output":"=== CONT Test_parsePortForwards/TCP_mixed_ports_and_ranges\n"} -{"Time":"2022-12-07T09:15:43.453971+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range"} -{"Time":"2022-12-07T09:15:43.453973+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range","Output":"=== CONT Test_parsePortForwards/Bad_port_range\n"} -{"Time":"2022-12-07T09:15:43.453975+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range"} -{"Time":"2022-12-07T09:15:43.453978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range","Output":"=== CONT Test_parsePortForwards/Bad_dest_port_range\n"} -{"Time":"2022-12-07T09:15:43.45398+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range"} -{"Time":"2022-12-07T09:15:43.453982+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range","Output":"=== CONT Test_parsePortForwards/UDP_with_port_range\n"} -{"Time":"2022-12-07T09:15:43.453985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards","Output":"--- PASS: Test_parsePortForwards (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.453986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges","Output":" --- PASS: Test_parsePortForwards/TCP_mixed_ports_and_ranges (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.453995+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/TCP_mixed_ports_and_ranges","Elapsed":0} -{"Time":"2022-12-07T09:15:43.453996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range","Output":" --- PASS: Test_parsePortForwards/Bad_port_range (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.453998+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_port_range","Elapsed":0} -{"Time":"2022-12-07T09:15:43.453999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range","Output":" --- PASS: Test_parsePortForwards/Bad_dest_port_range (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.454+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/Bad_dest_port_range","Elapsed":0} -{"Time":"2022-12-07T09:15:43.454003+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range","Output":" --- PASS: Test_parsePortForwards/UDP_with_port_range (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.454005+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards/UDP_with_port_range","Elapsed":0} -{"Time":"2022-12-07T09:15:43.454007+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"Test_parsePortForwards","Elapsed":0} -{"Time":"2022-12-07T09:15:43.454008+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.454009+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.454837+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options"} -{"Time":"2022-12-07T09:15:43.454842+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options\n"} -{"Time":"2022-12-07T09:15:43.454844+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:43.454865+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.454868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.456391+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.456395+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.456398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.456 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"85.084µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"7f15fea3-771f-48a7-8009-6429058f8b2e\"}\n"} -{"Time":"2022-12-07T09:15:43.456581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.456 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"34.708µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"df8e5ee7-2e39-42b8-afab-04e6717f480e\"}\n"} -{"Time":"2022-12-07T09:15:43.457098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"eeb16db1-fa30-4bbf-bcdd-38f57db696d4\"}\n"} -{"Time":"2022-12-07T09:15:43.45712+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.457128+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.45713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"65.083µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8a9da1a2-839d-4995-9539-cd19ef491477\"}\n"} -{"Time":"2022-12-07T09:15:43.457317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"47.375µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e0ea9aff-90da-4681-945e-e36edaa14411\"}\n"} -{"Time":"2022-12-07T09:15:43.457744+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.45775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.457752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/organizations/046c8003-1d27-4678-bd29-73003e99045c/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"486.5µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"f399023d-a6e4-4d71-83ef-0cb3ac259f72\"}\n"} -{"Time":"2022-12-07T09:15:43.457802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.457805+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.457806+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.457 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"333.667µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4bc68276-4a59-4725-95cf-b6ffc4c8d3d0\"}\n"} -{"Time":"2022-12-07T09:15:43.457823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.457825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.457827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" templateedit_test.go:26: waiting for template version job e81eb357-6627-4da1-b686-52b1c2e636e6\n"} -{"Time":"2022-12-07T09:15:43.458394+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.458398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.458399+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.458 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/organizations/dcac5162-993e-4a9a-9727-4e1afb1d6761/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"449.584µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"54d89342-fd18-4d2a-a06c-5ee98ccaf03b\"}\n"} -{"Time":"2022-12-07T09:15:43.45845+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.458452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.458454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.458 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspacebuilds/0a2be663-5a42-4d36-8892-5f3a44d53efc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e2004431-97ac-43e9-97d4-128166510ef1\"}\n"} -{"Time":"2022-12-07T09:15:43.458476+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.458481+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.458484+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" templateversions_test.go:20: waiting for template version job 9e48682a-5d86-4f29-989f-cfe87439157d\n"} -{"Time":"2022-12-07T09:15:43.459773+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.459778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.459781+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" agent_test.go:179: waiting for workspace agents (workspace 51122e25-bf32-4d6b-8553-329b17e25956)\n"} -{"Time":"2022-12-07T09:15:43.461461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.461465+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.461467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.461 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"382.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0c7dd729-5399-4390-9137-2bf45f722f65\"}\n"} -{"Time":"2022-12-07T09:15:43.46271+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.462731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.462744+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.462 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f78affc6-4d05-4e60-a073-bd11b254c10b\"}\n"} -{"Time":"2022-12-07T09:15:43.462807+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.466026+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content"} -{"Time":"2022-12-07T09:15:43.466029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":"=== CONT TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content\n"} -{"Time":"2022-12-07T09:15:43.466031+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.465 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.466034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.466 [DEBUG]\t(provisionerd-tender_nash5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.466052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.466 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"f629420d-fd8f-4029-8e5f-ef3219617d68\"}\n"} -{"Time":"2022-12-07T09:15:43.469152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.469 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspacebuilds/8915e63c-b5f1-4696-af2e-5d98a797b239\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"396.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e120bfa0-dc06-4e56-b999-0ac8e0d3261f\"}\n"} -{"Time":"2022-12-07T09:15:43.46935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" configssh_test.go:551: Writing /tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/003/.ssh/config\n"} -{"Time":"2022-12-07T09:15:43.469393+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" configssh_test.go:551: Wrote 28\n"} -{"Time":"2022-12-07T09:15:43.471017+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.470 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.875µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"4842e5dc-2269-40a1-9b23-84e3e23deb8e\"}\n"} -{"Time":"2022-12-07T09:15:43.471193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.471 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"805ebac2-73a6-4e1b-ada6-d2043f253c0b\"}\n"} -{"Time":"2022-12-07T09:15:43.476574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.476 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/workspaces\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"5.158708ms\", \"status_code\": 200, \"latency_ms\": 5, \"request_id\": \"6409a968-64d5-4329-bd32-9e68e359e025\"}\n"} -{"Time":"2022-12-07T09:15:43.477057+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.477 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57679\", \"path\": \"/api/v2/templateversions/6b0b9fdd-18bc-4d6e-9482-3058593efa05/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"312.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"89c370bf-09fc-4673-a4e2-e18a2a305c1a\"}\n"} -{"Time":"2022-12-07T09:15:43.477158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"\u003e The following changes will be made to your SSH configuration:\"\n"} -{"Time":"2022-12-07T09:15:43.477161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:43.477163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \" * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/003/.ssh/config\"\n"} -{"Time":"2022-12-07T09:15:43.477165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:43.477168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" configssh_test.go:575: 2022-12-07 08:15:43.477: cmd: matched \"Continue?\" = \"\u003e The following changes will be made to your SSH configuration:\\r\\n\\r\\n * Update the coder section in /tmp/TestConfigSSH_FileWriteAndOptionsFlowSection_is_written_after_user_content2728135725/003/.ssh/config\\r\\n\\r\\n Continue?\"\n"} -{"Time":"2022-12-07T09:15:43.477184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" configssh_test.go:576: 2022-12-07 08:15:43.477: cmd: stdin: \"yes\\r\"\n"} -{"Time":"2022-12-07T09:15:43.477228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \" Continue? (\\x1b[1myes\\x1b[0m/no) yes\"\n"} -{"Time":"2022-12-07T09:15:43.477235+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:43.477467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"You should now be able to ssh into your workspace.\"\n"} -{"Time":"2022-12-07T09:15:43.477475+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"For example, try running:\"\n"} -{"Time":"2022-12-07T09:15:43.477496+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"\"\n"} -{"Time":"2022-12-07T09:15:43.477517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:103: 2022-12-07 08:15:43.477: cmd: stdout: \"\\t$ ssh coder.hungry-chatterjee0\"\n"} -{"Time":"2022-12-07T09:15:43.477547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" ptytest.go:80: 2022-12-07 08:15:43.477: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:43.477568+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" t.go:81: 2022-12-07 08:15:43.477 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:43.478256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:43.47828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow","Output":"--- PASS: TestConfigSSH_FileWriteAndOptionsFlow (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.478284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run (1.05s)\n"} -{"Time":"2022-12-07T09:15:43.478293+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_overwrite_config_when_using_--dry-run","Elapsed":1.05} -{"Time":"2022-12-07T09:15:43.478297+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set (0.89s)\n"} -{"Time":"2022-12-07T09:15:43.478299+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_when_prev_opts_flag_is_set","Elapsed":0.89} -{"Time":"2022-12-07T09:15:43.4783+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created (1.28s)\n"} -{"Time":"2022-12-07T09:15:43.478302+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Config_file_is_created","Elapsed":1.28} -{"Time":"2022-12-07T09:15:43.478304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options (1.18s)\n"} -{"Time":"2022-12-07T09:15:43.478306+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_previous_options","Elapsed":1.18} -{"Time":"2022-12-07T09:15:43.478307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes (1.36s)\n"} -{"Time":"2022-12-07T09:15:43.478309+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_when_using_--yes","Elapsed":1.36} -{"Time":"2022-12-07T09:15:43.478314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options (0.73s)\n"} -{"Time":"2022-12-07T09:15:43.478315+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Prompt_for_new_options_when_there_are_no_previous_options","Elapsed":0.73} -{"Time":"2022-12-07T09:15:43.478317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no (1.38s)\n"} -{"Time":"2022-12-07T09:15:43.478318+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_changes_when_continue_=_no","Elapsed":1.38} -{"Time":"2022-12-07T09:15:43.478319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run (0.85s)\n"} -{"Time":"2022-12-07T09:15:43.478323+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run","Elapsed":0.85} -{"Time":"2022-12-07T09:15:43.478325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run (0.93s)\n"} -{"Time":"2022-12-07T09:15:43.478328+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Do_not_prompt_for_new_options_on_first_run","Elapsed":0.93} -{"Time":"2022-12-07T09:15:43.47833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes (1.20s)\n"} -{"Time":"2022-12-07T09:15:43.478331+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/No_prompt_on_no_changes","Elapsed":1.2} -{"Time":"2022-12-07T09:15:43.478333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF (1.13s)\n"} -{"Time":"2022-12-07T09:15:43.478334+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Adds_newline_at_EOF","Elapsed":1.13} -{"Time":"2022-12-07T09:15:43.478336+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options (1.05s)\n"} -{"Time":"2022-12-07T09:15:43.478338+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_not_moved_on_re-run_with_new_options","Elapsed":1.05} -{"Time":"2022-12-07T09:15:43.478339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Output":" --- PASS: TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content (1.04s)\n"} -{"Time":"2022-12-07T09:15:43.478342+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow/Section_is_written_after_user_content","Elapsed":1.04} -{"Time":"2022-12-07T09:15:43.478343+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestConfigSSH_FileWriteAndOptionsFlow","Elapsed":0} -{"Time":"2022-12-07T09:15:43.478344+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.478346+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.478559+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.478561+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.478563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.478 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"371.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"79813731-7b48-4dca-a9d1-7d0497053993\"}\n"} -{"Time":"2022-12-07T09:15:43.479644+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.479647+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.479649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.479666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.479686+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.479705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.47976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.479809+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.479812+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:43.479814+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:43.479816+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:43.479825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:43.479882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:43.479889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.479 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:43.480598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.480601+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.480603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.480 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"88.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"66284e6d-5bed-4439-bd2c-a1a6dac69d3c\"}\n"} -{"Time":"2022-12-07T09:15:43.480769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.480 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"29.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"bf4efb1a-deb4-4ae8-b06a-cd0ca6940f4b\"}\n"} -{"Time":"2022-12-07T09:15:43.481283+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.481 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"356.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"acabf76b-4e7e-438f-b8b1-996fa020aa86\"}\n"} -{"Time":"2022-12-07T09:15:43.481896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.481 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/organizations/94504e47-9b88-4dce-bfd1-707352f945a9/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.542µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"44e0b290-68cb-479f-831e-8932ddfa9a00\"}\n"} -{"Time":"2022-12-07T09:15:43.48197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" templateedit_test.go:189: waiting for template version job 914e97d9-7853-4b28-ac18-4c16445a3e29\n"} -{"Time":"2022-12-07T09:15:43.483007+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.48301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.483012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.482 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.483025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.48304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.483056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.483075+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"stage\": \"Parse parameters\", \"output\": \"835db55d-053b-4959-9b6f-f86024098153\"}\n"} -{"Time":"2022-12-07T09:15:43.483091+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.483111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.48313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.483247+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.483269+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.483987+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.483993+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.483995+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.483 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"533.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bd2b5ffb-7600-47ef-8a5e-04a04594f83f\"}\n"} -{"Time":"2022-12-07T09:15:43.484826+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.484863+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.484874+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.484 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"473.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1f9655f3-c783-420a-9849-4734b2964e2b\"}\n"} -{"Time":"2022-12-07T09:15:43.486526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.486544+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.486547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.486 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"551.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"70cdf96f-bd87-46de-9154-4c186e272aaa\"}\n"} -{"Time":"2022-12-07T09:15:43.486752+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.486776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.486782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.486 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"93723bb3-33fa-46db-a419-8cb0c98f80d9\"}\n"} -{"Time":"2022-12-07T09:15:43.486789+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.486793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.486797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.488389+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.488405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.48841+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.488 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"537.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8fcc9fba-8a97-4e22-969e-27ac5e71536d\"}\n"} -{"Time":"2022-12-07T09:15:43.488506+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.50457+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.504579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.504582+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.504 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"424.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4efb79f7-08be-4807-a3f4-bfac193b7dce\"}\n"} -{"Time":"2022-12-07T09:15:43.507641+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.507652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.507655+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.507 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"357.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"30de32e2-37b7-47e9-b70d-7390730dd3f5\"}\n"} -{"Time":"2022-12-07T09:15:43.508245+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.50825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.508252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.508 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"965d22ab-552c-4c19-8d3a-f3a9f46d1ca2\"}\n"} -{"Time":"2022-12-07T09:15:43.508823+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.508827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.508829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.508 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"227.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8d3e885f-24cd-48e1-920c-10ca51f2f9ba\"}\n"} -{"Time":"2022-12-07T09:15:43.510277+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.510284+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.510287+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"261.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"717bbaf9-9c54-4a75-a150-5b2adcad64de\"}\n"} -{"Time":"2022-12-07T09:15:43.510442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.510654+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.510659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.510661+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.510 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"259.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6d24f7f1-1b81-4953-8673-ef95a6ec5a47\"}\n"} -{"Time":"2022-12-07T09:15:43.512186+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.512191+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.512193+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.512 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"249.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"debf67d0-51d9-41ca-9b55-51a90f5d1544\"}\n"} -{"Time":"2022-12-07T09:15:43.512268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.528443+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.528448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.52845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.528 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"262µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e04be919-06bc-40ce-be2b-d4aebf151ad4\"}\n"} -{"Time":"2022-12-07T09:15:43.530092+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.530096+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.5301+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.530 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.530102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.530 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.530106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.530 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.530159+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.530 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.530183+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.530 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.530197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.530 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\"}\n"} -{"Time":"2022-12-07T09:15:43.530427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.530 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.328084ms\", \"status_code\": 101, \"latency_ms\": 399, \"request_id\": \"1582aa75-ff7c-4683-b8e9-08a852841d87\"}\n"} -{"Time":"2022-12-07T09:15:43.53136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.531 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"317.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"40a53c34-b083-4c0f-86d6-a97f9a32d7d4\"}\n"} -{"Time":"2022-12-07T09:15:43.531774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.531 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"228.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f4a847cb-112f-4bef-a7e8-991483c96c7d\"}\n"} -{"Time":"2022-12-07T09:15:43.532163+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"232.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cc18feb3-d056-43d6-b745-6b5387168caa\"}\n"} -{"Time":"2022-12-07T09:15:43.532325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.532329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.532331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"252µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"53c5d3c2-231b-4f1c-a5f1-b3bf19fe71f6\"}\n"} -{"Time":"2022-12-07T09:15:43.532555+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.532559+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.53256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"246.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f78506f9-93b6-4903-9884-65797a8f370c\"}\n"} -{"Time":"2022-12-07T09:15:43.532928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.532 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/5f38616a-588c-43f7-8c18-29c15c7cef53\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"233.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1835a0e8-448f-4bfa-a255-69eb6cf762f8\"}\n"} -{"Time":"2022-12-07T09:15:43.533168+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.533173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.533175+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"237.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b69e1275-ee88-4289-b0fa-930b5882bf06\"}\n"} -{"Time":"2022-12-07T09:15:43.533323+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.533326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.533329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/bbb5f2c5-4ddd-4518-91c9-a9d645cd63d9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"230.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e464ad5-b765-418a-a6b0-30d4c0d14309\"}\n"} -{"Time":"2022-12-07T09:15:43.533332+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.533334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.533335+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.533359+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.533366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.533385+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.533403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.533457+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.533738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.533742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.533755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"257.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9f35abe3-831b-4456-a308-f146fb9bdace\"}\n"} -{"Time":"2022-12-07T09:15:43.533824+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.533827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.533829+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.533 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"241.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"cad26e9d-f080-4c1f-b406-06c626f70f02\"}\n"} -{"Time":"2022-12-07T09:15:43.534145+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.534148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.53415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.534 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templates/a745dfb2-e349-43c4-8ee1-7346defa546c/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"233.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4b35cbf9-b8c4-4d48-96bf-5ea0b541c9b7\"}\n"} -{"Time":"2022-12-07T09:15:43.535224+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.535228+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.53523+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7fcab6f5-b2dd-4c0d-b45e-864e18a27ca2\"}\n"} -{"Time":"2022-12-07T09:15:43.535308+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.535312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.535314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templates/a745dfb2-e349-43c4-8ee1-7346defa546c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"335.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e9f81bd5-905d-4051-a461-b986d25494d6\"}\n"} -{"Time":"2022-12-07T09:15:43.535318+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.535319+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.535321+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.535624+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.535627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.535629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"229.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"343bc7ab-b3e0-4993-b809-d4644867be59\"}\n"} -{"Time":"2022-12-07T09:15:43.535732+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.535737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.535739+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.535 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"239.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"08a5bddd-d12e-4116-b100-b7e45240dd38\"}\n"} -{"Time":"2022-12-07T09:15:43.536087+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.536 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"218.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8ddb6abc-b497-48ef-ad9e-94a36af4e845\"}\n"} -{"Time":"2022-12-07T09:15:43.537241+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.537244+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.537246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.537 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"256.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f52f1da0-59cb-4e9d-9741-d87c651c9760\"}\n"} -{"Time":"2022-12-07T09:15:43.537331+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.538164+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.538168+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.538177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"12.791µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"1ddd380d-0220-4754-bd4c-8d5e05e56442\"}\n"} -{"Time":"2022-12-07T09:15:43.538341+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"11.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4a764622-fd46-4796-86fa-ccd6a09c9527\"}\n"} -{"Time":"2022-12-07T09:15:43.53879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.538 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"276.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"92935b39-967f-4bb0-8a06-92d44cfc2bc2\"}\n"} -{"Time":"2022-12-07T09:15:43.539203+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.539 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templates/intelligent-euler0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"253.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dd1d2e5f-22f3-438b-813d-6a9809e3196d\"}\n"} -{"Time":"2022-12-07T09:15:43.539773+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.539 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"232.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"1e5bd527-07cf-4945-abcb-c7b12f4f7489\"}\n"} -{"Time":"2022-12-07T09:15:43.540352+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.540 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/organizations/541c269c-a821-407e-9ac5-138eeca080e0/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"443.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"c0418b8a-1147-4b8b-a41d-7944f980f406\"}\n"} -{"Time":"2022-12-07T09:15:43.540735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.540 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"224.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"20da9c22-9824-4031-8915-7c3586422a7d\"}\n"} -{"Time":"2022-12-07T09:15:43.554149+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.554153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.554154+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.554 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"282.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4e3ad894-4701-4a6c-bcce-067b4ce27f68\"}\n"} -{"Time":"2022-12-07T09:15:43.555821+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.555825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.555826+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.555 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:43.556458+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.556462+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.556464+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.556 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:43.557471+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.557474+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.557476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.557 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"274.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9a96bb23-6486-4688-a10c-aa3569caa8c4\"}\n"} -{"Time":"2022-12-07T09:15:43.558242+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.558246+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.558248+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.558 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2566c591-57f5-4335-9725-b5908c73fd62\"}\n"} -{"Time":"2022-12-07T09:15:43.558828+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.558831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.558832+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.558 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"226.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bec312be-1701-4c12-a47e-d7961c16a4a2\"}\n"} -{"Time":"2022-12-07T09:15:43.560294+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.5603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.560302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.560 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"272.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e965a87a-a89a-47f7-8b42-62011dd84b60\"}\n"} -{"Time":"2022-12-07T09:15:43.560452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.560578+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.560583+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.560585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.560 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"231.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e5ed97c5-553b-4322-815b-e0f8be8a97cf\"}\n"} -{"Time":"2022-12-07T09:15:43.56236+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.562363+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.562364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.562 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"288.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4f3ddedf-2142-4ad5-97b7-f079eb37bcf9\"}\n"} -{"Time":"2022-12-07T09:15:43.562468+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.579176+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.579179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.579181+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"282.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0787dc2d-62c0-43d6-b256-b40af8a57581\"}\n"} -{"Time":"2022-12-07T09:15:43.579777+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.579871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.579916+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:43.579946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"size_bytes\": 2, \"path\": \"/tmp/TestWorkspaceAgentAWS3412012430/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.579974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAWS3412012430/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.580001+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.580004+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.580018+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.579 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:43.58002+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.580022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.580025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"size_bytes\": 50, \"path\": \"/tmp/TestWorkspaceAgentAWS3412012430/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.580028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.579 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:433\u003e\t(*Runner).do\tacquired job is workspace provision\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"workspace_name\": \"clever-haslett1\", \"state_length\": 0, \"parameters\": null}\n"} -{"Time":"2022-12-07T09:15:43.580089+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.580 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.580129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.580 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.582662+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.582665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.582667+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.582 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"292.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f81cdafe-3d72-44f4-b758-43a58f20b76f\"}\n"} -{"Time":"2022-12-07T09:15:43.583204+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.583206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.583209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.583 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"256.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c1e5698c-c91b-423d-84a5-21f35ae1c1e0\"}\n"} -{"Time":"2022-12-07T09:15:43.583546+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.58355+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.583552+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.583 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.583556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.583 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.583602+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.583 [DEBUG]\t(provisionerd-unruffled_edison7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.583606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.583 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"508a9433-9b3b-426a-9663-f90d50de99e4\"}\n"} -{"Time":"2022-12-07T09:15:43.583863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.583866+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.583868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.583 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a409ef5e-0891-4c1f-9cd4-7debb5db96fd\"}\n"} -{"Time":"2022-12-07T09:15:43.585321+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.585329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.585332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"294.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11d666ac-c89a-4ee3-8ae9-513d3270a7f4\"}\n"} -{"Time":"2022-12-07T09:15:43.585417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.585655+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.585658+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.585659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.585 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templateversions/f7825a2e-9821-42c5-a05b-d9fda1b29ea0\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"283.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0d4894df-d19c-4dd1-b823-042ab998ba21\"}\n"} -{"Time":"2022-12-07T09:15:43.586116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/organizations/7dcd4d30-d852-4826-97b1-a1ada8075804/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"263.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4e709fc3-c331-4a43-96c5-73c2b2cb54e1\"}\n"} -{"Time":"2022-12-07T09:15:43.586594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.586 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"273.209µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"8fc4f931-5e0b-4e97-b1ee-23e54802b40f\"}\n"} -{"Time":"2022-12-07T09:15:43.587192+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.587195+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.587197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ccc4b16b-1535-42dc-9d28-6ceacbe71e17\"}\n"} -{"Time":"2022-12-07T09:15:43.587251+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.587254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.587256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.587 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/organizations/7dcd4d30-d852-4826-97b1-a1ada8075804/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"488.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"5deff197-37df-40db-81b3-aa10febced7e\"}\n"} -{"Time":"2022-12-07T09:15:43.587306+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.587309+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.587311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.58922+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout"} -{"Time":"2022-12-07T09:15:43.589223+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":"=== CONT TestTemplatePull/Stdout\n"} -{"Time":"2022-12-07T09:15:43.589224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"14.708µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"ddfeff68-812f-49e1-8a2f-8fbb4b4f155a\"}\n"} -{"Time":"2022-12-07T09:15:43.58941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"13.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"88a8a110-fcb6-4514-9c09-1752b13f1a90\"}\n"} -{"Time":"2022-12-07T09:15:43.589859+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.589 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"283.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fbb8ff82-997b-4fe8-a464-b5563baf4130\"}\n"} -{"Time":"2022-12-07T09:15:43.590334+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/organizations/7dcd4d30-d852-4826-97b1-a1ada8075804/templates/competent-joliot8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7cb31f3b-3f9f-4583-be67-c7d7f11f51eb\"}\n"} -{"Time":"2022-12-07T09:15:43.590776+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.590 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/templates/014d5c45-1490-4140-b4b7-417d2b59583b/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"265.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"81256858-537b-41e1-8430-3c45f32a764a\"}\n"} -{"Time":"2022-12-07T09:15:43.591197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.591 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57768\", \"path\": \"/api/v2/files/d2d5ba52-74e4-459e-a0e3-5f3410476790\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"248.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b5e10b81-ba82-48cf-8419-b498291f327d\"}\n"} -{"Time":"2022-12-07T09:15:43.591251+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" t.go:81: 2022-12-07 08:15:43.591 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:43.591864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:43.591887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull","Output":"--- PASS: TestTemplatePull (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.591891+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName","Output":" --- PASS: TestTemplatePull/NoName (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.591893+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/NoName","Elapsed":0} -{"Time":"2022-12-07T09:15:43.591896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Output":" --- PASS: TestTemplatePull/ToFile (0.39s)\n"} -{"Time":"2022-12-07T09:15:43.591902+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/ToFile","Elapsed":0.39} -{"Time":"2022-12-07T09:15:43.591906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Output":" --- PASS: TestTemplatePull/Stdout (0.37s)\n"} -{"Time":"2022-12-07T09:15:43.591907+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull/Stdout","Elapsed":0.37} -{"Time":"2022-12-07T09:15:43.591909+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePull","Elapsed":0} -{"Time":"2022-12-07T09:15:43.59191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.591912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.594397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.594 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"100.834µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"4b3feb23-16bd-406f-b0a1-506976592627\"}\n"} -{"Time":"2022-12-07T09:15:43.594617+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.594 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.875µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"28630e72-755b-44b0-9294-c44a369e3c52\"}\n"} -{"Time":"2022-12-07T09:15:43.595152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.595 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"336.75µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"080ebf54-dea7-4cea-bdd4-8756499e91c9\"}\n"} -{"Time":"2022-12-07T09:15:43.595772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.595 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/organizations/047eb5cf-956d-499f-9848-5bab513f4f0e/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"458.458µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"cfe01cdc-0c95-427c-8be5-7770c7eeb3b8\"}\n"} -{"Time":"2022-12-07T09:15:43.595856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" templateedit_test.go:139: waiting for template version job decd79f6-b816-4196-b5d3-7a5542b9f700\n"} -{"Time":"2022-12-07T09:15:43.605269+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.605273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.605275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.605 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4581ee4c-6813-44f3-8c9d-8fc8f723c77c\"}\n"} -{"Time":"2022-12-07T09:15:43.605992+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.605996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.605999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.605 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.606053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.606 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.606097+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.606 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:43.606129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditFirstEmptyThenModified2894296849/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.606151+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditFirstEmptyThenModified2894296849/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.606172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditFirstEmptyThenModified2894296849/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.606188+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.606286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.606 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:43.606605+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.606609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.606611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.606626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.606666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:43.606688+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateVersionsListVersions3032643930/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.606708+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateVersionsListVersions3032643930/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.606725+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateVersionsListVersions3032643930/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.606738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.606792+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.606 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:43.608041+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.608047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.608049+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.608 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"343.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8c0bb136-bd65-4968-9fae-5d7d74fe1e7d\"}\n"} -{"Time":"2022-12-07T09:15:43.608889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.608896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.608898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.608 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"91108e9a-d1bd-4596-90b4-9e6591d77c99\"}\n"} -{"Time":"2022-12-07T09:15:43.609295+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.609299+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.609302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.609 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bd0f92a9-7ea8-4b7d-87c4-8f4eca5bd001\"}\n"} -{"Time":"2022-12-07T09:15:43.610753+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.610756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.610758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.610 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"379.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6158c987-adda-452d-ba7e-a976ceab4c9d\"}\n"} -{"Time":"2022-12-07T09:15:43.610853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.612974+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.61298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.612983+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.612 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"345.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2d446e2d-0cc1-489f-b153-84f62a887c1d\"}\n"} -{"Time":"2022-12-07T09:15:43.613073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.622365+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.622369+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.622371+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.622 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"296.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"98988ecc-319b-418c-8c85-d5581454fb9f\"}\n"} -{"Time":"2022-12-07T09:15:43.628723+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.628727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.628728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.628 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"301.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"be7c2b62-700c-4c05-ad70-ec3fe305aab4\"}\n"} -{"Time":"2022-12-07T09:15:43.630298+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.630325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.630327+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.63033+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.630336+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.630338+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.630339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.630345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.630347+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.630348+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.63035+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.630353+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.630357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.63036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.630364+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.630368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.63037+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:43.630402+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditWithPropertiesThenEmptyEdit1517124398/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.630416+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditWithPropertiesThenEmptyEdit1517124398/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.630442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditWithPropertiesThenEmptyEdit1517124398/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.630451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.63053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.630 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:43.632627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.632 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"284.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"714a341f-818b-4b61-91ed-4eee3b838a0b\"}\n"} -{"Time":"2022-12-07T09:15:43.633216+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.633219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.633221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.633 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"245.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d91e4481-cefa-4909-879b-2b39dddbf3ea\"}\n"} -{"Time":"2022-12-07T09:15:43.633858+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.633862+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.633864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.633 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"240.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b49e4d86-cbdc-42aa-bdfd-24f2416308f8\"}\n"} -{"Time":"2022-12-07T09:15:43.635284+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.63529+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.635291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.635 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"286.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d16b67e0-c705-40b4-b451-029240c75f38\"}\n"} -{"Time":"2022-12-07T09:15:43.635387+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.63742+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.637423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.637425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.637 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"314.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1077697c-115e-45b3-91c4-6947fb91a3fe\"}\n"} -{"Time":"2022-12-07T09:15:43.637519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.646595+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.646607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.646609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.646 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"281.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5bd9b02d-8cec-4361-93ba-5b6cd47fdd27\"}\n"} -{"Time":"2022-12-07T09:15:43.653822+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.653825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.653827+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.653 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"291.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"86924298-05e0-4ce9-8504-0a0a4f266ae3\"}\n"} -{"Time":"2022-12-07T09:15:43.655032+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.655036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.655038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.655 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"13.125µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:43.655788+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.655799+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.655802+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.655 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"5.291µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:43.656406+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.65641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.656412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.656 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.656573+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.656 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.65688+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.656884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.656886+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.656 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.656972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.656 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.657429+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.657433+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.657435+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.657 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"302.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c33d7b0a-e9e6-4f2c-8f98-9103bfc242e3\"}\n"} -{"Time":"2022-12-07T09:15:43.658334+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.65834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.658342+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.658 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"306.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e2bc4fc9-1f79-4776-a357-aba08d200775\"}\n"} -{"Time":"2022-12-07T09:15:43.658903+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.658906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.658909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.658 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"293.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d92f03d0-c7d0-4eff-8e1d-2935bfd1b7ef\"}\n"} -{"Time":"2022-12-07T09:15:43.660374+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.660377+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.66038+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.660 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"358.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"78ea916c-7a02-408f-96cb-29e378917fb6\"}\n"} -{"Time":"2022-12-07T09:15:43.660469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.662463+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.662467+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.662469+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.662 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"363.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12b9813b-1359-4fdf-ae5a-9a823d983ce0\"}\n"} -{"Time":"2022-12-07T09:15:43.662566+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.671889+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.671893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.671895+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.671 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"307.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"11958710-cc50-4c6e-a44a-cf3ac5700d2a\"}\n"} -{"Time":"2022-12-07T09:15:43.678859+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.678865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.678868+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.678 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"364.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"12f274e1-51a9-4b05-8b57-51739d8f9128\"}\n"} -{"Time":"2022-12-07T09:15:43.679284+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.679288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.67929+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.679 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"5µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:43.68063+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.680643+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.680646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.680 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.680649+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.680651+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.680654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.680 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.680754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.680 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.680766+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.680769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.680772+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.680 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:851\u003e\t(*Runner).buildWorkspace\tprovision complete no error\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.680828+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.680 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:852\u003e\t(*Runner).buildWorkspace\tprovision successful\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"resource_count\": 1, \"resources\": [{\"name\": \"somename\", \"type\": \"someinstance\", \"agents\": [{\"Auth\": {\"InstanceId\": \"instanceidentifier\"}}]}], \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.682665+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.682669+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.682672+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.682 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"350.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"54085a29-f68b-4d3b-8654-5d5e9dbbd184\"}\n"} -{"Time":"2022-12-07T09:15:43.683309+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.683315+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.683317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.683 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"326.292µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bd816e43-2929-478d-9d28-dfe1dc200aae\"}\n"} -{"Time":"2022-12-07T09:15:43.683952+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.683957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.68396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.683 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"330.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"50ef2c9b-3934-49a3-9fe3-eb37d9d778f5\"}\n"} -{"Time":"2022-12-07T09:15:43.68541+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.685415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.685417+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.685 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"391.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"804833c9-a751-4f33-a6f8-11bc19196cbb\"}\n"} -{"Time":"2022-12-07T09:15:43.685524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.687509+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.687515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.687518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.687 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"382.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f8856061-7804-423b-9d8b-f7c959216a0c\"}\n"} -{"Time":"2022-12-07T09:15:43.687636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.694399+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.694404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.694407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.694 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:43.696574+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.696 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"325.958µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"f7531d0c-978d-46b8-9db1-59bf5c453af0\"}\n"} -{"Time":"2022-12-07T09:15:43.704022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.704028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.70403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.703 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"420.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2f4cce1f-dfc0-4a4f-909d-ece5322b8aab\"}\n"} -{"Time":"2022-12-07T09:15:43.706461+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.706472+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.706476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.417µs\", \"status_code\": 401, \"latency_ms\": 0, \"request_id\": \"89d3e76c-e0da-43e7-b718-7029ebb1e970\"}\n"} -{"Time":"2022-12-07T09:15:43.706542+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.706546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.706549+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.706556+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.706618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.706626+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.706631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.70666+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.706699+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.706845+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.706885+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.706892+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.706894+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.706899+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaceagents/azure-instance-identity\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"177.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"01e2e229-7bb0-421e-87ed-05796f2eb7cd\"}\n"} -{"Time":"2022-12-07T09:15:43.707002+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.707008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.707011+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.707034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.706 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.707063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.707131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.707174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.707196+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.70725+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.707254+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.707257+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.707 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"6b7d145f-1604-4b9a-930a-bc050a1d301b\", \"agent_id\": \"05901413-311b-472b-a1af-812b8c3f32ad\", \"agent_version\": \"v0.0.0-devel\"}\n"} -{"Time":"2022-12-07T09:15:43.707271+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.707275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.707278+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.707307+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.70731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.707316+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"138.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6b7d145f-1604-4b9a-930a-bc050a1d301b\"}\n"} -{"Time":"2022-12-07T09:15:43.707392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.707401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.707404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.707 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.707458+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.707676+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.70768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.707683+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"479.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1c40413a-79e9-474e-bc08-a40ee0f4128c\"}\n"} -{"Time":"2022-12-07T09:15:43.707706+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.707711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.707715+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.707 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"73.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"add9f64f-5c86-46ac-9746-0b7b87fadf3e\"}\n"} -{"Time":"2022-12-07T09:15:43.708392+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.708397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.7084+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.708 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7bc94657-1c2b-430c-9342-ff18c42d3379\"}\n"} -{"Time":"2022-12-07T09:15:43.709033+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.709042+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.709047+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.708 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"396.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"102a038f-ff73-4056-a686-7af2b8a97f80\"}\n"} -{"Time":"2022-12-07T09:15:43.71054+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.710547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.710551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.710 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"549.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"99a2a657-e7e7-4803-9101-acd226c460e1\"}\n"} -{"Time":"2022-12-07T09:15:43.71072+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.710963+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.710971+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.710975+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.710 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"66cddf7e-cb3f-4b10-8ab2-7e89b628bf09\", \"agent\": {\"id\": \"05901413-311b-472b-a1af-812b8c3f32ad\", \"created_at\": \"2022-12-07T08:15:43.304011Z\", \"updated_at\": \"2022-12-07T08:15:43.304012Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"a4e393cd-9fdd-4562-88a7-0f29e2e8cfee\", \"auth_token\": \"3567a44b-0797-431e-b3d7-526362f137d0\", \"auth_instance_id\": {\"String\": \"instanceidentifier\", \"Valid\": true}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false},"} -{"Time":"2022-12-07T09:15:43.710991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" \"directory\": \"\", \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} -{"Time":"2022-12-07T09:15:43.712693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.712 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"632.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9b8266d5-671c-4012-81fc-75b18e06a959\"}\n"} -{"Time":"2022-12-07T09:15:43.713404+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.713 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaces/3ce79da1-0253-457b-805e-b3d89ae81a3f\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ec3429f4-feaf-47b0-aa25-2805dcbecef9\"}\n"} -{"Time":"2022-12-07T09:15:43.714118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.714 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaceagents/05901413-311b-472b-a1af-812b8c3f32ad/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e53839e9-ecd4-4624-9c23-9570438eb259\"}\n"} -{"Time":"2022-12-07T09:15:43.722167+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.722176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.722192+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.722 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"443.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b50870e0-43c4-4ffe-b8da-9b1bd2000f23\"}\n"} -{"Time":"2022-12-07T09:15:43.724897+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.724904+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.724907+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.724 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"28.167µs\", \"status_code\": 401, \"latency_ms\": 0, \"request_id\": \"9ac10ee3-b9dd-4370-93f3-043f0065ac17\"}\n"} -{"Time":"2022-12-07T09:15:43.72537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.725 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaceagents/google-instance-identity\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"253.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d581e065-ebee-42e1-b1ea-1964c4a832e6\"}\n"} -{"Time":"2022-12-07T09:15:43.725603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.725 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"a3332839-0350-4b31-92ef-568b82f21c43\", \"agent_id\": \"f8f80ea7-ff3b-44fe-a68c-7f04769582fa\", \"agent_version\": \"v0.0.0-devel\"}\n"} -{"Time":"2022-12-07T09:15:43.72564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.725 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"75.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a3332839-0350-4b31-92ef-568b82f21c43\"}\n"} -{"Time":"2022-12-07T09:15:43.725897+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.725 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"30.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b71bb465-8d5e-4492-a22c-7978c9787a33\"}\n"} -{"Time":"2022-12-07T09:15:43.7283+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.72831+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.728314+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.728 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"494.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bc3e2b76-1a93-4b61-b647-82869b3979ae\"}\n"} -{"Time":"2022-12-07T09:15:43.728639+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.728646+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.72865+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.728 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"1745a428-bb14-4e97-8a82-12da81c1bf56\", \"agent\": {\"id\": \"f8f80ea7-ff3b-44fe-a68c-7f04769582fa\", \"created_at\": \"2022-12-07T08:15:43.438089Z\", \"updated_at\": \"2022-12-07T08:15:43.438089Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"7d45a6aa-86b7-4772-97cc-d1c966c9291b\", \"auth_token\": \"b68a1880-0dbf-455c-9465-90f5f0e9e739\", \"auth_instance_id\": {\"String\": \"instanceidentifier\", \"Valid\": true}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false},"} -{"Time":"2022-12-07T09:15:43.728657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" \"directory\": \"\", \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} -{"Time":"2022-12-07T09:15:43.730897+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.730905+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.730909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.730 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.730917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.730 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.730941+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.730944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.730946+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.730 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.730974+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.730977+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.730979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.730 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.730985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.730988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.73099+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.730 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"stage\": \"Starting workspace\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.731016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.730 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.73102+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.731022+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.731026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.730 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.731091+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.731095+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.731098+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.731 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.731102+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.731104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.731106+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.731 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.73111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.731 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.731116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.731 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.731191+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.731194+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.731197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.731 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.731302+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.731308+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.73131+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.731 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.731337+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.731 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.732788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.732 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"464.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ad96008e-f267-4d47-8fd7-27f18700a512\"}\n"} -{"Time":"2022-12-07T09:15:43.733414+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.733422+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.733425+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.733 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7ee9488a-46c1-4c5f-9922-a992a8f503f3\"}\n"} -{"Time":"2022-12-07T09:15:43.734052+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.734058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.734061+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.734 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"392.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9c7cf739-0778-4532-980e-7fec3b6092e1\"}\n"} -{"Time":"2022-12-07T09:15:43.735413+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.735418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.735421+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.735 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"461.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aa6f5244-3078-4ddc-b733-d4d26d5a8151\"}\n"} -{"Time":"2022-12-07T09:15:43.736111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaces/51122e25-bf32-4d6b-8553-329b17e25956\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"441.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9887dd18-4652-4ee8-be06-9d36463696db\"}\n"} -{"Time":"2022-12-07T09:15:43.736797+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.736 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaceagents/f8f80ea7-ff3b-44fe-a68c-7f04769582fa/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"432.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"0d0e5cb5-e79b-43b3-a100-a3ca44577bf4\"}\n"} -{"Time":"2022-12-07T09:15:43.744882+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.744889+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.744892+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.744 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.74499+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.744 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.745065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.745 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:43.745115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.745 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditWithPropertiesThenModified1795971574/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.745144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.745 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditWithPropertiesThenModified1795971574/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.745177+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.745 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditWithPropertiesThenModified1795971574/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.7452+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.745 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.745317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.745 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:43.746599+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.746 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"489.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"98b7439d-84d1-423e-871d-cc255cc92db0\"}\n"} -{"Time":"2022-12-07T09:15:43.753871+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.753881+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.753884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.753 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"562.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"00e7b82b-d365-4112-b5bd-b90b27f88ed9\"}\n"} -{"Time":"2022-12-07T09:15:43.757411+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.757424+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.757427+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.757442+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.757533+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.757541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.757546+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.757607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.757635+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.75764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.757652+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.757705+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.757729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.757767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.757811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.757896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.757 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.758152+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.758161+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.758165+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"605.334µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"973cc3bf-190a-405b-8ae0-b85306d406b7\"}\n"} -{"Time":"2022-12-07T09:15:43.758598+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.75861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.758614+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.758 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"536.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"28ac5ac2-1a53-4608-8a9d-0c99ec94fbf2\"}\n"} -{"Time":"2022-12-07T09:15:43.759265+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.759277+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.759282+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.759 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"536.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"77e9c8f0-885c-42ed-8e0a-7bb5bbece1f6\"}\n"} -{"Time":"2022-12-07T09:15:43.77204+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.772052+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.772056+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.771 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"491.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"73e10edd-868d-49b1-8850-b0f133e98047\"}\n"} -{"Time":"2022-12-07T09:15:43.779407+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.779418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.779423+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.779 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"767.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3d7443b1-1e44-4b0d-abcb-29461740f052\"}\n"} -{"Time":"2022-12-07T09:15:43.781758+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.781 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.781864+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.781 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.781871+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.781 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.781975+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.782032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.782041+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.781 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.782055+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.782062+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.782116+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.781 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.782144+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.782148+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.782153+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.781 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.782158+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.782 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.7822+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.782 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.782259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.782 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.782378+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.782 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.782393+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.782397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.782401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.782 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.784049+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.784065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.78407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.783 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.43375ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2389f108-1b17-4dd9-ac24-65f436a488c4\"}\n"} -{"Time":"2022-12-07T09:15:43.785718+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.785738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.785743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.181417ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"f2263756-4a1c-4f52-923a-e578d7842425\"}\n"} -{"Time":"2022-12-07T09:15:43.785841+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.78585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.785856+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.785 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.260416ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"03891d89-0f5f-4cf8-9e91-6c1d2ccee368\"}\n"} -{"Time":"2022-12-07T09:15:43.79322+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.793237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.793241+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.792 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"10.666µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:43.795512+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.795 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.795687+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.795 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.796678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.796 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"574.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"4888cb6f-c8b6-41a8-8f8f-150f74ceea7c\"}\n"} -{"Time":"2022-12-07T09:15:43.80406+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.804069+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.804073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.803 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"640.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7ceb2865-ec9e-46db-8e5d-2ee5ed4a460b\"}\n"} -{"Time":"2022-12-07T09:15:43.807762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.807775+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.80778+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.807 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.807787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.807 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.807793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.807 [DEBUG]\t(provisionerd-great_curran7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.80787+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.807 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"39eced5b-c22a-4a39-85e8-1ce514c27dee\"}\n"} -{"Time":"2022-12-07T09:15:43.808017+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.808025+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.808029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.807 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.808036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.808 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.808043+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.808053+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.808058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.807 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"495.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3a793808-b2b4-42c3-95b5-bd7ed9e07351\"}\n"} -{"Time":"2022-12-07T09:15:43.808065+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.808068+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.808071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.808 [DEBUG]\t(provisionerd-adoring_hofstadter6)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.808141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.808 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8c03dd70-1e93-4482-9bcd-fa005263cad5\"}\n"} -{"Time":"2022-12-07T09:15:43.808608+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.808618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.808621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.808 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templateversions/e81eb357-6627-4da1-b686-52b1c2e636e6\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"539.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a5556b45-015d-491a-be90-17637bf36e06\"}\n"} -{"Time":"2022-12-07T09:15:43.809143+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.809152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.809155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templateversions/9e48682a-5d86-4f29-989f-cfe87439157d\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"449.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"02e914d8-de6e-4efe-8707-87ac07292386\"}\n"} -{"Time":"2022-12-07T09:15:43.809471+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.809478+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.809482+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/organizations/046c8003-1d27-4678-bd29-73003e99045c/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"563.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"28a14c77-894c-41a0-a0c8-d54e9e20681c\"}\n"} -{"Time":"2022-12-07T09:15:43.809911+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.809919+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.809923+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.809 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/organizations/dcac5162-993e-4a9a-9727-4e1afb1d6761/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"445µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"fa0b4475-d297-4ebc-8ab4-124e4a98750a\"}\n"} -{"Time":"2022-12-07T09:15:43.813164+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.813174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.813179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.813 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.042µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"581717e1-c706-41f1-91d4-742a2df6d546\"}\n"} -{"Time":"2022-12-07T09:15:43.813428+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.813 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"29.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"35528133-21b9-4df7-88b0-df5d51d68e5a\"}\n"} -{"Time":"2022-12-07T09:15:43.813438+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.81344+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.813443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.813 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.083µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"dfa0c935-a7bb-4597-8333-19dde2c36a10\"}\n"} -{"Time":"2022-12-07T09:15:43.81368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.813 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a877a79e-a923-4328-8628-4ead79837bef\"}\n"} -{"Time":"2022-12-07T09:15:43.81414+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.814146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.81415+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.814 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"480.666µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3209067d-9b53-48dd-9949-966396b849ab\"}\n"} -{"Time":"2022-12-07T09:15:43.814354+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.814364+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.814367+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.814 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"442.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6bdcf0d6-fa0b-4112-bca6-a49955301ce1\"}\n"} -{"Time":"2022-12-07T09:15:43.814785+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.814794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.814798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.814 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/organizations/046c8003-1d27-4678-bd29-73003e99045c/templates/serene-mendeleev9\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"425µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"85d8c523-2a5c-4bd1-92c3-648a7d592254\"}\n"} -{"Time":"2022-12-07T09:15:43.814979+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.814985+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.814988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.814 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/organizations/dcac5162-993e-4a9a-9727-4e1afb1d6761/templates/loving-wilson3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"430.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"092f65da-bc52-4a1e-989a-f6d8eaed79d0\"}\n"} -{"Time":"2022-12-07T09:15:43.815479+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.815487+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.815491+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.815 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templates/ffc20efa-06d3-4727-8fec-f21e216ac4eb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"416.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"884bc15d-ebc8-4e54-a578-00a2c6b1fff7\"}\n"} -{"Time":"2022-12-07T09:15:43.815628+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.815636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.815639+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.815 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57789\", \"path\": \"/api/v2/templates/4fe89977-4e35-411f-9968-98d28fedd4ad/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6b975e36-13dd-46f7-9be8-fa1a6bc034af\"}\n"} -{"Time":"2022-12-07T09:15:43.815879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" ptytest.go:103: 2022-12-07 08:15:43.815: cmd: stdout: \"NAME CREATED AT CREATED BY STATUS ACTIVE \"\n"} -{"Time":"2022-12-07T09:15:43.815901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" ptytest.go:103: 2022-12-07 08:15:43.815: cmd: stdout: \"silly_carver7 2022-12-07T08:15:43Z testuser Succeeded \\x1b[;mActive\\x1b[0m \"\n"} -{"Time":"2022-12-07T09:15:43.815906+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" templateversions_test.go:37: 2022-12-07 08:15:43.815: cmd: matched \"silly_carver7\" = \"NAME CREATED AT CREATED BY STATUS ACTIVE \\r\\nsilly_carver7\"\n"} -{"Time":"2022-12-07T09:15:43.815912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" templateversions_test.go:38: 2022-12-07 08:15:43.815: cmd: matched \"testuser\" = \" 2022-12-07T08:15:43Z testuser\"\n"} -{"Time":"2022-12-07T09:15:43.815931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" templateversions_test.go:39: 2022-12-07 08:15:43.815: cmd: matched \"Active\" = \" Succeeded \\x1b[;mActive\"\n"} -{"Time":"2022-12-07T09:15:43.815967+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" ptytest.go:80: 2022-12-07 08:15:43.815: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:43.816028+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" t.go:81: 2022-12-07 08:15:43.815 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:43.816208+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.816216+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.816219+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.816 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57788\", \"path\": \"/api/v2/templates/ffc20efa-06d3-4727-8fec-f21e216ac4eb\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"426.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"05cc832c-2056-465e-8715-7bc275586a93\"}\n"} -{"Time":"2022-12-07T09:15:43.816405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" t.go:81: 2022-12-07 08:15:43.816 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:43.817244+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions"} -{"Time":"2022-12-07T09:15:43.817252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":"=== CONT TestTemplateVersions/ListVersions\n"} -{"Time":"2022-12-07T09:15:43.817255+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:43.817263+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions","Output":"--- PASS: TestTemplateVersions (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.817267+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Output":" --- PASS: TestTemplateVersions/ListVersions (0.36s)\n"} -{"Time":"2022-12-07T09:15:43.817272+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions/ListVersions","Elapsed":0.36} -{"Time":"2022-12-07T09:15:43.81729+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateVersions","Elapsed":0} -{"Time":"2022-12-07T09:15:43.817293+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.817296+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.817643+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified"} -{"Time":"2022-12-07T09:15:43.81765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenModified\n"} -{"Time":"2022-12-07T09:15:43.817654+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:43.817657+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.817659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.820906+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.820917+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.82092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.820 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"132.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"815747f0-8548-4dd4-83d8-a995218beaf0\"}\n"} -{"Time":"2022-12-07T09:15:43.820925+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.820928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.82093+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.820 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/users/first\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"135.917µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"ac06c7fc-5a29-427a-a32f-8da065859f6c\"}\n"} -{"Time":"2022-12-07T09:15:43.821161+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.821173+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.821176+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.821 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"61.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"b1a5f4d1-a242-481f-85c8-bf526b5a02c9\"}\n"} -{"Time":"2022-12-07T09:15:43.821186+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.821206+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.821214+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.821 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/users/login\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"46.208µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"0bcba3cf-e8d5-49d3-99e1-254ab07b8905\"}\n"} -{"Time":"2022-12-07T09:15:43.822056+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.822063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.822065+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.821 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"624µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"e4a8517b-ade4-4fec-9cd3-b48053dafe5a\"}\n"} -{"Time":"2022-12-07T09:15:43.822104+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.822109+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.822114+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.822 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/files\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"607.583µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3db765c4-69d7-49a2-a9f7-3c117c8d76b2\"}\n"} -{"Time":"2022-12-07T09:15:43.82223+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.822237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.82224+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.822 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"604.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"331b4283-af2f-40f6-8fdd-bee5eaf39f0c\"}\n"} -{"Time":"2022-12-07T09:15:43.82303+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.823036+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.82304+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.822 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/organizations/5570ef26-ff61-466e-9be7-4dd94bf3b9af/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"775.792µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"a365f082-c411-4fe3-85d4-d86588b720ba\"}\n"} -{"Time":"2022-12-07T09:15:43.823134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" templateedit_test.go:107: waiting for template version job a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\n"} -{"Time":"2022-12-07T09:15:43.823175+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.823179+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.823182+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.823 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/organizations/8b0345d4-ff46-4dcb-88f0-19e0a4b8ba24/templateversions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"846.584µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"25d7c2ef-f664-4384-b97e-3aa8189f040d\"}\n"} -{"Time":"2022-12-07T09:15:43.82329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" templateedit_test.go:71: waiting for template version job 4829f292-5c86-472c-89f4-b13d93547bed\n"} -{"Time":"2022-12-07T09:15:43.829352+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.829357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.82936+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.829 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"593.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"1b213aa5-2d93-4a74-abf9-8e0d44fb3382\"}\n"} -{"Time":"2022-12-07T09:15:43.832486+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.832494+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.832497+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.832 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.832504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.832 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.832526+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.832531+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.832535+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.832 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.832543+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.832545+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.832548+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.832 [DEBUG]\t(provisionerd-optimistic_rhodes4)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.832581+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.832585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.832591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.832 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:708\u003e\t(*Server).CompleteJob.func1\ttriggering workspace notification after agent timeout\t{\"workspace_build_id\": \"7d830772-f996-428b-b890-dc2c451b6c80\", \"timeout\": \"0s\"}\n"} -{"Time":"2022-12-07T09:15:43.832597+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.8326+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.832611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.832 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"a5f112de-4655-4e7b-8d33-529f448d370f\"}\n"} -{"Time":"2022-12-07T09:15:43.832618+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.832621+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.832623+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.832 [DEBUG]\t(provisionerd-funny_lewin5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.832727+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.832 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"d8e5e9c7-1bbe-4182-8465-ebd7e212c2ac\"}\n"} -{"Time":"2022-12-07T09:15:43.83337+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit"} -{"Time":"2022-12-07T09:15:43.833384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":"=== CONT TestTemplateEdit/WithPropertiesThenEmptyEdit\n"} -{"Time":"2022-12-07T09:15:43.833388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.833 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templateversions/914e97d9-7853-4b28-ac18-4c16445a3e29\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"631.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"88b157a6-6a93-4279-89bd-24d95f1c78a5\"}\n"} -{"Time":"2022-12-07T09:15:43.834085+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/organizations/94504e47-9b88-4dce-bfd1-707352f945a9/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"456.625µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"73ceb6f2-fc6b-437b-828c-51ad6a822a7c\"}\n"} -{"Time":"2022-12-07T09:15:43.834737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.834 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templates/e15c2a60-196c-42ac-bec3-857473f12abc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.042µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62bfae7f-6c81-4f26-9f91-76dbcbf5acd9\"}\n"} -{"Time":"2022-12-07T09:15:43.838394+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.838 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.625µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"ec50173d-a86e-4052-a705-a55e0e1df86e\"}\n"} -{"Time":"2022-12-07T09:15:43.838604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.838 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6c3dd8b5-9b04-486c-9051-28ba4b875b11\"}\n"} -{"Time":"2022-12-07T09:15:43.839332+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.839 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"411.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"158b3442-9200-4ac9-aa1b-0ec7e8fa09e8\"}\n"} -{"Time":"2022-12-07T09:15:43.839933+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.839 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/organizations/94504e47-9b88-4dce-bfd1-707352f945a9/templates/beautiful-elgamal3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"393.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"440d37cc-d9e4-4286-a985-02e6c5b13f16\"}\n"} -{"Time":"2022-12-07T09:15:43.840588+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.840 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templates/e15c2a60-196c-42ac-bec3-857473f12abc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"401.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e55b8020-3796-43d6-a02b-e2bbb4f37df0\"}\n"} -{"Time":"2022-12-07T09:15:43.841202+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.841 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57806\", \"path\": \"/api/v2/templates/e15c2a60-196c-42ac-bec3-857473f12abc\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"400.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ea36742a-8183-4658-9739-eda6f9c7129c\"}\n"} -{"Time":"2022-12-07T09:15:43.841317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" t.go:81: 2022-12-07 08:15:43.841 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:43.842086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:43.842113+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date"} -{"Time":"2022-12-07T09:15:43.842118+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date","Output":"=== CONT TestVerifyWorkspaceOutdated/Up-to-date\n"} -{"Time":"2022-12-07T09:15:43.842127+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated"} -{"Time":"2022-12-07T09:15:43.842129+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated","Output":"=== CONT TestVerifyWorkspaceOutdated/Outdated\n"} -{"Time":"2022-12-07T09:15:43.842136+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated","Output":"--- PASS: TestVerifyWorkspaceOutdated (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.842139+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date","Output":" --- PASS: TestVerifyWorkspaceOutdated/Up-to-date (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.842142+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Up-to-date","Elapsed":0} -{"Time":"2022-12-07T09:15:43.842144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated","Output":" --- PASS: TestVerifyWorkspaceOutdated/Outdated (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.842148+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated/Outdated","Elapsed":0} -{"Time":"2022-12-07T09:15:43.842152+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestVerifyWorkspaceOutdated","Elapsed":0} -{"Time":"2022-12-07T09:15:43.842154+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK"} -{"Time":"2022-12-07T09:15:43.842156+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK","Output":"=== CONT TestRoot/FormatCobraError/OK\n"} -{"Time":"2022-12-07T09:15:43.844497+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose"} -{"Time":"2022-12-07T09:15:43.844505+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose","Output":"=== CONT TestRoot/FormatCobraError/Verbose\n"} -{"Time":"2022-12-07T09:15:43.844511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot","Output":"--- PASS: TestRoot (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.844515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header","Output":" --- PASS: TestRoot/Header (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.844518+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRoot/Header","Elapsed":0} -{"Time":"2022-12-07T09:15:43.844521+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version","Output":" --- PASS: TestRoot/Version (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.844523+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRoot/Version","Elapsed":0} -{"Time":"2022-12-07T09:15:43.844525+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError","Output":" --- PASS: TestRoot/FormatCobraError (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.844528+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK","Output":" --- PASS: TestRoot/FormatCobraError/OK (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.84453+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/OK","Elapsed":0} -{"Time":"2022-12-07T09:15:43.844532+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose","Output":" --- PASS: TestRoot/FormatCobraError/Verbose (0.00s)\n"} -{"Time":"2022-12-07T09:15:43.846258+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError/Verbose","Elapsed":0} -{"Time":"2022-12-07T09:15:43.846262+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRoot/FormatCobraError","Elapsed":0} -{"Time":"2022-12-07T09:15:43.846264+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestRoot","Elapsed":0} -{"Time":"2022-12-07T09:15:43.846267+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.84627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.846272+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.846286+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.846307+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.846339+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.846349+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.846384+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.846413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.846551+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:43.846579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.846 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.847742+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.847 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"479.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3e4c79b7-34e0-48f0-b9d4-6f0e93aabab0\"}\n"} -{"Time":"2022-12-07T09:15:43.849502+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.849511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.849514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.849 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"515.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d0211407-f50c-4cb6-b798-61fd05443891\"}\n"} -{"Time":"2022-12-07T09:15:43.84952+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.849524+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.849526+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.849 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"540.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7602b64f-e1eb-449a-8033-0e921236d578\"}\n"} -{"Time":"2022-12-07T09:15:43.854192+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.854197+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.8542+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.854 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspacebuilds/7d830772-f996-428b-b890-dc2c451b6c80\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"517.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"bce2b123-0e0d-4f9a-90ae-57cc54650794\"}\n"} -{"Time":"2022-12-07T09:15:43.856185+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" agent_test.go:121: waiting for workspace agents (workspace bf785a82-1705-4e26-97ee-0f8c0e07c175)\n"} -{"Time":"2022-12-07T09:15:43.870114+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure"} -{"Time":"2022-12-07T09:15:43.87012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":"=== CONT TestWorkspaceAgent/Azure\n"} -{"Time":"2022-12-07T09:15:43.870122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.870 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaceagents/05901413-311b-472b-a1af-812b8c3f32ad/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"53.902333ms\", \"status_code\": 101, \"latency_ms\": 53, \"request_id\": \"bb26a310-834d-4789-a201-12cd02f93413\"}\n"} -{"Time":"2022-12-07T09:15:43.870157+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.870 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"109.143041ms\", \"status_code\": 0, \"latency_ms\": 109, \"request_id\": \"2f46097f-1d22-4bd5-a3bd-2c57b1da4d7e\"}\n"} -{"Time":"2022-12-07T09:15:43.870276+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.870 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57717\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"159.438417ms\", \"status_code\": 101, \"latency_ms\": 159, \"request_id\": \"66cddf7e-cb3f-4b10-8ab2-7e89b628bf09\"}\n"} -{"Time":"2022-12-07T09:15:43.870375+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.870 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:43.870412+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" t.go:81: 2022-12-07 08:15:43.870 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"103.765583ms\", \"status_code\": 0, \"latency_ms\": 103, \"request_id\": \"9db95b02-0843-4743-94af-0803587266cd\"}\n"} -{"Time":"2022-12-07T09:15:43.870931+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:43.872066+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.872071+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.872073+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.872 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"415.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"915fb293-036c-4d4d-a818-783e923174cc\"}\n"} -{"Time":"2022-12-07T09:15:43.874247+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.874252+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.874256+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.874 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"379.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"14fb2e88-68ec-4af6-ae0e-d4d9c7378bb7\"}\n"} -{"Time":"2022-12-07T09:15:43.874269+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.874273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.874275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.874 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"411.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"106919a5-104e-41d1-ae15-33fe6895c06c\"}\n"} -{"Time":"2022-12-07T09:15:43.882495+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.8825+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.882502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.882 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"428.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"dd224e62-20b3-49f1-a583-dd2a12afe450\"}\n"} -{"Time":"2022-12-07T09:15:43.88261+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.897593+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.897604+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.897606+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.897 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.897609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.897 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.897612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.897 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:43.897631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.897 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.897734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.897 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.897872+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.897 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.898122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.898 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"701.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7eaef988-7c79-495f-9c72-6f61828a73a5\"}\n"} -{"Time":"2022-12-07T09:15:43.898785+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.898789+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.898791+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.898 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"351.584µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"da03d94c-5172-4787-b95f-c28f21f60434\"}\n"} -{"Time":"2022-12-07T09:15:43.898795+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.898796+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.898798+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.898 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"338.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d2a295c6-a632-4bd8-aad4-d8dd8e207db5\"}\n"} -{"Time":"2022-12-07T09:15:43.899873+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud"} -{"Time":"2022-12-07T09:15:43.899879+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":"=== CONT TestWorkspaceAgent/GoogleCloud\n"} -{"Time":"2022-12-07T09:15:43.899882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.899 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaceagents/f8f80ea7-ff3b-44fe-a68c-7f04769582fa/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"60.847709ms\", \"status_code\": 101, \"latency_ms\": 60, \"request_id\": \"911725e4-9ab7-467f-8408-23537dc6d879\"}\n"} -{"Time":"2022-12-07T09:15:43.900146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.900 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57732\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"171.616125ms\", \"status_code\": 101, \"latency_ms\": 171, \"request_id\": \"1745a428-bb14-4e97-8a82-12da81c1bf56\"}\n"} -{"Time":"2022-12-07T09:15:43.900152+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.900 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"120.748042ms\", \"status_code\": 0, \"latency_ms\": 120, \"request_id\": \"0a5b3e8d-e832-4334-b92b-902e37f0f5b7\"}\n"} -{"Time":"2022-12-07T09:15:43.900345+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.900 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"106.84425ms\", \"status_code\": 0, \"latency_ms\": 106, \"request_id\": \"854989eb-e3ff-441c-85e1-f0fcb4ec2dd9\"}\n"} -{"Time":"2022-12-07T09:15:43.900397+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" t.go:81: 2022-12-07 08:15:43.900 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:43.900914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:43.90863+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.908634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.908636+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.908 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"500µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"90163752-784f-44f7-9f75-b399ce5dfcfe\"}\n"} -{"Time":"2022-12-07T09:15:43.908729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.920994+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.921012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.921016+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.920 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:43.921022+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.921023+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.921026+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.920 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:183\u003e\t(*Server).connect\tconnected\n"} -{"Time":"2022-12-07T09:15:43.922398+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.922403+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.922405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.922 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"396.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"03d87b6b-546d-44bc-90c4-bbf0250e8ee3\"}\n"} -{"Time":"2022-12-07T09:15:43.924604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.924607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.924609+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.924 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"457.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"de17d868-0bc5-4eb8-a33b-adf1bd412220\"}\n"} -{"Time":"2022-12-07T09:15:43.924656+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.924662+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.924665+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.924 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"472.041µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"45a6d858-c89d-4689-8015-77552a1a7bc4\"}\n"} -{"Time":"2022-12-07T09:15:43.932675+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.932679+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.932681+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.932 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"399.75µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2af844a8-d119-47d2-ba1a-944dfa0560bf\"}\n"} -{"Time":"2022-12-07T09:15:43.932793+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.946512+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.946516+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.946518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.946 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"334.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6a187872-089a-4128-be3a-bc35bb376584\"}\n"} -{"Time":"2022-12-07T09:15:43.948117+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.948 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.948141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.948 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.948155+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.948 [DEBUG]\t(provisionerd-priceless_pascal9)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.948221+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.948 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"8f0eaff7-c163-41ba-8ec0-3b7cfe799f91\"}\n"} -{"Time":"2022-12-07T09:15:43.948669+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.948673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.948676+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.948 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"318.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"735e79ec-909f-498c-a1fa-e43755cdc5db\"}\n"} -{"Time":"2022-12-07T09:15:43.948751+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.948755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.948757+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.948 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"324µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e73d1239-963a-450e-bee2-2dae8c953056\"}\n"} -{"Time":"2022-12-07T09:15:43.957729+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.957736+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.957738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.957 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"385.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"970a1ecb-8898-4e33-99de-5e2752739a24\"}\n"} -{"Time":"2022-12-07T09:15:43.957819+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.971604+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.971618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.971622+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:43.971627+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.971629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.971632+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:43.971722+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.971728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.971731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.971 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:43.971735+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.971737+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.97174+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.971 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:43.971771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.971 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:43.971802+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.971811+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.971813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.971 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"size_bytes\": 3072}\n"} -{"Time":"2022-12-07T09:15:43.97183+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.971834+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.971836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditInvalidDisplayName2565145702/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.971849+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.971851+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.971853+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditFirstEmptyThenNotModified1696336287/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.971881+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.971883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.97189+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditInvalidDisplayName2565145702/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.971894+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.971896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.971898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditFirstEmptyThenNotModified1696336287/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.971982+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.97199+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.971992+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditInvalidDisplayName2565145702/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.971996+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.971999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.972002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplateEditFirstEmptyThenNotModified1696336287/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.972005+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.972006+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.972008+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:43.972011+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.972013+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.972015+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.971 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:43.972072+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.972076+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.972078+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.972 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:43.972109+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.972113+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.972115+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.972 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:43.97212+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.972122+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.972125+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templateversions/decd79f6-b816-4196-b5d3-7a5542b9f700\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"439.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"04bd5b5c-ddc7-46d7-9afc-74c412475790\"}\n"} -{"Time":"2022-12-07T09:15:43.972782+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.972 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/organizations/047eb5cf-956d-499f-9848-5bab513f4f0e/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"424.417µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"3ac29c92-0090-4b7e-9470-c79b84f344eb\"}\n"} -{"Time":"2022-12-07T09:15:43.973388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.973 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templates/0dccf1fe-8491-4f95-acef-c3155f66f257\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"419.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a991f1f3-eb0d-4886-883c-7144cee0310a\"}\n"} -{"Time":"2022-12-07T09:15:43.973708+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.973711+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.973713+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.973 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"403.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"8489aa69-9a82-4baf-a208-fc21197ca0d4\"}\n"} -{"Time":"2022-12-07T09:15:43.973904+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.973909+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.973912+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.973 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"462.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"06685cd1-a95b-43a7-93e9-ba27ed2fedad\"}\n"} -{"Time":"2022-12-07T09:15:43.976096+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified"} -{"Time":"2022-12-07T09:15:43.976102+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":"=== CONT TestTemplateEdit/WithPropertiesThenModified\n"} -{"Time":"2022-12-07T09:15:43.976105+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.976 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"20.084µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"4d443905-ff95-4003-b295-062844925c82\"}\n"} -{"Time":"2022-12-07T09:15:43.976322+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.976 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"29.375µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e938cfba-d423-4f84-8162-088a078bea60\"}\n"} -{"Time":"2022-12-07T09:15:43.976957+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.976 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"429.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"50e1253e-c860-460a-aebc-59ad93f80e28\"}\n"} -{"Time":"2022-12-07T09:15:43.977517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.977 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/organizations/047eb5cf-956d-499f-9848-5bab513f4f0e/templates/optimistic-cerf7\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"353.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"429a3b9d-cbc0-4590-bb48-adf352970f81\"}\n"} -{"Time":"2022-12-07T09:15:43.978054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.978 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templates/0dccf1fe-8491-4f95-acef-c3155f66f257\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"352.459µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a37eba17-f7f5-4d0e-9141-dbef05cfadcb\"}\n"} -{"Time":"2022-12-07T09:15:43.978564+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.978 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57828\", \"path\": \"/api/v2/templates/0dccf1fe-8491-4f95-acef-c3155f66f257\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"329.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"196f95d1-3707-4368-80fc-264c30fc22a9\"}\n"} -{"Time":"2022-12-07T09:15:43.978659+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" t.go:81: 2022-12-07 08:15:43.978 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:43.97927+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:43.983024+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:43.983029+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:43.983032+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:43.982 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"494.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"772b9bc1-39ca-4611-9d1d-0384142e68ee\"}\n"} -{"Time":"2022-12-07T09:15:43.983141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:43.99739+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:43.997398+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:43.9974+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:94\u003e\t(*Server).AcquireJob\tlocked job from database\t{\"id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:43.997498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:345\u003e\t(*Server).acquireJob\tacquired job\t{\"initiator_username\": \"testuser\", \"provisioner\": \"echo\", \"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:43.997554+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:363\u003e\t(*Runner).do\tunpacking template source archive\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"size_bytes\": 3584}\n"} -{"Time":"2022-12-07T09:15:43.99759+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.parse.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.997629+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.apply.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.997657+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"size_bytes\": 2, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/0.provision.plan.protobuf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.997693+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:410\u003e\t(*Runner).do\textracted file\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"size_bytes\": 0, \"path\": \"/tmp/TestTemplatePushNewParameter914185931/002/3110653544.tf\", \"mode\": \"-rw-------\"}\n"} -{"Time":"2022-12-07T09:15:43.997702+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:419\u003e\t(*Runner).do\tacquired job is template import\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:43.997788+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:43.997 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:635\u003e\t(*Runner).runTemplateImportParse\tparse complete\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"parameter_schemas\": null}\n"} -{"Time":"2022-12-07T09:15:43.999572+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:43.999576+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:43.999579+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:43.999 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"485.084µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b6af7835-ad12-4b5f-8ac0-d47741d4e30b\"}\n"} -{"Time":"2022-12-07T09:15:43.999583+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:43.999585+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:43.999587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:43.999 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"476.709µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b65c92c4-0f57-40fc-a637-27452ff25005\"}\n"} -{"Time":"2022-12-07T09:15:44.00767+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:44.007675+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:44.007677+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.007 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"423.541µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"77831ffb-dded-41ce-a782-32619306a424\"}\n"} -{"Time":"2022-12-07T09:15:44.007795+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:44.019954+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.019958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.01996+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.019 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"21.75µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:44.020006+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.02001+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.020012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.019 [DEBUG]\t(metrics_cache)\t\u003cgithub.com/coder/coder/coderd/metricscache/metricscache.go:185\u003e\t(*Cache).run\tmetrics refreshed\t{\"took\": \"7.458µs\", \"interval\": \"1h0m0s\"}\n"} -{"Time":"2022-12-07T09:15:44.022305+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.022311+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.022313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.022 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:44.022409+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.022414+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.022418+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.022 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:44.022442+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.022448+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.022451+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.022 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:44.022585+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.02259+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.022593+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.022 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:44.023882+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.023 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"429.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"175820cc-0e8f-4dd2-8e26-c7b8a2b4956b\"}\n"} -{"Time":"2022-12-07T09:15:44.02389+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.023893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.023896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.023 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"402.792µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d249adf7-2a3b-49e4-9936-42d814124cdb\"}\n"} -{"Time":"2022-12-07T09:15:44.032827+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:44.032833+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:44.032836+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.032 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"445.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3507d137-a8e2-4e35-8e27-c343bdcacc55\"}\n"} -{"Time":"2022-12-07T09:15:44.032964+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:44.048944+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:44.048955+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:44.048959+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.048 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.049144+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.049 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:44.049435+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.04944+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.049443+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.049 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"480.917µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"22e782e2-5579-4f47-ab04-cdf8121b0981\"}\n"} -{"Time":"2022-12-07T09:15:44.049531+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.049538+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.049541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.049 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"529.583µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fe31b118-48fc-4b8e-86a0-183bf33bedc2\"}\n"} -{"Time":"2022-12-07T09:15:44.057938+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:44.057945+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:44.057948+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.057 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"594.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"050dcfb4-b7eb-4b82-8c67-fcda8e16ce7a\"}\n"} -{"Time":"2022-12-07T09:15:44.058104+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:44.073579+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.073591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.073595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:44.073608+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.073612+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.073618+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:44.073664+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.073673+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.073678+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.073688+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.073691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.073695+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.073743+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.073752+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.073756+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.073764+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.073768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.073774+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.073787+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.07379+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.073794+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.0738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.073804+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.073808+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.073905+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.07391+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.073914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.073918+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.073925+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.073928+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.073941+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.073947+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.073951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:44.073955+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.073958+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.073961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:44.073965+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.073968+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.073972+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:44.073976+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.073979+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.073986+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.073 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:44.074159+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.074167+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.074172+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.074 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:44.074184+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.074 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:44.074246+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.074292+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.074302+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.074 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:44.074312+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.074 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:44.074496+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.074502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.074507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.074 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"637.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"aa34980b-3881-4773-b56d-e92dba1b2040\"}\n"} -{"Time":"2022-12-07T09:15:44.074514+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.074519+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.07455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.074 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"698.291µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"547fd5a2-c5dd-4c2c-b6af-15492fb9aca4\"}\n"} -{"Time":"2022-12-07T09:15:44.082928+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:44.082935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:44.082941+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.082 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"654.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"9b63d552-d7ed-4252-abff-a619b7de7fd3\"}\n"} -{"Time":"2022-12-07T09:15:44.083141+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:44.099385+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:44.099401+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:44.099407+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.099447+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Setting up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.09951+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"No README.md provided\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.108489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Parsing template parameters\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.108569+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Detecting persistent resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.108575+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.10858+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.108584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:44.108589+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:44.108595+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:44.1086+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:44.108605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.099 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\", \"stage\": \"Setting up\"}\n"} -{"Time":"2022-12-07T09:15:44.10861+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\", \"stage\": \"No README.md provided\"}\n"} -{"Time":"2022-12-07T09:15:44.108723+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.100 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:721\u003e\t(*Runner).runTemplateImportProvision\tparse dry-run provision successful\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"resource_count\": 0, \"resources\": null, \"state_length\": 0}\n"} -{"Time":"2022-12-07T09:15:44.108729+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\", \"stage\": \"Parsing template parameters\"}\n"} -{"Time":"2022-12-07T09:15:44.108735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.100 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:333\u003e\t(*Runner).doCleanFinish.func2\tcleaned up work directory\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.108741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:44.108746+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.10875+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.108754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"766µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c4001411-7467-4d07-9ca1-deb49baa20cd\"}\n"} -{"Time":"2022-12-07T09:15:44.108761+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.108764+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.108768+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.100 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"884.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"60ae1c67-3456-4879-bb8d-8be9ec90873e\"}\n"} -{"Time":"2022-12-07T09:15:44.109228+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:44.109237+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:44.109242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.109 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.406166ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"0caa95aa-b732-48c1-b8fe-f22aaf1da4ab\"}\n"} -{"Time":"2022-12-07T09:15:44.109537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" coderdtest.go:598: agent not connected yet\n"} -{"Time":"2022-12-07T09:15:44.111745+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.111 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaceagents/me/report-stats\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"71.875µs\", \"status_code\": 401, \"latency_ms\": 0, \"request_id\": \"2f1e3869-a9bf-4c12-9f9d-0ce82143653e\"}\n"} -{"Time":"2022-12-07T09:15:44.112368+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaceagents/aws-instance-identity\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"307.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"970d53f5-29b6-4a4a-8198-c77494b2ba56\"}\n"} -{"Time":"2022-12-07T09:15:44.112674+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.112 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:160\u003e\t(*API).postWorkspaceAgentVersion\tpost workspace agent version\t{\"request_id\": \"ec75c2c0-e4fa-4b38-b7bd-6429eebb364d\", \"agent_id\": \"f2e0f4bc-6d92-4680-bb38-69d4846b8409\", \"agent_version\": \"v0.0.0-devel\"}\n"} -{"Time":"2022-12-07T09:15:44.11273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.112 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaceagents/me/version\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"120.125µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ec75c2c0-e4fa-4b38-b7bd-6429eebb364d\"}\n"} -{"Time":"2022-12-07T09:15:44.113361+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.113 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaceagents/me/metadata\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"96.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"df73788c-156a-4aa7-bc33-4512cbb7a4a2\"}\n"} -{"Time":"2022-12-07T09:15:44.11703+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.116 [INFO]\t\u003cgithub.com/coder/coder/coderd/workspaceagents.go:558\u003e\t(*API).workspaceAgentCoordinate\taccepting agent\t{\"request_id\": \"6808910b-648a-4270-9de7-3a49f9ddf7d4\", \"agent\": {\"id\": \"f2e0f4bc-6d92-4680-bb38-69d4846b8409\", \"created_at\": \"2022-12-07T08:15:43.832535Z\", \"updated_at\": \"2022-12-07T08:15:43.832535Z\", \"name\": \"\", \"first_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"last_connected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"disconnected_at\": {\"Time\": \"0001-01-01T00:00:00Z\", \"Valid\": false}, \"resource_id\": \"089dabfc-b480-4d98-9ab0-35cdd7bbac10\", \"auth_token\": \"63d2485c-0403-479c-8252-649116c07c9d\", \"auth_instance_id\": {\"String\": \"instanceidentifier\", \"Valid\": true}, \"architecture\": \"\", \"environment_variables\": {\"RawMessage\": null, \"Valid\": false}, \"operating_system\": \"\", \"startup_script\": {\"String\": \"\", \"Valid\": false}, \"instance_metadata\": {\"RawMessage\": null, \"Valid\": false}, \"resource_metadata\": {\"RawMessage\": null, \"Valid\": false},"} -{"Time":"2022-12-07T09:15:44.117058+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" \"directory\": \"\", \"version\": \"v0.0.0-devel\", \"last_connected_replica_id\": null, \"connection_timeout_seconds\": 0, \"troubleshooting_url\": \"\", \"motd_file\": \"\"}}\n"} -{"Time":"2022-12-07T09:15:44.124443+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.124463+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.124476+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:44.124485+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.12449+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.124494+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.124498+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.124504+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:44.124534+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.124537+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.12454+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:44.124544+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.124547+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.12455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.124578+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.124581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.124584+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:44.124588+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.124591+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.124594+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.124635+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:44.124684+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:44.124727+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.124731+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.124735+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"596.5µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"c96f47ad-4a2b-49a3-9f5e-c3f669a978bd\"}\n"} -{"Time":"2022-12-07T09:15:44.124751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:44.124762+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.124765+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.124769+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"662.834µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"99b7cb9d-22c7-4fdc-81e9-9e7d9c4cf9af\"}\n"} -{"Time":"2022-12-07T09:15:44.124839+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.124 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:44.1323+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:44.132313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:44.132318+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.132 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"801.667µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5a464961-3cc1-4977-9d1d-d45023dad7e5\"}\n"} -{"Time":"2022-12-07T09:15:44.133366+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.133 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaces/bf785a82-1705-4e26-97ee-0f8c0e07c175\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"637.708µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"44b9eef3-0126-49af-9b4a-77176912461c\"}\n"} -{"Time":"2022-12-07T09:15:44.134353+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.134 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaceagents/f2e0f4bc-6d92-4680-bb38-69d4846b8409/connection\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"621.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"781a4b72-98d5-415b-815a-a115f90fc096\"}\n"} -{"Time":"2022-12-07T09:15:44.150278+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.150325+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.150333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.149 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.327542ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"b9c1b2c3-9c45-4a6b-bb50-0e59afac52bb\"}\n"} -{"Time":"2022-12-07T09:15:44.158569+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.158587+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.158592+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.149 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"1.318416ms\", \"status_code\": 200, \"latency_ms\": 1, \"request_id\": \"2b8037d2-5dac-48ba-9df7-69a34e0a8193\"}\n"} -{"Time":"2022-12-07T09:15:44.1586+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:44.158603+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:44.158607+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.150 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:299\u003e\t(*Server).UpdateJob\tUpdateJob starting\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.158611+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Detecting ephemeral resources\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.158615+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:336\u003e\t(*Server).UpdateJob\tjob log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Cleaning Up\", \"output\": \"\"}\n"} -{"Time":"2022-12-07T09:15:44.158619+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:349\u003e\t(*Server).UpdateJob\tinserted job logs\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.158624+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:361\u003e\t(*Server).UpdateJob\tpublished job logs\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.158627+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:44.158631+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:44.158634+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:419\u003e\t(*API).followLogs.func1\tsubscribe buffered log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:44.158638+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\", \"stage\": \"Detecting persistent resources\"}\n"} -{"Time":"2022-12-07T09:15:44.158641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\", \"stage\": \"Detecting ephemeral resources\"}\n"} -{"Time":"2022-12-07T09:15:44.158645+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.151 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:182\u003e\t(*API).provisionerJobLogs\tsubscribe encoding log\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\", \"stage\": \"Cleaning Up\"}\n"} -{"Time":"2022-12-07T09:15:44.158649+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.152 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:194\u003e\t(*Runner).Run\tsending CompletedJob\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.174738+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.174749+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.174754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"681µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"ec6db0ad-698f-440d-ad24-88e1aa84e63a\"}\n"} -{"Time":"2022-12-07T09:15:44.174763+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.174766+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.174771+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"668.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"14e94768-94fd-4966-8265-76be4e943a46\"}\n"} -{"Time":"2022-12-07T09:15:44.17494+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.174956+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.174961+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:44.174969+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:44.174975+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.174978+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.174981+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:44.174985+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.174988+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.174991+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t(provisionerd-quizzical_nobel8)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:44.174997+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.174999+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.175002+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:44.17503+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.174 [DEBUG]\t(provisionerd-xenodochial_kapitsa5)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:44.17506+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.175063+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.175067+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.175 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"428e6c30-5e19-467d-9958-aa20e1b3ba07\"}\n"} -{"Time":"2022-12-07T09:15:44.175136+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.175143+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.175146+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.175 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"a7dd58dd-a535-4bda-bde7-7564608211b9\"}\n"} -{"Time":"2022-12-07T09:15:44.199723+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.199738+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.199743+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.199 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templateversions/a3bed3be-5498-4ed2-9c7f-50ce6b984dfd\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"594.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2ecec78b-2dc3-4746-8a02-026832cfa6cf\"}\n"} -{"Time":"2022-12-07T09:15:44.199755+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.19976+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.199763+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.199 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templateversions/4829f292-5c86-472c-89f4-b13d93547bed\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"601.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"62acd96a-aaaa-44bf-bbd7-e0146ee72c5a\"}\n"} -{"Time":"2022-12-07T09:15:44.200631+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.200641+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.200648+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.200 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/organizations/5570ef26-ff61-466e-9be7-4dd94bf3b9af/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"595.125µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"d14b0b4e-3bda-448b-a7d6-388c53aef2b1\"}\n"} -{"Time":"2022-12-07T09:15:44.200871+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.200883+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.200887+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.200 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPOST\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/organizations/8b0345d4-ff46-4dcb-88f0-19e0a4b8ba24/templates\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"637µs\", \"status_code\": 201, \"latency_ms\": 0, \"request_id\": \"256a5672-9aa7-4496-a9df-449f4bfc8a5b\"}\n"} -{"Time":"2022-12-07T09:15:44.202505+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:44.202514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:44.202518+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.202 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:585\u003e\t(*Server).CompleteJob\tCompleteJob starting\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.202541+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.202 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:629\u003e\t(*Server).CompleteJob\tmarked import job as completed\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.202581+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.202 [DEBUG]\t(provisionerd-heuristic_villani7)\t\u003cgithub.com/coder/coder/coderd/provisionerdserver/provisionerdserver.go:832\u003e\t(*Server).CompleteJob\tCompleteJob done\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.20265+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.202 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:439\u003e\t(*API).followLogs.func1\tgot End of Logs\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.202664+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.202 [INFO]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/runner/runner.go:199\u003e\t(*Runner).Run\tsent CompletedJob\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.202722+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.202 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/provisionerjobs.go:175\u003e\t(*API).provisionerJobLogs\tdone with published logs\t{\"job_id\": \"24af8c1a-e997-4808-a7eb-326cd132b7c3\"}\n"} -{"Time":"2022-12-07T09:15:44.20329+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.203 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827/logs\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"662.004542ms\", \"status_code\": 101, \"latency_ms\": 662, \"request_id\": \"8e5fc5db-3836-4d4d-a7b8-4ceaba19a63f\"}\n"} -{"Time":"2022-12-07T09:15:44.204876+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.204884+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.204888+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.204 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"26.083µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"143994ec-c6b3-4ffc-b3c9-5f9d06063fa0\"}\n"} -{"Time":"2022-12-07T09:15:44.204895+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.204898+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.204901+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.204 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/entitlements\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"23.667µs\", \"status_code\": 404, \"latency_ms\": 0, \"request_id\": \"9dbb673d-b754-4877-9714-42a3ff92a3f8\"}\n"} -{"Time":"2022-12-07T09:15:44.205273+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.205 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"27µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"6db5dd58-4c6f-49bb-ab01-63976a7f0cb2\"}\n"} -{"Time":"2022-12-07T09:15:44.205286+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.205288+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.205291+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.205 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/buildinfo\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"22.166µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3c6499d3-53e0-4fee-99a6-2a4e89eb1632\"}\n"} -{"Time":"2022-12-07T09:15:44.206455+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.206 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"546.875µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"2537dc95-d5fb-4423-a157-4d6c75af4ad5\"}\n"} -{"Time":"2022-12-07T09:15:44.206507+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.206513+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.206517+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.206 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/users/me/organizations\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"615.416µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"241f4339-c9ac-4807-961e-35798c904d9f\"}\n"} -{"Time":"2022-12-07T09:15:44.206902+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:44.20691+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:44.206914+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.206 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"830.458µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d4595e35-ea57-41d3-8b1d-b2029a68fddf\"}\n"} -{"Time":"2022-12-07T09:15:44.207306+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.207313+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.207317+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/organizations/8b0345d4-ff46-4dcb-88f0-19e0a4b8ba24/templates/serene-hertz5\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"595.083µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"5b131cfe-cc34-4e1d-a52c-a9c53def733e\"}\n"} -{"Time":"2022-12-07T09:15:44.207325+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.207328+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.207351+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/organizations/5570ef26-ff61-466e-9be7-4dd94bf3b9af/templates/pedantic-kapitsa8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"563.417µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b91f1f04-5d1d-48b6-9fc0-1437176945c9\"}\n"} -{"Time":"2022-12-07T09:15:44.207743+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:44.207751+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:44.207755+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.207 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"550.959µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"156162f9-9459-4c04-9d45-53292f2a92ce\"}\n"} -{"Time":"2022-12-07T09:15:44.208122+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.20813+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.208134+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templates/bb3ca227-e806-486c-8b00-4777b5a26d69\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"534µs\", \"status_code\": 400, \"latency_ms\": 0, \"request_id\": \"d9ca9fb3-20e3-4256-ba90-3bf0fe9d2946\"}\n"} -{"Time":"2022-12-07T09:15:44.208142+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"2022-12-07 08:15:44.208 [INFO]\t(stdlib)\t\u003cnet/http/server.go:3230\u003e\t(*Server).logf\t2022/12/07 09:15:44 http: superfluous response.WriteHeader call from github.com/coder/coder/coderd/tracing.(*StatusWriter).WriteHeader (status_writer.go:38)\n"} -{"Time":"2022-12-07T09:15:44.208205+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.208209+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.208213+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templates/4f2fc0fe-5a09-402a-9a4b-9d98768b28ab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"623.042µs\", \"status_code\": 304, \"latency_ms\": 0, \"request_id\": \"ad614744-d6d8-4b08-b06d-a9cb1e590753\"}\n"} -{"Time":"2022-12-07T09:15:44.20855+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:44.208558+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:44.208562+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827/schema\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"538.167µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"a03e4a8f-d8d1-49b8-a7ec-6b60e1186900\"}\n"} -{"Time":"2022-12-07T09:15:44.208885+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.208893+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.208896+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.208 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57860\", \"path\": \"/api/v2/templates/bb3ca227-e806-486c-8b00-4777b5a26d69\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"515.208µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7440f9e9-2cb6-40f8-aaf3-4eeaa6f7935f\"}\n"} -{"Time":"2022-12-07T09:15:44.209054+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" t.go:81: 2022-12-07 08:15:44.208 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:44.209097+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.209107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.20911+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57861\", \"path\": \"/api/v2/templates/4f2fc0fe-5a09-402a-9a4b-9d98768b28ab\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"595.25µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"fdefa0be-fdb3-4935-81f7-5db76b74ad88\"}\n"} -{"Time":"2022-12-07T09:15:44.209333+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" t.go:81: 2022-12-07 08:15:44.209 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:44.209347+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:44.20935+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:44.209354+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.209 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827/parameters\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"537.333µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"d5eb64d4-3e19-4ad8-b199-32f97390d063\"}\n"} -{"Time":"2022-12-07T09:15:44.210501+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName"} -{"Time":"2022-12-07T09:15:44.210511+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":"=== CONT TestTemplateEdit/InvalidDisplayName\n"} -{"Time":"2022-12-07T09:15:44.210515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:44.210688+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified"} -{"Time":"2022-12-07T09:15:44.210696+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":"=== CONT TestTemplateEdit/FirstEmptyThenNotModified\n"} -{"Time":"2022-12-07T09:15:44.2107+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:44.210721+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit","Output":"--- PASS: TestTemplateEdit (0.00s)\n"} -{"Time":"2022-12-07T09:15:44.210728+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Output":" --- PASS: TestTemplateEdit/FirstEmptyThenModified (0.36s)\n"} -{"Time":"2022-12-07T09:15:44.210734+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenModified","Elapsed":0.36} -{"Time":"2022-12-07T09:15:44.210741+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Output":" --- PASS: TestTemplateEdit/WithPropertiesThenEmptyEdit (0.36s)\n"} -{"Time":"2022-12-07T09:15:44.210751+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenEmptyEdit","Elapsed":0.36} -{"Time":"2022-12-07T09:15:44.210754+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Output":" --- PASS: TestTemplateEdit/WithPropertiesThenModified (0.39s)\n"} -{"Time":"2022-12-07T09:15:44.210758+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/WithPropertiesThenModified","Elapsed":0.39} -{"Time":"2022-12-07T09:15:44.210761+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Output":" --- PASS: TestTemplateEdit/InvalidDisplayName (0.39s)\n"} -{"Time":"2022-12-07T09:15:44.210764+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/InvalidDisplayName","Elapsed":0.39} -{"Time":"2022-12-07T09:15:44.210767+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Output":" --- PASS: TestTemplateEdit/FirstEmptyThenNotModified (0.39s)\n"} -{"Time":"2022-12-07T09:15:44.222226+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit/FirstEmptyThenNotModified","Elapsed":0.39} -{"Time":"2022-12-07T09:15:44.222233+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplateEdit","Elapsed":0} -{"Time":"2022-12-07T09:15:44.222236+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter"} -{"Time":"2022-12-07T09:15:44.222238+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":"=== CONT TestTemplatePush/NewParameter\n"} -{"Time":"2022-12-07T09:15:44.222242+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.222 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/b098f78f-b009-48e1-b8ad-c2ae147f784c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"699.542µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e33a96d6-cf0c-484f-9f0c-03c39bc4e9b1\"}\n"} -{"Time":"2022-12-07T09:15:44.229111+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.229 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/0d3ac6cc-bb1b-4295-a308-7ae081f38ff8\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"883.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"b487bf65-c3ef-4fe4-87ea-a9a9b19524c0\"}\n"} -{"Time":"2022-12-07T09:15:44.230012+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.229 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827/resources\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"601.625µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"3ffc569e-f20c-4f76-9fb3-9ffc81823e4f\"}\n"} -{"Time":"2022-12-07T09:15:44.230876+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.230 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tPATCH\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templates/a745dfb2-e349-43c4-8ee1-7346defa546c/versions\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"565.833µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"412214f0-5ece-493a-ae80-425d59d04f4c\"}\n"} -{"Time":"2022-12-07T09:15:44.237563+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.237 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templates/a745dfb2-e349-43c4-8ee1-7346defa546c\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"845.791µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"48952f18-c1dd-41bd-9ba5-2d113e738e3b\"}\n"} -{"Time":"2022-12-07T09:15:44.238486+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.238 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/templateversions/12cbc537-4cde-4021-a171-ba420041e827\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"632µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"7eb271db-2ce5-4d1d-ade0-a5394889fdbb\"}\n"} -{"Time":"2022-12-07T09:15:44.239357+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.239 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57471\", \"path\": \"/api/v2/parameters/import_job/24af8c1a-e997-4808-a7eb-326cd132b7c3\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"613.916µs\", \"status_code\": 200, \"latency_ms\": 0, \"request_id\": \"e079ab37-8314-4a7e-bdc7-d92b4dc2a618\"}\n"} -{"Time":"2022-12-07T09:15:44.239514+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" ptytest.go:80: 2022-12-07 08:15:44.239: cmd: closed pty: \u003cnil\u003e\n"} -{"Time":"2022-12-07T09:15:44.239605+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" t.go:81: 2022-12-07 08:15:44.239 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:44.24217+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:44.242249+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush","Output":"--- PASS: TestTemplatePush (0.00s)\n"} -{"Time":"2022-12-07T09:15:44.242258+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Output":" --- PASS: TestTemplatePush/UseWorkingDir (0.84s)\n"} -{"Time":"2022-12-07T09:15:44.242262+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/UseWorkingDir","Elapsed":0.84} -{"Time":"2022-12-07T09:15:44.242268+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Output":" --- PASS: TestTemplatePush/OK (0.88s)\n"} -{"Time":"2022-12-07T09:15:44.242272+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/OK","Elapsed":0.88} -{"Time":"2022-12-07T09:15:44.242275+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Output":" --- PASS: TestTemplatePush/NewParameter (4.05s)\n"} -{"Time":"2022-12-07T09:15:44.290331+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush/NewParameter","Elapsed":4.05} -{"Time":"2022-12-07T09:15:44.290377+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestTemplatePush","Elapsed":0} -{"Time":"2022-12-07T09:15:44.290383+01:00","Action":"cont","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS"} -{"Time":"2022-12-07T09:15:44.290388+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":"=== CONT TestWorkspaceAgent/AWS\n"} -{"Time":"2022-12-07T09:15:44.290396+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.288 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaceagents/me/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"172.126625ms\", \"status_code\": 101, \"latency_ms\": 172, \"request_id\": \"6808910b-648a-4270-9de7-3a49f9ddf7d4\"}\n"} -{"Time":"2022-12-07T09:15:44.290405+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.289 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"121.872291ms\", \"status_code\": 0, \"latency_ms\": 121, \"request_id\": \"c9bc92c9-d54a-40ca-a78c-0bd65d874eac\"}\n"} -{"Time":"2022-12-07T09:15:44.290413+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.289 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"localhost:57735\", \"path\": \"/api/v2/workspaceagents/f2e0f4bc-6d92-4680-bb38-69d4846b8409/coordinate\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"51.73575ms\", \"status_code\": 101, \"latency_ms\": 51, \"request_id\": \"13758e39-6f4b-4e75-8852-719528a07541\"}\n"} -{"Time":"2022-12-07T09:15:44.29092+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.290 [DEBUG]\t(provisionerd)\t\u003cgithub.com/coder/coder/provisionerd/provisionerd.go:523\u003e\t(*Server).closeWithError\tclosing server with error\t{\"error\": null}\n"} -{"Time":"2022-12-07T09:15:44.291034+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" t.go:81: 2022-12-07 08:15:44.290 [DEBUG]\t\u003cgithub.com/coder/coder/coderd/httpmw/logger.go:63\u003e\tLogger.func1.1.1\tGET\t{\"host\": \"\", \"path\": \"/derp\", \"proto\": \"HTTP/1.1\", \"remote_addr\": \"127.0.0.1\", \"took\": \"103.053209ms\", \"status_code\": 0, \"latency_ms\": 103, \"request_id\": \"163c1547-6dbc-4d51-91b1-c1d95d1db2f9\"}\n"} -{"Time":"2022-12-07T09:15:44.291456+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" stuntest.go:64: STUN server shutdown\n"} -{"Time":"2022-12-07T09:15:44.291489+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent","Output":"--- PASS: TestWorkspaceAgent (0.00s)\n"} -{"Time":"2022-12-07T09:15:44.291495+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Output":" --- PASS: TestWorkspaceAgent/Azure (1.37s)\n"} -{"Time":"2022-12-07T09:15:44.291498+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/Azure","Elapsed":1.37} -{"Time":"2022-12-07T09:15:44.291502+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Output":" --- PASS: TestWorkspaceAgent/GoogleCloud (1.32s)\n"} -{"Time":"2022-12-07T09:15:44.291505+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/GoogleCloud","Elapsed":1.32} -{"Time":"2022-12-07T09:15:44.291507+01:00","Action":"output","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Output":" --- PASS: TestWorkspaceAgent/AWS (1.66s)\n"} -{"Time":"2022-12-07T09:15:44.291511+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent/AWS","Elapsed":1.66} -{"Time":"2022-12-07T09:15:44.291513+01:00","Action":"pass","Package":"github.com/coder/coder/cli","Test":"TestWorkspaceAgent","Elapsed":0} -{"Time":"2022-12-07T09:15:44.291515+01:00","Action":"output","Package":"github.com/coder/coder/cli","Output":"FAIL\n"} -{"Time":"2022-12-07T09:15:44.29734+01:00","Action":"output","Package":"github.com/coder/coder/cli","Output":"FAIL\tgithub.com/coder/coder/cli\t26.563s\n"} -{"Time":"2022-12-07T09:15:44.297352+01:00","Action":"fail","Package":"github.com/coder/coder/cli","Elapsed":26.563} From 04fce69477781a6dfe33cee6f207768918ac659e Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Wed, 7 Dec 2022 10:12:06 +0100 Subject: [PATCH 09/16] WIP --- .github/workflows/coder.yaml | 4 ++-- pty/ptytest/ptytest.go | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index 966252fc77ddf..2cbeb738504f5 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -340,7 +340,7 @@ jobs: - uses: actions/upload-artifact@v3 with: - name: gotestsum debug (TestEvents) + name: gotestsum-debug-${{ matrix.os }}.json path: ./gotestsum.json retention-days: 7 @@ -407,7 +407,7 @@ jobs: - uses: actions/upload-artifact@v3 with: - name: gotestsum debug (TestEvents) + name: gotestsum-debug-${{ matrix.os }}.json path: ./gotestsum.json retention-days: 7 diff --git a/pty/ptytest/ptytest.go b/pty/ptytest/ptytest.go index 38c2c4885fc0a..7e2c398cd1c13 100644 --- a/pty/ptytest/ptytest.go +++ b/pty/ptytest/ptytest.go @@ -202,7 +202,11 @@ func logf(t *testing.T, name, format string, args ...interface{}) { func fatalf(t *testing.T, name, reason, format string, args ...interface{}) { t.Helper() - t.Fatalf("%s: %s %s", name, reason, fmt.Sprintf(format, args...)) + // Ensure the message is part of the normal log stream before + // failing the test. + logf(t, name, "%s: %s", reason, fmt.Sprintf(format, args...)) + + require.FailNowf(t, reason, format, args...) } // stdbuf is like a buffered stdout, it buffers writes until read. From dd2cfd0d9f9bef992ded06cb7fb65ae623ebe49c Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Wed, 7 Dec 2022 10:24:23 +0100 Subject: [PATCH 10/16] WIP --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f98f04bb4a7f5..f67512b96cffa 100644 --- a/Makefile +++ b/Makefile @@ -472,7 +472,7 @@ test-postgres: test-clean test-postgres-docker # The postgres test is prone to failure, so we limit parallelism for # more consistent execution. DB=ci DB_FROM=$(shell go run scripts/migrate-ci/main.go) gotestsum \ - --junitfile="gotests.xml" \ + --junitfile="gotests.xml" \ --jsonfile="gotestsum.json" \ --packages="./..." -- \ -covermode=atomic -coverprofile="gotests.coverage" -timeout=20m \ From ea3b170224e560dc2ddcfc9ea7a53d0cc9897904 Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Wed, 7 Dec 2022 10:39:21 +0100 Subject: [PATCH 11/16] Fix --- .github/workflows/coder.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index 2cbeb738504f5..506b1586b83a3 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -407,7 +407,7 @@ jobs: - uses: actions/upload-artifact@v3 with: - name: gotestsum-debug-${{ matrix.os }}.json + name: gotestsum-debug-postgres.json path: ./gotestsum.json retention-days: 7 From a042bfc1adcfa872a7c19f1480edde0a54172f54 Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Wed, 7 Dec 2022 11:20:31 +0100 Subject: [PATCH 12/16] WIP --- .github/workflows/coder.yaml | 2 ++ pty/pty_other.go | 8 -------- pty/ptytest/ptytest.go | 13 ++++++++++--- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index 506b1586b83a3..8c1243a64bd57 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -339,6 +339,7 @@ jobs: gotestsum --junitfile="gotests.xml" --jsonfile="gotestsum.json" --packages="./..." --debug -- -parallel=8 -timeout=3m -short -failfast $COVERAGE_FLAGS - uses: actions/upload-artifact@v3 + if: success() || failure() with: name: gotestsum-debug-${{ matrix.os }}.json path: ./gotestsum.json @@ -406,6 +407,7 @@ jobs: run: make test-postgres - uses: actions/upload-artifact@v3 + if: success() || failure() with: name: gotestsum-debug-postgres.json path: ./gotestsum.json diff --git a/pty/pty_other.go b/pty/pty_other.go index ba5bcc207075e..cfe9ccd47e4f1 100644 --- a/pty/pty_other.go +++ b/pty/pty_other.go @@ -114,17 +114,9 @@ func (p *otherPty) Resize(height uint16, width uint16) error { } func (p *otherPty) Close() error { - if p.opts.logger != nil { - p.opts.logger.Println("Will close...") - } - p.mutex.Lock() defer p.mutex.Unlock() - if p.opts.logger != nil { - p.opts.logger.Println("Closing...") - } - if p.closed { return p.err } diff --git a/pty/ptytest/ptytest.go b/pty/ptytest/ptytest.go index 7e2c398cd1c13..7dc4d64f464ab 100644 --- a/pty/ptytest/ptytest.go +++ b/pty/ptytest/ptytest.go @@ -47,11 +47,17 @@ func create(t *testing.T, ptty pty.PTY, name string) *PTY { logDone := make(chan struct{}) logr, logw := io.Pipe() t.Cleanup(func() { - ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitMedium) + ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitShort) defer cancel() + logf(t, name, "close logw on cleanup") _ = logw.Close() + + logf(t, name, "close logr on cleanup") _ = logr.Close() + + logf(t, name, "logr and logw closed") + select { case <-ctx.Done(): fatalf(t, name, "cleanup", "log pipe did not close in time") @@ -69,11 +75,12 @@ func create(t *testing.T, ptty pty.PTY, name string) *PTY { _ = out.closeErr(err) }() t.Cleanup(func() { - ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitMedium) + ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitShort) defer cancel() // Close pty only so that the copy goroutine can consume the // remainder of it's buffer and then exit. + logf(t, name, "close pty on cleanup") err := ptty.Close() // Pty may already be closed, so don't fail the test, but log // the error in case it's significant. @@ -119,7 +126,7 @@ type PTY struct { func (p *PTY) ExpectMatch(str string) string { p.t.Helper() - timeout, cancel := context.WithTimeout(context.Background(), testutil.WaitMedium) + timeout, cancel := context.WithTimeout(context.Background(), testutil.WaitShort) defer cancel() var buffer bytes.Buffer From dc86c9a9bbc27b735ffc72f528d509fb6c11b704 Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Wed, 7 Dec 2022 11:21:54 +0100 Subject: [PATCH 13/16] Fix --- loadtest/reconnectingpty/run_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/loadtest/reconnectingpty/run_test.go b/loadtest/reconnectingpty/run_test.go index 6d78f72e25823..f9c99864600e0 100644 --- a/loadtest/reconnectingpty/run_test.go +++ b/loadtest/reconnectingpty/run_test.go @@ -22,6 +22,7 @@ import ( func Test_Runner(t *testing.T) { t.Parallel() + t.Skip("See: https://github.com/coder/coder/issues/5247") t.Run("OK", func(t *testing.T) { t.Parallel() From e48d4ab48072d0fd6c3c8e913c474c9b9f91481e Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Wed, 7 Dec 2022 12:29:34 +0100 Subject: [PATCH 14/16] fix: pty close on Windows --- pty/pty_windows.go | 8 ++++---- pty/ptytest/ptytest.go | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pty/pty_windows.go b/pty/pty_windows.go index 7cdbf0316dd15..be2de2159f63b 100644 --- a/pty/pty_windows.go +++ b/pty/pty_windows.go @@ -130,16 +130,16 @@ func (p *ptyWindows) Close() error { return nil } p.closed = true - _ = p.outputWrite.Close() - _ = p.outputRead.Close() - _ = p.inputWrite.Close() - _ = p.inputRead.Close() ret, _, err := procClosePseudoConsole.Call(uintptr(p.console)) if ret < 0 { return xerrors.Errorf("close pseudo console: %w", err) } + _ = p.outputWrite.Close() + _ = p.outputRead.Close() + _ = p.inputWrite.Close() + _ = p.inputRead.Close() return nil } diff --git a/pty/ptytest/ptytest.go b/pty/ptytest/ptytest.go index 7dc4d64f464ab..1bca67fe71178 100644 --- a/pty/ptytest/ptytest.go +++ b/pty/ptytest/ptytest.go @@ -126,7 +126,7 @@ type PTY struct { func (p *PTY) ExpectMatch(str string) string { p.t.Helper() - timeout, cancel := context.WithTimeout(context.Background(), testutil.WaitShort) + timeout, cancel := context.WithTimeout(context.Background(), testutil.WaitMedium) defer cancel() var buffer bytes.Buffer From eff596602d6a32f4e59e6a03a34212667a26caa1 Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Wed, 7 Dec 2022 12:38:11 +0100 Subject: [PATCH 15/16] Revert changes around workflow --- .github/workflows/coder.yaml | 16 +--------------- Makefile | 5 +---- 2 files changed, 2 insertions(+), 19 deletions(-) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index 8c1243a64bd57..099894f8d5bac 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -336,14 +336,7 @@ jobs: echo ::set-output name=cover::false fi set -x - gotestsum --junitfile="gotests.xml" --jsonfile="gotestsum.json" --packages="./..." --debug -- -parallel=8 -timeout=3m -short -failfast $COVERAGE_FLAGS - - - uses: actions/upload-artifact@v3 - if: success() || failure() - with: - name: gotestsum-debug-${{ matrix.os }}.json - path: ./gotestsum.json - retention-days: 7 + gotestsum --junitfile="gotests.xml" --packages="./..." --debug -- -parallel=8 -timeout=3m -short -failfast $COVERAGE_FLAGS - uses: codecov/codecov-action@v3 # This action has a tendency to error out unexpectedly, it has @@ -406,13 +399,6 @@ jobs: - name: Test with PostgreSQL Database run: make test-postgres - - uses: actions/upload-artifact@v3 - if: success() || failure() - with: - name: gotestsum-debug-postgres.json - path: ./gotestsum.json - retention-days: 7 - - uses: codecov/codecov-action@v3 # This action has a tendency to error out unexpectedly, it has # the `fail_ci_if_error` option that defaults to `false`, but diff --git a/Makefile b/Makefile index f67512b96cffa..1ed609911ac49 100644 --- a/Makefile +++ b/Makefile @@ -471,10 +471,7 @@ test: test-clean test-postgres: test-clean test-postgres-docker # The postgres test is prone to failure, so we limit parallelism for # more consistent execution. - DB=ci DB_FROM=$(shell go run scripts/migrate-ci/main.go) gotestsum \ - --junitfile="gotests.xml" \ - --jsonfile="gotestsum.json" \ - --packages="./..." -- \ + DB=ci DB_FROM=$(shell go run scripts/migrate-ci/main.go) gotestsum --junitfile="gotests.xml" --packages="./..." -- \ -covermode=atomic -coverprofile="gotests.coverage" -timeout=20m \ -parallel=4 \ -coverpkg=./... \ From d88b55293328434c6f6769d1e3624f62bc4c8eac Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Wed, 7 Dec 2022 12:38:54 +0100 Subject: [PATCH 16/16] fix --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4d6bf0772a801..b401caa56c7bb 100644 --- a/.gitignore +++ b/.gitignore @@ -15,7 +15,6 @@ vendor yarn-error.log gotests.coverage gotests.xml -gotestsum.json .idea .gitpod.yml .DS_Store